Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 96 of 96 for finalizers (0.14 sec)

  1. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    ----
    signing.gnupg.executable=gpg2
    ----
    ==== `mustRunAfter` constraints no longer violated by `finalizedBy` dependencies
    
    In previous Gradle versions, `mustRunAfter` constraints between regular tasks and finalizer task dependencies would not be honored.
    
    For a concrete example, consider the following task graph definition:
    
    [source,kotlin]
    ----
    tasks {
        register("dockerTest") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  2. pkg/controller/daemon/daemon_controller.go

    	logger := klog.FromContext(ctx)
    	for _, pod := range claimedPods {
    		if !includeDeletedTerminal && podutil.IsPodTerminal(pod) && pod.DeletionTimestamp != nil {
    			// This Pod has a finalizer or is already scheduled for deletion from the
    			// store by the kubelet or the Pod GC. The DS controller doesn't have
    			// anything else to do with it.
    			continue
    		}
    		nodeName, err := util.GetTargetNodeName(pod)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  3. pkg/kubelet/pod_workers.go

    // Once a pod is set to be "torn down" it cannot be started again for that
    // UID (corresponding to a delete or eviction) until:
    //
    //  1. The pod worker is finalized (syncTerminatingPod and
    //     syncTerminatedPod exit without error sequentially)
    //  2. The SyncKnownPods method is invoked by kubelet housekeeping and the pod
    //     is not part of the known config.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/mark_for_compilation_pass_test.cc

      Scope root = Scope::NewRootScope().ExitOnError();
      {
        auto BuildNoopNode = [](absl::string_view name, Graph* graph) {
          NodeDefBuilder builder(name, "NoOp");
          NodeDef def;
          TF_CHECK_OK(builder.Finalize(&def));
    
          Status status;
          Node* node = graph->AddNode(def, &status);
          TF_CHECK_OK(status);
          return node;
        };
    
        Node* a = BuildNoopNode("a", graph.get());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 10:11:10 UTC 2024
    - 79.6K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/load.go

    		listRoots: func(rs *Requirements) (roots []string) {
    			updateMatches(rs, nil)
    			for _, m := range matches {
    				roots = append(roots, m.Pkgs...)
    			}
    			return roots
    		},
    	})
    
    	// One last pass to finalize wildcards.
    	updateMatches(ld.requirements, ld)
    
    	// List errors in matching patterns (such as directory permission
    	// errors for wildcard patterns).
    	if !ld.SilencePackageErrors {
    		for _, match := range matches {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  6. src/cmd/cgo/gcc.go

    			p.recordTypedefs1(a, pos, visited)
    		}
    	case *dwarf.StructType:
    		for _, f := range dt.Field {
    			p.recordTypedefs1(f.Type, pos, visited)
    		}
    	}
    }
    
    // prepareNames finalizes the Kind field of not-type names and sets
    // the mangled name of all names.
    func (p *Package) prepareNames(f *File) {
    	for _, n := range f.Name {
    		if n.Kind == "not-type" {
    			if n.Define == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
Back to top