Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 662 for doPing (0.12 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. subprojects/core/src/main/java/org/gradle/internal/classpath/intercept/DefaultCallSiteDecorator.java

             *     <li> {@link org.codehaus.groovy.runtime.callsite.CallSiteArray#replaceCallSite}
             * </ul>
             *
             * Because of it doing so, our decorated call site is removed from the dynamic invocation code path, and we lose the ability to track dynamic call entry points. <p>
             *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:46:35 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/apps/v1beta2/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: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/apps/v1beta2/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: Thu Mar 28 15:34:11 UTC 2024
    - 36.6K bytes
    - Viewed (0)
  8. src/cmd/dist/buildtool.go

    		return fmt.Sprintf(`%spackage ssa
    
    func rewriteValue%s(v *Value) bool { panic("unused during bootstrap") }
    func rewriteBlock%s(b *Block) bool { panic("unused during bootstrap") }
    `, generatedHeader, archCaps, archCaps)
    	}
    
    	return bootstrapFixImports(srcFile)
    }
    
    var (
    	importRE      = regexp.MustCompile(`\Aimport\s+(\.|[A-Za-z0-9_]+)?\s*"([^"]+)"\s*(//.*)?\n\z`)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 23:29:41 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/util/concurrent/ExecutionSequencer.java

                // If this CAS succeeds, we know that the provided callable will never be invoked,
                // so when oldFuture completes it is safe to allow the next submitted task to
                // proceed. Doing this immediately here lets the next task run without waiting for
                // the cancelled task's executor to run the noop AsyncCallable.
                //
                // ---
                //
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  10. pkg/kubelet/pleg/generic.go

    	// Cache for storing the runtime states required for syncing pods.
    	cache kubecontainer.Cache
    	// For testability.
    	clock clock.Clock
    	// Pods that failed to have their status retrieved during a relist. These pods will be
    	// retried during the next relisting.
    	podsToReinspect map[types.UID]*kubecontainer.Pod
    	// Stop the Generic PLEG by closing the channel.
    	stopCh chan struct{}
    	// Locks the relisting of the Generic PLEG
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 19.3K bytes
    - Viewed (0)
Back to top