Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 172 for excluded (3.13 sec)

  1. pkg/apis/admissionregistration/types.go

    }
    
    // MatchResources decides whether to run the admission control policy on an object based
    // on whether it meets the match criteria.
    // The exclude rules take precedence over include rules (if a resource matches both, it is excluded)
    type MatchResources struct {
    	// NamespaceSelector decides whether to run the admission control policy on an object based
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      optional string expression = 2;
    }
    
    // MatchResources decides whether to run the admission control policy on an object based
    // on whether it meets the match criteria.
    // The exclude rules take precedence over include rules (if a resource matches both, it is excluded)
    // +structType=atomic
    message MatchResources {
      // NamespaceSelector decides whether to run the admission control policy on an object based
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  3. operator/pkg/apis/istio/v1alpha1/values_types.proto

      google.protobuf.BoolValue enableCoreDump = 9;
    
      // Specifies the Istio ingress ports not to capture.
      string excludeInboundPorts = 12;
    
      // Lists the excluded IP ranges of Istio egress traffic that the sidecar captures.
      string excludeIPRanges = 13;
    
      // Image name or path for the proxy, default: "proxyv2".
      //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/podtopologyspread/scoring_test.go

    				st.MakeNode().Name("node-b").Label(v1.LabelHostname, "node-b").Label(v1.LabelTopologyZone, "mars").Obj(),
    				// Nodes with no zone are not excluded. They are considered a separate zone.
    				st.MakeNode().Name("node-c").Label(v1.LabelHostname, "node-c").Obj(),
    				st.MakeNode().Name("node-d").Label(v1.LabelHostname, "node-d").Obj(),
    			},
    			objs: []runtime.Object{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 60K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

     * The <<#rel4.8:pom_wildcard_exclusions,honoring of implicit wildcards in Maven POM exclusions>>, which may result in dependencies being excluded that weren't before.
     * A <<#rel4.6:annotation_processor_configuration,change to the way you add Java annotation processors to a project>>.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/admissionregistration/v1beta1/types.go

    }
    
    // MatchResources decides whether to run the admission control policy on an object based
    // on whether it meets the match criteria.
    // The exclude rules take precedence over include rules (if a resource matches both, it is excluded)
    // +structType=atomic
    type MatchResources struct {
    	// NamespaceSelector decides whether to run the admission control policy on an object based
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/admissionregistration/v1/types.go

    }
    
    // MatchResources decides whether to run the admission control policy on an object based
    // on whether it meets the match criteria.
    // The exclude rules take precedence over include rules (if a resource matches both, it is excluded)
    // +structType=atomic
    type MatchResources struct {
    	// NamespaceSelector decides whether to run the admission control policy on an object based
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencySubstitutionRulesIntegrationTest.groovy

            /*
            dependencies:
    
            impl:1.3->api:1.3
            foo->api:1.5
            bar->impl:1.3(*)->api:1.3(*)
    
            * - should be excluded as it was already visited
            */
    
            buildFile << """
                $common
    
                dependencies {
                    conf 'org.utils:impl:1.3', 'org.stuff:foo:2.0', 'org.stuff:bar:2.0'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 52.8K bytes
    - Viewed (0)
  9. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilder.java

            // [MNG-5600] Dependency management import should support exclusions.
            List<Exclusion> exclusions = dependency.getExclusions();
            if (importMgmt != null && !exclusions.isEmpty()) {
                // Dependency excluded from import.
                List<Dependency> dependencies = importMgmt.getDependencies().stream()
                        .filter(candidate -> exclusions.stream().noneMatch(exclusion -> match(exclusion, candidate)))
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Jun 07 07:31:02 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  10. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java

            List<Exclusion> exclusions = dependency.getDelegate().getExclusions();
            if (importMgmt != null && !exclusions.isEmpty()) {
                // Dependency excluded from import.
                List<org.apache.maven.api.model.Dependency> dependencies = importMgmt.getDependencies().stream()
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 82.9K bytes
    - Viewed (0)
Back to top