Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 961 for doPing (0.14 sec)

  1. staging/src/k8s.io/api/apps/v1/generated.proto

      // 70% of original number of DaemonSet pods are available at all times during
      // the update.
      // +optional
      optional .k8s.io.apimachinery.pkg.util.intstr.IntOrString maxUnavailable = 1;
    
      // The maximum number of nodes with an existing available DaemonSet pod that
      // can have an updated DaemonSet pod during during an update.
      // Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:14:59 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/mlir_graph_optimization_pass.cc

      import_config.upgrade_legacy = true;
      // Disable shape inference during import as some TensorFlow op fails during
      // shape inference with dynamic shaped operands. This in turn causes the
      // import to fail. Shape inference during import is going to be removed and
      // the shape inference pass is run early in the pass pipeline, shape inference
      // during import is not necessary.
      import_config.enable_shape_inference = false;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  3. pkg/kube/kclient/client.go

    }
    
    func (n *informerClient[T]) HasSynced() bool {
    	if !n.informer.HasSynced() {
    		return false
    	}
    	n.handlerMu.RLock()
    	defer n.handlerMu.RUnlock()
    	// HasSynced is fast, so doing it under the lock is okay
    	for _, g := range n.registeredHandlers {
    		if !g.registration.HasSynced() {
    			return false
    		}
    	}
    	return true
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 07:14:28 UTC 2024
    - 13K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/componentconfigs/fakeconfig_test.go

    // - Other components often introduce new fields in their configs without bumping up the config version.
    //   This, often times, requires that the PR that introduces such new fields to touch kubeadm test code.
    //   Doing so, requires more work on the part of developers and reviewers. When kubeadm moves out of k/k
    //   this would allow for more sporadic breaks in kubeadm tests as PRs that merge in k/k and introduce
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 04 15:36:00 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/cache/CacheBuilderTest.java

                      }
                    }
                  });
        }
    
        threadPool.shutdown();
        threadPool.awaitTermination(300, SECONDS);
    
        // Since we're not doing any more cache operations, and the cache only expires/evicts when doing
        // other operations, the cache and the removal queue won't change from this point on.
    
        // Verify that each received removal notification was valid
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Oct 03 20:10:02 UTC 2023
    - 23.2K bytes
    - Viewed (0)
  6. src/testing/testing_test.go

    	// race after the subtests complete. Note that because the subtests run in
    	// parallel, the race stacks may both be printed in with one or the other
    	// test's logs.
    	cReport := bytes.Count(out, []byte("race detected during execution of test"))
    	wantReport := 0
    	if race.Enabled {
    		wantReport = 3
    	}
    	if cReport != wantReport {
    		t.Errorf("got %d race reports, want %d", cReport, wantReport)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:10:41 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  7. src/runtime/testdata/testprog/gc.go

    	condemned = nil
    
    	// Clear the condemned memory.
    	runtime.GC()
    
    	// At this point, the background scavenger is likely running
    	// and could pick up the work, so the next line of code doesn't
    	// end up doing anything. That's fine. What's important is that
    	// this test fails somewhat regularly if the runtime doesn't
    	// scavenge on heap growth, and doesn't fail at all otherwise.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Oct 02 02:28:27 UTC 2022
    - 12.1K bytes
    - Viewed (0)
  8. platforms/software/antlr/src/main/java/org/gradle/api/plugins/antlr/AntlrTask.java

            int errorCount = result.getErrorCount();
            if (errorCount < 0) {
                throw new AntlrSourceGenerationException("There were errors during grammar generation", result.getException());
            } else if (errorCount == 1) {
                throw new AntlrSourceGenerationException("There was 1 error during grammar generation", result.getException());
            } else if (errorCount > 1) {
                throw new AntlrSourceGenerationException("There were "
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 14:52:10 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  9. platforms/jvm/java-platform/src/test/java/org/gradle/internal/component/model/JavaEcosystemAttributeMatcherTest.groovy

            matches == runtimeElements[0]
        }
    
        def "resolve runtimeClasspath for internal compile view with java plugin"() {
            // Even if we request the internal compile view during compile-time, we still want runtimeElements during runtime
            def requested = attributes(Usage.JAVA_RUNTIME, LibraryElements.JAR, 8)
    
            def apiElements = [attributes(Usage.JAVA_API, LibraryElements.JAR, 8)]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  10. guava/src/com/google/common/util/concurrent/FuturesGetChecked.java

             * than a handful of exceptions. But it seems prudent to set a cap on how many we'll cache.
             * This avoids out-of-control memory consumption, and it keeps the cache from growing so
             * large that doing the lookup is noticeably slower than redoing the work would be.
             *
             * Ideally we'd have a real eviction policy, but until we see a problem in practice, I hope
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:40:56 UTC 2024
    - 11.9K bytes
    - Viewed (0)
Back to top