Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 543 for toTracking (0.32 sec)

  1. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/ResolveChangesStepTest.groovy

            _ * context.nonIncrementalReason >> Optional.of("Forced rebuild.")
            _ * context.beforeExecutionState >> Optional.of(beforeExecutionState)
            0 * _
        }
    
        def "doesn't provide changes when change tracking is disabled"() {
            when:
            def result = step.execute(work, context)
    
            then:
            result == delegateResult
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:34 UTC 2024
    - 6K bytes
    - Viewed (0)
  2. pkg/kubelet/status/state/state_mem.go

    }
    
    var _ State = &stateMemory{}
    
    // NewStateMemory creates new State to track resources allocated to pods
    func NewStateMemory() State {
    	klog.V(2).InfoS("Initialized new in-memory state store for pod resource allocation tracking")
    	return &stateMemory{
    		podAllocation:   PodResourceAllocation{},
    		podResizeStatus: PodResizeStatus{},
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 24 18:21:21 UTC 2023
    - 4K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/execution/plan/edges/DependencySuccessorsOnlyNodeSet.java

    /**
     * Maintains the state for the dependencies of a node.
     *
     * <p>Attempts to efficiently determine whether a node can start or not based on the state of its dependencies, by tracking those dependencies that are still to complete.</p>
     */
    public class DependencySuccessorsOnlyNodeSet implements DependencyNodesSet {
        private final NavigableSet<Node> orderedDependencies = newSortedNodeSet();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/memorymanager/state/state.go

    	Delete(podUID string, containerName string)
    	// ClearState clears machineState and ContainerMemoryAssignments
    	ClearState()
    }
    
    // State interface provides methods for tracking and setting memory/pod assignment
    type State interface {
    	Reader
    	writer
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 08 23:10:00 UTC 2021
    - 4.4K bytes
    - Viewed (0)
  5. pilot/pkg/status/distribution/reporter_test.go

    		res.GroupVersionKind = col.GroupVersionKind()
    		myResources = append(myResources, status.ResourceFromModelConfig(*res))
    		// Add each resource to our ledger for tracking history
    		// mark each of our resources as in flight so they are included in the report.
    		r.AddInProgressResource(*res)
    	}
    	firstNoncePrefix := r.ledger.RootHash()
    	connections := []string{
    		"conA", "conB", "conC",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 30 17:25:17 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  6. src/cmd/link/doc.go

    		In the file, set packagefile, packageshlib to specify import resolution.
    	-installsuffix suffix
    		Look for packages in $GOROOT/pkg/$GOOS_$GOARCH_suffix
    		instead of $GOROOT/pkg/$GOOS_$GOARCH.
    	-k symbol
    		Set field tracking symbol. Use this flag when GOEXPERIMENT=fieldtrack is set.
    	-libgcc file
    		Set name of compiler support library.
    		This is only used in internal link mode.
    		If not set, default value comes from running the compiler,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 16:11:52 UTC 2024
    - 4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testing/testfieldmanager.go

    type TestFieldManagerImpl struct {
    	fieldManager *internal.FieldManager
    	apiVersion   string
    	emptyObj     runtime.Object
    	liveObj      runtime.Object
    }
    
    // APIVersion of the object that we're tracking.
    func (f *TestFieldManagerImpl) APIVersion() string {
    	return f.apiVersion
    }
    
    // Reset resets the state of the liveObject by resetting it to an empty object.
    func (f *TestFieldManagerImpl) Reset() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 16 20:03:48 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  8. pkg/registry/core/service/portallocator/operation.go

    type PortAllocationOperation struct {
    	pa              Interface
    	allocated       []int
    	releaseDeferred []int
    	shouldRollback  bool
    	dryRun          bool
    }
    
    // Creates a portAllocationOperation, tracking a set of allocations & releases
    // If dryRun is specified, never actually allocate or release anything
    func StartOperation(pa Interface, dryRun bool) *PortAllocationOperation {
    	op := &PortAllocationOperation{}
    	op.pa = pa
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/util.go

    	if msgs := path.IsValidPathSegmentName(name); len(msgs) != 0 {
    		return "", fmt.Errorf("invalid name: %v", msgs)
    	}
    	return prefix + "/" + name, nil
    }
    
    // HighWaterMark is a thread-safe object for tracking the maximum value seen
    // for some quantity.
    type HighWaterMark int64
    
    // Update returns true if and only if 'current' is the highest value ever seen.
    func (hwm *HighWaterMark) Update(current int64) bool {
    	for {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:05:06 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  10. README.md

    ## Roadmap 
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:51 UTC 2024
    - 4.3K bytes
    - Viewed (0)
Back to top