Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 759 for excluded (0.36 sec)

  1. maven-embedder/src/main/java/org/apache/maven/cli/internal/BootstrapCoreExtensionManager.java

                String id = artifact.getGroupId() + ":" + artifact.getArtifactId();
                if (providedArtifacts.contains(id)) {
                    log.debug("  Excluded {}", id);
                } else {
                    File file = artifact.getFile();
                    log.debug("  Included {} located at {}", id, file);
                    realm.addURL(file.toURI().toURL());
                }
            }
            return CoreExtensionEntry.discoverFrom(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jun 12 07:49:10 UTC 2024
    - 13K bytes
    - Viewed (0)
  2. pkg/scheduler/metrics/resources/resources_test.go

    				# TYPE kube_pod_resource_limit gauge
    				kube_pod_resource_limit{namespace="test",node="",pod="foo",priority="",resource="cpu",scheduler="",unit="cores"} 1
    				`,
    		},
    		{
    			name: "terminal pods are excluded",
    			pods: []*v1.Pod{
    				{
    					ObjectMeta: metav1.ObjectMeta{Namespace: "test", Name: "foo-unscheduled-succeeded"},
    					Spec: v1.PodSpec{
    						Containers: []v1.Container{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 13 07:42:19 UTC 2023
    - 21.6K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultPluginValidationManager.java

        }
    
        private List<String> parsePluginExcludes(RepositorySystemSession session) {
            String excludes = ConfigUtils.getString(session, null, MAVEN_PLUGIN_VALIDATION_EXCLUDES_KEY);
            if (excludes == null || excludes.isEmpty()) {
                return Collections.emptyList();
            }
            return Arrays.stream(excludes.split(","))
                    .map(String::trim)
                    .filter(s -> !s.isEmpty())
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 23 12:25:04 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/net/InternetDomainName.java

              desiredType, Optional.fromNullable(PublicSuffixPatterns.EXACT.get(ancestorName)))) {
            return i;
          }
    
          // Excluded domains (e.g. !nhs.uk) use the next highest
          // domain as the effective public suffix (e.g. uk).
    
          if (PublicSuffixPatterns.EXCLUDED.containsKey(ancestorName)) {
            return i + 1;
          }
        }
    
        return NO_SUFFIX_FOUND;
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 05 20:47:23 UTC 2024
    - 28K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/admissionregistration/v1alpha1/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: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  6. pilot/pkg/features/experimental.go

    		false,
    		"If enabled, istiod will automatically generate Kubernetes "+
    			"Multi-Cluster Services (MCS) ServiceExport resources for every "+
    			"service in the mesh. Services defined to be cluster-local in "+
    			"MeshConfig are excluded.",
    	).Get()
    
    	EnableMCSServiceDiscovery = env.Register(
    		"ENABLE_MCS_SERVICE_DISCOVERY",
    		false,
    		"If enabled, istiod will enable Kubernetes Multi-Cluster "+
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  7. cni/pkg/plugin/plugin_test.go

    	cniConf := buildMockConf(true, url)
    
    	excludedNS := "testExcludeNS"
    	pod, ns := buildFakePodAndNSForClient()
    
    	app := corev1.Container{Name: "app"}
    	ns.ObjectMeta.Name = excludedNS
    	ns.ObjectMeta.Labels = map[string]string{constants.DataplaneModeLabel: constants.AmbientRedirectionEnabled}
    
    	pod.ObjectMeta.Namespace = excludedNS
    	pod.Spec.Containers = []corev1.Container{app}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/batch/v1/generated.proto

    // represented by the .status.containerStatuses and .status.initContainerStatuses
    // fields in the Pod status, respectively. Containers completed with success
    // (exit code 0) are excluded from the requirement check.
    message PodFailurePolicyOnExitCodesRequirement {
      // Restricts the check for exit codes to the container with the
      // specified name. When null, the rule applies to all containers.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  9. src/crypto/x509/verify.go

    	maxConstraintComparisons int,
    	nameType string,
    	name string,
    	parsedName any,
    	match func(parsedName, constraint any) (match bool, err error),
    	permitted, excluded any) error {
    
    	excludedValue := reflect.ValueOf(excluded)
    
    	*count += excludedValue.Len()
    	if *count > maxConstraintComparisons {
    		return CertificateInvalidError{c, TooManyConstraints, ""}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:39 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  10. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/EclipseWtpComponent.java

         */
        public void setPlusConfigurations(Set<Configuration> plusConfigurations) {
            setLibConfigurations(plusConfigurations);
        }
    
        /**
         * The configurations whose files are to be excluded from wtp deployment.
         * <p>
         * For examples see docs for {@link EclipseWtp}
         */
        public Set<Configuration> getMinusConfigurations() {
            return minusConfigurations;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.9K bytes
    - Viewed (0)
Back to top