Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 580 for isInitialized (0.19 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/ScalarCollectionModelView.java

            Collection<?> delegate = getBackingValue();
            if (delegate == null) {
                if (overwritable || state.isCanMutate()) {
                    // if the collection is a read-only property, it must be initialized first (it will never be null)
                    // if the collection is *not* read-only, then we will initialize it only if the collection is the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/promise/promise_test.go

    	now := time.Now()
    	aval := &now
    	wr := NewWriteOnce(aval, ctx, cval)
    	gots := make(chan interface{})
    	goGetAndExpect(t, wr, gots, aval)
    	later := time.Now()
    	bval := &later
    	if wr.Set(bval) {
    		t.Error("Set of initialized promise returned true")
    	}
    	goGetAndExpect(t, wr, gots, aval)
    	cancel()
    	time.Sleep(time.Second) // give it a chance to misbehave
    	goGetAndExpect(t, wr, gots, aval)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 21 19:19:31 UTC 2023
    - 3K bytes
    - Viewed (0)
  3. pkg/kubelet/status/status_manager.go

    func hasPodInitialized(pod *v1.Pod) bool {
    	// a pod without init containers is always initialized
    	if len(pod.Spec.InitContainers) == 0 {
    		return true
    	}
    	// if any container has ever moved out of waiting state, the pod has initialized
    	for _, status := range pod.Status.ContainerStatuses {
    		if status.LastTerminationState.Terminated != nil || status.State.Waiting == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 44.3K bytes
    - Viewed (0)
  4. android/guava-testlib/src/com/google/common/collect/testing/testers/AbstractListTester.java

    public class AbstractListTester<E extends @Nullable Object> extends AbstractCollectionTester<E> {
      /*
       * Previously we had a field named list that was initialized to the value of
       * collection in setUp(), but that caused problems when a tester changed the
       * value of list or collection but not both.
       */
      protected final List<E> getList() {
        return (List<E>) collection;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  5. src/os/proc.go

    import (
    	"internal/testlog"
    	"runtime"
    	"syscall"
    )
    
    // Args hold the command-line arguments, starting with the program name.
    var Args []string
    
    func init() {
    	if runtime.GOOS == "windows" {
    		// Initialized in exec_windows.go.
    		return
    	}
    	Args = runtime_args()
    }
    
    func runtime_args() []string // in package runtime
    
    // Getuid returns the numeric user id of the caller.
    //
    // On Windows, it returns -1.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/xla_tpu_device.cc

      return absl::OkStatus();
    }
    
    // Check if TPU has been initialized. TPU initialization is not necessary
    // for 1x1.
    Status CheckIfTPUInitialized() {
      auto* tpu_platform = tpu::TpuPlatformInterface::GetRegisteredPlatform();
      if (!tpu_platform->Initialized()) {
        return errors::FailedPrecondition(
            "The TPU system has not been initialized.");
      }
      return absl::OkStatus();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 22:53:47 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc.go

    // of the issuer check.  Must be passed by reference as it wraps sync.Mutex.
    type asyncIDTokenVerifier struct {
    	m sync.Mutex
    
    	// v is the ID token verifier initialized asynchronously.  It remains nil
    	// up until it is eventually initialized.
    	// Guarded by m
    	v *idTokenVerifier
    }
    
    // newAsyncIDTokenVerifier creates a new asynchronous token verifier.  The
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 19:29:33 UTC 2024
    - 37.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/mutating/plugin_test.go

    			wd, ok := request.LatencyTrackersFrom(ctx)
    			if !ok {
    				if test.InitContext {
    					t.Errorf("expected webhook duration to be initialized")
    				}
    				return
    			}
    			if !test.InitContext {
    				t.Errorf("expected webhook duration to not be initialized")
    				return
    			}
    			if wd.MutatingWebhookTracker.GetLatency() != test.ExpectedDurationSum {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:52 UTC 2024
    - 11K bytes
    - Viewed (0)
  9. src/hash/crc32/crc32.go

    //    // archUpdateCastagnoli updates the given CRC32-C. It can only be called
    //    // if archInitCastagnoli() was previously called.
    //    archUpdateCastagnoli(crc uint32, p []byte) uint32
    
    // castagnoliTable points to a lazily initialized Table for the Castagnoli
    // polynomial. MakeTable will always return this value when asked to make a
    // Castagnoli table so we can compare against it to find when the caller is
    // using this polynomial.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun May 12 05:36:29 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/ModelNode.java

            Discovered(true), // All projections are defined
            Created(true), // Private data has been created, initial rules discovered
            DefaultsApplied(true), // Default values have been applied
            Initialized(true),
            Mutated(true),
            Finalized(false),
            SelfClosed(false),
            GraphClosed(false);
    
            public final boolean mutable;
    
            State(boolean mutable) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.5K bytes
    - Viewed (0)
Back to top