Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 2,291 for statDep (0.15 sec)

  1. src/vendor/golang.org/x/net/PATENTS

    "This implementation" means the copyrightable works distributed by
    Google as part of the Go project.
    
    Google hereby grants to You a perpetual, worldwide, non-exclusive,
    no-charge, royalty-free, irrevocable (except as stated in this section)
    patent license to make, have made, use, offer to sell, sell, import,
    transfer and otherwise run, modify and propagate the contents of this
    implementation of Go, where such license applies only to those patent
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 20:28:54 UTC 2019
    - 1.3K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/text/PATENTS

    "This implementation" means the copyrightable works distributed by
    Google as part of the Go project.
    
    Google hereby grants to You a perpetual, worldwide, non-exclusive,
    no-charge, royalty-free, irrevocable (except as stated in this section)
    patent license to make, have made, use, offer to sell, sell, import,
    transfer and otherwise run, modify and propagate the contents of this
    implementation of Go, where such license applies only to those patent
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 20:28:54 UTC 2019
    - 1.3K bytes
    - Viewed (0)
  3. pkg/scheduler/internal/cache/interface.go

    //   - If a pod wasn't added, it wouldn't be removed or updated.
    //   - Both "Expired" and "Deleted" are valid end states. In case of some problems, e.g. network issue,
    //     a pod might have changed its state (e.g. added and deleted) without delivering notification to the cache.
    type Cache interface {
    	// NodeCount returns the number of nodes in the cache.
    	// DO NOT use outside of tests.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 29 05:26:32 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/ComponentState.java

        }
    
        public boolean isSelected() {
            return state == ComponentSelectionState.Selected;
        }
    
        public boolean isCandidateForConflictResolution() {
            return state.isCandidateForConflictResolution();
        }
    
        void evict() {
            state = ComponentSelectionState.Evicted;
        }
    
        void select() {
            state = ComponentSelectionState.Selected;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 17K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/dependency_locking.adoc

    In order to generate or update lock state, you specify the `--write-locks` command line argument in addition to the normal tasks that would trigger configurations to be resolved.
    This will cause the creation of lock state for each resolved configuration in that build execution.
    Note that if lock state existed previously, it is overwritten.
    
    NOTE: Gradle will not write lock state to disk if the build fails.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:55:22 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/decompose_reduce_dataset.cc

                                                              get_next.getResult());
      SmallVector<Value, 4> reduce_fn_args;
    
      // Function arguments are state values, dataset values, and then passthrough
      // arguments.
      // First argument to body is the while loop condition and state values start
      // at index=1.
      for (int i = 1; i < state_size + 1; ++i) {
        reduce_fn_args.push_back(body_args[i]);
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14K bytes
    - Viewed (0)
  7. pkg/controller/volume/attachdetach/populator/desired_state_of_world_populator.go

    	volutil "k8s.io/kubernetes/pkg/volume/util"
    )
    
    // DesiredStateOfWorldPopulator periodically verifies that the pods in the
    // desired state of the world still exist, if not, it removes them.
    // It also loops through the list of active pods and ensures that
    // each one exists in the desired state of the world cache
    // if it has volumes.
    type DesiredStateOfWorldPopulator interface {
    	Run(ctx context.Context)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:37:30 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  8. pkg/kubelet/prober/prober_manager.go

    			continue
    		}
    		if !kubetypes.IsRestartableInitContainer(&initContainer) {
    			if c.State.Terminated != nil && c.State.Terminated.ExitCode == 0 {
    				podStatus.InitContainerStatuses[i].Ready = true
    			}
    			continue
    		}
    
    		if !started {
    			continue
    		}
    
    		var ready bool
    		if c.State.Running == nil {
    			ready = false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 07 22:26:12 UTC 2023
    - 11K bytes
    - Viewed (0)
  9. src/runtime/lock_futex.go

    	active_spin     = 4
    	active_spin_cnt = 30
    	passive_spin    = 1
    )
    
    // Possible lock states are mutex_unlocked, mutex_locked and mutex_sleeping.
    // mutex_sleeping means that there is presumably at least one sleeping thread.
    // Note that there can be spinning threads during all states - they do not
    // affect mutex's state.
    
    // We use the uintptr mutex.key and note.key as a uint32.
    //
    //go:nosplit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:34 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/kmsv2/envelope_test.go

    	envelopeService := newTestEnvelopeService()
    	state, err := testStateFunc(ctx, envelopeService, clock.RealClock{}, useSeed)()
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	// start with a broken state
    	stateErr := fmt.Errorf("some state error")
    
    	transformer := NewEnvelopeTransformer(envelopeService, testProviderName,
    		func() (State, error) { return state, stateErr }, testAPIServerID,
    	)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 25 16:50:20 UTC 2023
    - 47.2K bytes
    - Viewed (0)
Back to top