Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 538 for excluded (0.37 sec)

  1. pkg/kubelet/status/status_manager.go

    		stateFileDirectory:      stateFileDirectory,
    	}
    }
    
    // isPodStatusByKubeletEqual returns true if the given pod statuses are equal when non-kubelet-owned
    // pod conditions are excluded.
    // This method normalizes the status before comparing so as to make sure that meaningless
    // changes will be ignored.
    func isPodStatusByKubeletEqual(oldStatus, status *v1.PodStatus) bool {
    	oldCopy := oldStatus.DeepCopy()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 44.3K bytes
    - Viewed (0)
  2. pkg/scheduler/schedule_one.go

    	logger := klog.FromContext(ctx)
    	// Extenders are called sequentially.
    	// Nodes in original feasibleNodes can be excluded in one extender, and pass on to the next
    	// extender in a decreasing manner.
    	for _, extender := range extenders {
    		if len(feasibleNodes) == 0 {
    			break
    		}
    		if !extender.IsInterested(pod) {
    			continue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 13:28:08 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  3. 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)
  4. pkg/scheduler/framework/plugins/volumebinding/binder.go

    			unboundClaims = append(unboundClaims, pvc)
    			foundMatches = false
    			continue
    		}
    
    		// matching PV needs to be excluded so we don't select it again
    		chosenPVs[pv.Name] = pv
    		bindings = append(bindings, &BindingInfo{pv: pv, pvc: pvc})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 14:55:34 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_pods.go

    func (kl *Kubelet) filterOutInactivePods(pods []*v1.Pod) []*v1.Pod {
    	filteredPods := make([]*v1.Pod, 0, len(pods))
    	for _, p := range pods {
    		// if a pod is fully terminated by UID, it should be excluded from the
    		// list of pods
    		if kl.podWorkers.IsPodKnownTerminated(p.UID) {
    			continue
    		}
    
    		// terminal pods are considered inactive UNLESS they are actively terminating
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/ivy/IvyDependencyDescriptor.java

        }
    
        public List<Exclude> getAllExcludes() {
            return excludes;
        }
    
        public List<ExcludeMetadata> getConfigurationExcludes(Collection<String> configurations) {
            if (excludes.isEmpty()) {
                return ImmutableList.of();
            }
            ImmutableList.Builder<ExcludeMetadata> rules = ImmutableList.builderWithExpectedSize(excludes.size());
            for (Exclude exclude : excludes) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  7. maven-api-impl/src/test/remote-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.pom

      <build>
        <plugins>
          <plugin>
            <artifactId>maven-surefire-plugin</artifactId>
            <configuration>
              <excludes>
                <exclude>org/codehaus/plexus/util/FileBasedTestCase.java</exclude>
                <exclude>**/Test*.java</exclude>
              </excludes>
            </configuration>
          </plugin>
        </plugins>
      </build>
      <distributionManagement>
        <status>deployed</status>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 767 bytes
    - Viewed (0)
  8. src/cmd/dist/test.go

    			errprintf("go tool dist: warning: %q matched no tests; use the -list flag to list available tests\n", t.runRxStr)
    			fmt.Println("NO TESTS TO RUN")
    		} else if someExcluded {
    			fmt.Println("\nALL TESTS PASSED (some were excluded)")
    		} else {
    			fmt.Println("\nALL TESTS PASSED")
    		}
    	}
    	if t.failed {
    		xexit(1)
    	}
    }
    
    func (t *tester) shouldRunTest(name string) bool {
    	if t.runRx != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  9. src/crypto/tls/handshake_server_test.go

    		vers:   VersionTLS11,
    		random: make([]byte, 32),
    		cipherSuites: []uint16{
    			// The Server, by default, will use the client's
    			// preference order. So the GCM cipher suite
    			// will be selected unless it's excluded because
    			// of the version in this ClientHello.
    			TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256,
    			TLS_RSA_WITH_RC4_128_SHA,
    		},
    		compressionMethods: []uint8{compressionNone},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  10. guava-gwt/pom.xml

            </configuration>
          </plugin>
          <plugin>
            <artifactId>maven-jar-plugin</artifactId>
            <configuration>
              <excludes>
                <!-- 2. Don't include the source in the jar (since that would let users depend on it from GWT client code, which is compiled from source). -->
                <exclude>**/ForceGuavaCompilation*</exclude>
                <exclude>**/DummyJavadocClass*</exclude>
              </excludes>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 15:00:55 UTC 2024
    - 19.8K bytes
    - Viewed (0)
Back to top