Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 83 for markUsed (0.32 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

            dependencyEdge.computeSelector(); // the selector changes, if the 'versionProvidedByAncestors' state changes
            outgoingEdges.add(dependencyEdge);
            dependencyEdge.markUsed();
            discoveredEdges.add(dependencyEdge);
            dependencyEdge.getSelector().use(deferSelection);
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  2. pkg/kubelet/volumemanager/populator/desired_state_of_world_populator_test.go

    				if len(vols) == 0 {
    					t.Fatalf("Request resize for volume, but volume in ASW hasn't been marked as fsResizeRequired")
    				}
    				if len(vols) != 1 {
    					t.Errorf("Some unexpected volumes are marked as fsResizeRequired: %v", vols)
    				}
    				if vols[0] != volName {
    					t.Fatalf("Mark wrong volume as fsResizeRequired: %s", vols[0])
    				}
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  3. pkg/controller/volume/attachdetach/cache/actual_state_of_world_test.go

    	if volumeNode1ComboState != AttachStateAttached {
    		t.Fatalf("%q/%q volume/node combo is marked %q; expected 'Attached'.", generatedVolumeName1, node1Name, volumeNode1ComboState)
    	}
    
    	volumeNode2ComboState := asw.GetAttachState(generatedVolumeName1, node2Name)
    	if volumeNode2ComboState != AttachStateAttached {
    		t.Fatalf("%q/%q volume/node combo is marked %q; expected 'Attached'.", generatedVolumeName1, node2Name, volumeNode2ComboState)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 07:35:17 UTC 2024
    - 66.1K bytes
    - Viewed (0)
  4. src/runtime/mgc.go

    		// the gcMarkDone barrier. However, since the barrier
    		// ensured all reachable objects were marked, all of
    		// these must be pointers to black objects. Hence we
    		// can just discard the write barrier buffer.
    		if debug.gccheckmark > 0 {
    			// For debugging, flush the buffer and make
    			// sure it really was all marked.
    			wbBufFlush1(p)
    		} else {
    			p.wbBuf.reset()
    		}
    
    		gcw := &p.gcw
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  5. pkg/controller/volume/persistentvolume/binder_test.go

    			errors:          noerrors,
    			test:            testSyncClaim,
    		},
    
    		// [Unit test set 3] Syncing bound claim
    		{
    			// syncClaim with claim  bound and its claim.Spec.VolumeName is
    			// removed. Check it's marked as Lost.
    			name:            "3-1 - bound claim with missing VolumeName",
    			initialVolumes:  novolumes,
    			expectedVolumes: novolumes,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:37:30 UTC 2023
    - 65.8K bytes
    - Viewed (0)
  6. src/runtime/mgcmark.go

    //
    //go:nowritebarrier
    func markrootSpans(gcw *gcWork, shard int) {
    	// Objects with finalizers have two GC-related invariants:
    	//
    	// 1) Everything reachable from the object must be marked.
    	// This ensures that when we pass the object to its finalizer,
    	// everything the finalizer can reach will be retained.
    	//
    	// 2) Finalizer specials (which are not in the garbage
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modload/load.go

    	//
    	// If the "all" pattern is included as a root, then non-test packages in "all"
    	// are also roots (and must be marked pkgIsRoot).
    	pkgIsRoot
    
    	// pkgFromRoot indicates that the package is in the transitive closure of
    	// imports starting at the roots. (Note that every package marked as pkgIsRoot
    	// is also trivially marked pkgFromRoot.)
    	pkgFromRoot
    
    	// pkgImportsLoaded indicates that the imports and testImports fields of a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  8. src/runtime/mheap.go

    		inUse := ha.pageInUse[arenaPage/8:]
    		marked := ha.pageMarks[arenaPage/8:]
    		if uintptr(len(inUse)) > n/8 {
    			inUse = inUse[:n/8]
    			marked = marked[:n/8]
    		}
    
    		// Scan this bitmap chunk for spans that are in-use
    		// but have no marked objects on them.
    		for i := range inUse {
    			inUseUnmarked := atomic.Load8(&inUse[i]) &^ marked[i]
    			if inUseUnmarked == 0 {
    				continue
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modload/buildlist.go

    			// transitive dependency graph to be sure that we see all relevant
    			// dependencies. In addition, we must load the requirements of any module
    			// that is explicitly marked as unpruned.
    			nextPruning := summary.pruning
    			if pruning == unpruned {
    				nextPruning = unpruned
    			}
    			for _, r := range summary.require {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

                    "cluster with a result with a non-XLA type: "
                 << result.getType();
        }
      }
      return mlir::success();
    }
    
    // Check that op marked for outside compilation has an ancestor also marked for
    // outside compilation.
    LogicalResult CheckAncestorNotOutsideComp(Operation* op) {
      if (!op->getAttrOfType<StringAttr>(kXlaOutsideCompilationAttr))
        return mlir::success();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
Back to top