Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 887 for excluded (0.18 sec)

  1. src/crypto/x509/x509.go

    					b.AddBytes(permitted)
    				})
    			}
    
    			if len(excluded) > 0 {
    				b.AddASN1(cryptobyte_asn1.Tag(1).ContextSpecific().Constructed(), func(b *cryptobyte.Builder) {
    					b.AddBytes(excluded)
    				})
    			}
    		})
    
    		ret[n].Value, err = b.Bytes()
    		if err != nil {
    			return nil, err
    		}
    		n++
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. apache-maven/src/main/appended-resources/licenses/CDDL+GPLv2-with-classpath-exception.txt

        limitation, court costs and reasonable attorneys' fees and expenses.
        The application of the United Nations Convention on Contracts for
        the International Sale of Goods is expressly excluded. Any law or
        regulation which provides that the language of a contract shall be
        construed against the drafter shall not apply to this License. You
        agree that You alone are responsible for compliance with the United
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri May 17 19:14:22 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/external/model/IvyDependencyDescriptorTest.groovy

            def dep = createWithExcludes(requested, [exclude1, exclude2, exclude3])
            def configuration = configuration("from")
            def moduleExclusions = new ModuleExclusions()
    
            expect:
            moduleExclusions.excludeAny(copyOf(dep.getConfigurationExcludes(configuration.hierarchy))) == moduleExclusions.excludeAny(ImmutableList.of(exclude1, exclude2))
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 23K bytes
    - Viewed (0)
  6. 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)
  7. pkg/kubelet/kubelet_test.go

    	defer testKubelet.Cleanup()
    	kubelet := testKubelet.kubelet
    	pods := newTestPods(8)
    	now := metav1.NewTime(time.Now())
    
    	// terminal pods are excluded
    	pods[0].Status.Phase = v1.PodFailed
    	pods[1].Status.Phase = v1.PodSucceeded
    
    	// deleted pod is included unless it's known to be terminated
    	pods[2].Status.Phase = v1.PodRunning
    	pods[2].DeletionTimestamp = &now
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  8. 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)
  9. src/cmd/go/internal/load/pkg.go

    // excluded, or because all non-excluded files were test sources.
    type NoGoError struct {
    	Package *Package
    }
    
    func (e *NoGoError) Error() string {
    	if len(e.Package.IgnoredGoFiles) > 0 {
    		// Go files exist, but they were ignored due to build constraints.
    		return "build constraints exclude all Go files in " + e.Package.Dir
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/util/concurrent/ServiceManager.java

       * that the {@link ServiceManager} functions properly even when it is managing no services.
       *
       * <p>The use of this class is considered an implementation detail of ServiceManager and as such
       * it is excluded from {@link #servicesByState}, {@link #startupTimes}, {@link #toString} and all
       * logging statements.
       */
      private static final class NoOpService extends AbstractService {
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:41:16 UTC 2024
    - 31.1K bytes
    - Viewed (0)
Back to top