- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 53 for Selectors (0.14 sec)
-
impl/maven-core/src/main/java/org/apache/maven/execution/ProjectActivation.java
* Mark a project as required and activated. * @param selector The selector of the project. */ public void activateRequiredProject(String selector) { this.activations.add(new ProjectActivationSettings(selector, ActivationSettings.ACTIVATION_REQUIRED)); } /** * Mark a project as optional and activated. * @param selector The selector of the project. */
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 7K bytes - Viewed (0) -
cni/pkg/constants/constants.go
RepairInitTerminationMsg = "repair-init-container-termination-message" RepairInitExitCode = "repair-init-container-exit-code" RepairLabelSelectors = "repair-label-selectors" RepairFieldSelectors = "repair-field-selectors" ) // Internal constants const ( DefaultKubeconfigMode = 0o600 CNIAgentLogScope = "cni-agent" CNIPluginLogScope = "cni-plugin" CNIAddEventPath = "/cmdadd"
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Fri Aug 16 15:33:47 UTC 2024 - 3K bytes - Viewed (0) -
cni/pkg/cmd/root.go
registerStringParameter(constants.RepairLabelSelectors, "", "A set of label selectors in label=value format that will be added to the pod list filters") registerStringParameter(constants.RepairFieldSelectors, "", "A set of field selectors in label=value format that will be added to the pod list filters") } func registerStringParameter(name, value, usage string) {
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Fri Aug 16 15:33:47 UTC 2024 - 12.7K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/graph/ProjectSelector.java
boolean isMatchingProject(MavenProject project, String selector, File reactorDirectory) { // [groupId]:artifactId if (selector.contains(":")) { String id = ':' + project.getArtifactId(); if (id.equals(selector)) { return true; } id = project.getGroupId() + id; return id.equals(selector); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.3K bytes - Viewed (0) -
cni/pkg/config/config.go
// init container termination message and exit code. SidecarAnnotation string InitContainerName string InitTerminationMsg string InitExitCode int // Label and field selectors to select pods managed by race repair. LabelSelectors string FieldSelectors string } func (c InstallConfig) String() string { var b strings.Builder
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Fri Aug 16 15:33:47 UTC 2024 - 5.7K bytes - Viewed (0) -
architecture/ambient/ztunnel.md
Most notably, this is only L4 resources. Most of the API is fairly straight forward. However, one interesting aspect is how these policies associate with workloads. Istio's AuthorizationPolicy has label selectors. However, we intentionally do not send those as part of the Workload API, in order to keep the size low. The obvious solution to this is to put the list of selected workloads into the policy itself.
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Jul 17 23:10:17 UTC 2024 - 16.8K bytes - Viewed (0) -
doc/go1.17_spec.html
f(3.1415, true) Point{1, 2} m["foo"] s[i : j + 1] obj.color f.p[i].x() </pre> <h3 id="Selectors">Selectors</h3> <p> For a <a href="#Primary_expressions">primary expression</a> <code>x</code> that is not a <a href="#Package_clause">package name</a>, the <i>selector expression</i> </p> <pre> x.f </pre> <p>
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Thu Oct 10 18:25:45 UTC 2024 - 211.6K bytes - Viewed (0) -
doc/go_spec.html
f(3.1415, true) Point{1, 2} m["foo"] s[i : j + 1] obj.color f.p[i].x() </pre> <h3 id="Selectors">Selectors</h3> <p> For a <a href="#Primary_expressions">primary expression</a> <code>x</code> that is not a <a href="#Package_clause">package name</a>, the <i>selector expression</i> </p> <pre> x.f </pre> <p>
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Wed Oct 02 00:58:01 UTC 2024 - 282.5K bytes - Viewed (0) -
src/cmd/asm/internal/asm/parse.go
abistr := p.get(scanner.Ident).String() if !p.allowABI { if issueError { p.errorf("ABI selector only permitted when compiling runtime, reference was to %q", name) } } else { theabi, valid := obj.ParseABI(abistr) if !valid { if issueError { p.errorf("malformed ABI selector %q in reference to %q", abistr, name) } } else { abi = theabi } } }
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Wed Sep 04 18:16:59 UTC 2024 - 36.9K bytes - Viewed (0) -
src/main/webapp/js/admin/bootstrap.min.js.map
(document.getElementById(prefix))\n\n return prefix\n },\n\n getSelectorFromElement(element) {\n let selector = element.getAttribute('data-target')\n\n if (!selector || selector === '#') {\n const hrefAttr = element.getAttribute('href')\n selector = hrefAttr && hrefAttr !== '#' ? hrefAttr.trim() : ''\n }\n\n try {\n return document.querySelector(selector) ? selector : null\n } catch (_) {\n return null\n }\n },\n\n getTransitionDurationFromElement(element)...
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 26 01:49:09 UTC 2024 - 180.9K bytes - Viewed (0)