Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,030 for doPing (0.09 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/execution/taskgraph/RuleTaskCreationIntegrationTest.groovy

        }
    
        def "cannot create tasks during config of task"() {
            given:
            buildFile << """
                class MyPlugin extends RuleSource {
                    @Mutate
                    void addTasks(ModelMap<Task> tasks) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 18 22:50:47 UTC 2020
    - 16.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/storage/v1alpha1/types.go

    	// attachError represents the last error encountered during attach operation, if any.
    	// This field must only be set by the entity completing the attach
    	// operation, i.e. the external-attacher.
    	// +optional
    	AttachError *VolumeError `json:"attachError,omitempty" protobuf:"bytes,3,opt,name=attachError,casttype=VolumeError"`
    
    	// detachError represents the last error encountered during detach operation, if any.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:32 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r65/ToolingApiShutdownCrossVersionSpec.groovy

        def setup() {
            waitFor = new PollingConditions(timeout: 60, initialDelay: 0, factor: 1.25)
            toolingApi.requireIsolatedDaemons()
        }
    
        @TargetGradleVersion(">=6.5")
        def "disconnect during build stops daemon"() {
            setup:
            buildFile.text = """
                task hang {
                    doLast {
                        ${server.callFromBuild("waiting")}
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/internal/classpath/BuildScriptClasspathIntegrationSpec.groovy

            '''
            builder.buildJar(jarFile)
    
            then:
            succeeds("showBuildscript")
            // A jar coming from some file repo is copied into the transformation cache and served from there.
            inArtifactTransformCache("test-1.3-BUILD-SNAPSHOT.jar")
            // A jar coming from remote repo is cached in the global modules cache and served from there.
            // It isn't copied into the transformation cache.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:47 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  5. common-protos/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: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top