Home
last modified time | relevance | path

Searched refs:getLabels (Results 1 – 25 of 909) sorted by relevance

12345678910>>...37

/dports/games/hs-scroll/scroll-1.20180421/_cabal_deps/language-c-0.8.3/src/Language/C/Syntax/
H A DUtils.hs7 getLabels
72 getLabels :: CStat -> [Ident]
73 getLabels (CLabel l s _ _) = l : getLabels s function
74 getLabels (CCompound ls body _) = function
75 concatMap (concatMap getLabels . compoundSubStmts) body \\ ls
76 getLabels stmt = concatMap getLabels (getSubStmts stmt) function
/dports/converters/wkhtmltopdf/qt-5db36ec/tests/system/sys_masterdetail/
H A Dsys_masterdetail.qtt56 //print(getLabels());
57 verify(getLabels().join().contains("Details/Artist : Ane Brun"));
58 verify(getLabels().join().contains("Number of Albums: 2"));
65 //print(getLabels());
66 verify(getLabels().join().contains("Details/Title: Spending Time With Morgan (2003)"));
70 //print(getLabels());
71 verify(getLabels().join().contains("Details/Title: A Temporary Dive (2005)"));
/dports/databases/hbase/hbase-1.2.1/hbase-server/src/main/java/org/apache/hadoop/hbase/security/visibility/
H A DFeedUserAuthScanLabelGenerator.java64 public List<String> getLabels(User user, Authorizations authorizations) { in getLabels() method in FeedUserAuthScanLabelGenerator
65 if (authorizations == null || authorizations.getLabels() == null in getLabels()
66 || authorizations.getLabels().isEmpty()) { in getLabels()
73 return authorizations.getLabels(); in getLabels()
H A DSimpleScanLabelGenerator.java46 public List<String> getLabels(User user, Authorizations authorizations) { in getLabels() method in SimpleScanLabelGenerator
48 return authorizations.getLabels(); in getLabels()
/dports/databases/hbase/hbase-1.2.1/hbase-server/src/test/java/org/apache/hadoop/hbase/security/visibility/
H A DLabelFilteringScanLabelGenerator.java44 public List<String> getLabels(User user, Authorizations authorizations) { in getLabels() method in LabelFilteringScanLabelGenerator
46 if (labelToFilter == null) return authorizations.getLabels(); in getLabels()
48 for (String auth : authorizations.getLabels()) { in getLabels()
/dports/deskutils/pinot/pinot-1.20/IndexSearch/
H A Dpinot-label.cpp92 …bool getLabels = false, getDocumentLabels = false, reloadIndex = false, setDocumentLabels = false,… in main() local
110 getLabels = true; in main()
169 if (getLabels == true) in main()
171 if (index.getLabels(labels) == true) in main()
/dports/www/grafana8/grafana-8.3.6/vendor/github.com/FZambia/eagle/
H A Deagle.go166 cacheKey := getCacheKey(name, getLabels(m.GetLabel()), "")
177 cacheKey := getCacheKey(name, getLabels(m.GetLabel()), "sum")
185 cacheKey = getCacheKey(name, getLabels(m.GetLabel()), "count")
219 func getLabels(pairs []*dto.LabelPair) []metricLabel { func
279 labels := getLabels(m.GetLabel())
294 labels := getLabels(m.GetLabel())
312 labels := getLabels(m.GetLabel())
/dports/databases/hbase/hbase-1.2.1/hbase-rest/src/test/java/org/apache/hadoop/hbase/rest/model/
H A DTestScannerModel.java96 if (model.getLabels() != null && model.getLabels().size() > 0) { in checkModel()
97 for (String label : model.getLabels()) { in checkModel()
/dports/devel/gh/cli-2.4.0/pkg/cmd/issue/list/
H A Dhttp_test.go143 getLabels := func(i api.Issue) []string {
158 assert.Equal(t, []string{"bug"}, getLabels(res.Issues[0]))
160 assert.Equal(t, []string{"enhancement"}, getLabels(res.Issues[1]))
/dports/www/groupoffice/groupoffice-6.4.231-php-71/go/base/export/
H A DExportHTML.php76 $this->_write(array_values($this->getLabels()));
78 $this->_write(array_keys($this->getLabels()));
H A DExportCSV.php59 $headers = array_values($this->getLabels());
71 $this->_write(array_keys($this->getLabels()));
H A DExportPDF.php54 $html .= $this->_write(array_values($this->getLabels()));
56 $html .= $this->_write(array_keys($this->getLabels()));
H A DAbstractExport.php114 public function getLabels(){ function in GO\\Base\\Export\\AbstractExport
124 $c = array_keys($this->getLabels());
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.debug/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/
H A DLabelResult.java51 public String[] getLabels() { in getLabels() method in LabelResult
52 return super.getLabels(); in getLabels()
/dports/www/groupoffice/groupoffice-6.4.231-php-71/go/base/storeexport/
H A DExportCSV.php53 $headers = array_values($this->getLabels());
65 $this->_write(array_keys($this->getLabels()));
H A DExportXLS.php81 $this->_write(array_values($this->getLabels()));
83 $this->_write(array_keys($this->getLabels()));
H A DAbstractExport.php118 public function getLabels(){ function in GO\\Base\\Storeexport\\AbstractExport
131 $c = array_keys($this->getLabels());
/dports/math/scilab/scilab-6.1.1/scilab/modules/graphic_objects/src/java/org/scilab/modules/graphic_objects/axes/
H A DTicksProperty.java103 public ArrayList<FormattedText> getLabels() { in getLabels() method in TicksProperty.TicksArrays
376 automaticTicks.setLabels(ticksProperty.automaticTicks.getLabels()); in TicksProperty()
377 userTicks.setLabels(ticksProperty.userTicks.getLabels()); in TicksProperty()
456 public ArrayList<FormattedText> getLabels() { in getLabels() method in TicksProperty
458 return automaticTicks.getLabels(); in getLabels()
460 return userTicks.getLabels(); in getLabels()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.debug/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/elements/adapters/
H A DMemoryBlockLabelAdapter.java60 protected String[] getLabels(Object element, IPresentationContext context) throws CoreException { in getLabels() method in MemoryBlockLabelAdapter
63 return super.getLabels(element, context); in getLabels()
/dports/games/fillets-ng/fillets-ng-1.0.1/src/widget/
H A DLabels.cpp19 getLabels(lua_State *L) in getLabels() function
35 getLabels(L)->addLabel(labelName, lang, text); in script_label_text()
/dports/sysutils/istio/istio-1.6.7/vendor/github.com/antlr/antlr4/runtime/Java/src/org/antlr/v4/runtime/tree/pattern/
H A DParseTreeMatch.java143 public MultiMap<String, ParseTree> getLabels() { in getLabels() method in ParseTreeMatch
196 getLabels().size()); in toString()
/dports/science/rdkit/rdkit-Release_2021_03_5/Code/GraphMol/CIPLabeler/Wrap/
H A DpyCIPLabelsValidation.py53 def getLabels(mol): function
93 actual = getLabels(mol)
/dports/www/grafana8/grafana-8.3.6/public/app/plugins/datasource/cloud-monitoring/components/
H A DVariableQueryEditor.tsx99 ...(await this.getLabels(selectedMetricType, this.state.projectName)),
114 ...(await this.getLabels(this.state.selectedMetricType, this.state.projectName, queryType)),
122 const labels = await this.getLabels(this.state.selectedMetricType, projectName);
156 ...(await this.getLabels(selectedMetricType, this.state.projectName)),
164 ...(await this.getLabels(metricType, this.state.projectName)),
181 …async getLabels(selectedMetricType: string, projectName: string, selectedQueryType = this.state.se…
/dports/graphics/opencv/opencv-4.5.3/contrib/modules/face/include/opencv2/face/
H A Dfacerec.hpp32 CV_WRAP cv::Mat getLabels() const;
150 CV_WRAP virtual cv::Mat getLabels() const = 0;
/dports/www/chromium-legacy/chromium-88.0.4324.182/android_webview/nonembedded/java/src/org/chromium/android_webview/devui/util/
H A DCrashBugUrlFactory.java79 .appendQueryParameter("labels", getLabels()) in getReportUri()
109 private String getLabels() { in getLabels() method in CrashBugUrlFactory

12345678910>>...37