Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 159 for pruned (0.09 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/buildevents/BuildExceptionReporter.java

                        suppressedDuplicateBranchCount++;
                    }
                }
            }
    
            /**
             * Determines if the given node should be printed.
             *
             * A node should be printed iff it is not in the {@link #printedNodes} set, and it is not a
             * transitive cause of a node that is in the set.  Direct causes will be checked, as well
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/typestring.go

    )
    
    // A Qualifier controls how named package-level objects are printed in
    // calls to [TypeString], [ObjectString], and [SelectionString].
    //
    // These three formatting routines call the Qualifier for each
    // package-level object O, and if the Qualifier returns a non-empty
    // string p, the object is printed in the form p.O.
    // If it returns an empty string, only the object name O is printed.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  3. pkg/kubelet/prober/prober_manager_test.go

    		{"probe_pod", "startup", startup},
    	}
    	if err := expectProbes(m, probePaths); err != nil {
    		t.Error(err)
    	}
    
    	// Removing un-probed pod.
    	m.RemovePod(&noProbePod)
    	if err := expectProbes(m, probePaths); err != nil {
    		t.Error(err)
    	}
    
    	// Removing probed pod.
    	m.RemovePod(&probePod)
    	if err := waitForWorkerExit(t, m, probePaths); err != nil {
    		t.Fatal(err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/shell.go

    //
    //	cmdOut  cmdErr  Result
    //	""      nil     print nothing, return nil
    //	!=""    nil     print output, return nil
    //	""      !=nil   print nothing, return cmdErr (later printed)
    //	!=""    !=nil   print nothing, ignore err, return output as error (later printed)
    //
    // reportCmd returns a non-nil error if and only if cmdErr != nil. It assumes
    // that the command output, if non-empty, is more detailed than the command
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  5. operator/cmd/mesh/manifest_shared_test.go

    	testenv    *envtest.Environment
    	testClient client.Client
    
    	allNamespacedGVKs = append(helmreconciler.NamespacedResources(),
    		schema.GroupVersionKind{Group: "", Version: "v1", Kind: "Endpoints"})
    	// CRDs are not in the prune list, but must be considered for tests.
    	allClusterGVKs = helmreconciler.ClusterResources
    )
    
    func init() {
    	if kubeBuilderInstalled() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 20 22:39:28 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/kube/controller/pod.go

    	// This should only contain RUNNING or PENDING pods with an allocated IP.
    	podsByIP map[string]sets.Set[types.NamespacedName]
    	// IPByPods is a reverse map of podsByIP. This exists to allow us to prune stale entries in the
    	// pod cache if a pod changes IP.
    	IPByPods map[types.NamespacedName]string
    
    	// needResync is map of IP to endpoint namespace/name. This is used to requeue endpoint
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  7. src/go/printer/printer_test.go

    	}
    
    	// pretty-print original
    	var buf bytes.Buffer
    	err = (&Config{Mode: UseSpaces | SourcePos, Tabwidth: 8}).Fprint(&buf, fset, f1)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	// parse pretty printed original
    	// (//line directives must be interpreted even w/o parser.ParseComments set)
    	f2, err := parser.ParseFile(fset, "", buf.Bytes(), 0)
    	if err != nil {
    		t.Fatalf("%s\n%s", err, buf.Bytes())
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/apps/v1beta1/generated.proto

      // This is a pointer to distinguish between explicit zero and not specified.
      // Defaults to 2.
      // +optional
      optional int32 revisionHistoryLimit = 6;
    
      // paused indicates that the deployment is paused.
      // +optional
      optional bool paused = 7;
    
      // DEPRECATED.
      // rollbackTo is the config this deployment is rolling back to. Will be cleared after rollback is done.
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintController.kt

            override fun pause(): WritingState {
                removeListener(fingerprintWriter)
                return Paused(fingerprintWriter, buildScopedSpoolFile, projectScopedSpoolFile)
            }
    
            override fun dispose() =
                pause().dispose()
        }
    
        private
        inner class Paused(
            private val fingerprintWriter: ConfigurationCacheFingerprintWriter,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/apps/v1/types_swagger_doc_generated.go

    	"revisionHistoryLimit":    "The number of old ReplicaSets to retain to allow rollback. This is a pointer to distinguish between explicit zero and not specified. Defaults to 10.",
    	"paused":                  "Indicates that the deployment is paused.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:14:59 UTC 2024
    - 32.5K bytes
    - Viewed (0)
Back to top