Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 65 for isInitialized (0.41 sec)

  1. guava/src/com/google/common/util/concurrent/AbstractFuture.java

                  ? new Cancellation(
                      mayInterruptIfRunning, new CancellationException("Future.cancel() was called."))
                  /*
                   * requireNonNull is safe because we've initialized these if
                   * !GENERATE_CANCELLATION_CAUSES.
                   *
                   * TODO(cpovirk): Maybe it would be cleaner to define a CancellationSupplier interface
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
  2. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

                  ? new Cancellation(
                      mayInterruptIfRunning, new CancellationException("Future.cancel() was called."))
                  /*
                   * requireNonNull is safe because we've initialized these if
                   * !GENERATE_CANCELLATION_CAUSES.
                   *
                   * TODO(cpovirk): Maybe it would be cleaner to define a CancellationSupplier interface
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
  3. pkg/kubelet/status/status_manager_test.go

    				expectTerminated(t, status.InitContainerStatuses[2].State, 1)
    				expectWaiting(t, status.ContainerStatuses[0].State)
    			},
    		},
    		{
    			name: "successful last container is initialized",
    			pod: newPod(3, 1, func(pod *v1.Pod) {
    				pod.Spec.RestartPolicy = v1.RestartPolicyNever
    				pod.Status.Phase = v1.PodRunning
    				pod.Status.InitContainerStatuses = []v1.ContainerStatus{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 68.1K bytes
    - Viewed (0)
  4. src/net/http/request.go

    	// not reference Trailer. After reading from Body returns EOF, Trailer
    	// can be read again and will contain non-nil values, if they were sent
    	// by the client.
    	//
    	// For client requests, Trailer must be initialized to a map containing
    	// the trailer keys to later send. The values may be nil or their final
    	// values. The ContentLength must be 0 or -1, to send a chunked request.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

      // Rewrites the original op into `tf.fill`. The result tensor shape is
      // [num_element, element_shape]. All the values in the result tensor will be
      // initialized to 0.
      LogicalResult matchAndRewrite(
          OpT op, typename OpT::Adaptor adaptor,
          ConversionPatternRewriter &rewriter) const override {
        Type dtype = op.getElementDtype();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  6. pilot/pkg/model/push_context.go

    	defer ps.initializeMutex.Unlock()
    	if ps.InitDone.Load() {
    		return nil
    	}
    
    	ps.Mesh = env.Mesh()
    	ps.Networks = env.MeshNetworks()
    	ps.LedgerVersion = env.Version()
    
    	// Must be initialized first as initServiceRegistry/VirtualServices/Destrules
    	// use the default export map.
    	ps.initDefaultExportMaps()
    
    	// create new or incremental update
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  7. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    			"supportedAPIVersion", kubeRuntimeAPIVersion)
    		return nil, ErrVersionNotSupported
    	}
    
    	kubeRuntimeManager.runtimeName = typedVersion.RuntimeName
    	klog.InfoS("Container runtime initialized",
    		"containerRuntime", typedVersion.RuntimeName,
    		"version", typedVersion.RuntimeVersion,
    		"apiVersion", typedVersion.RuntimeApiVersion)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  8. src/runtime/mgcpacer.go

    // See https://golang.org/s/go15gcpacing for additional historical context.
    var gcController gcControllerState
    
    type gcControllerState struct {
    	// Initialized from GOGC. GOGC=off means no GC.
    	gcPercent atomic.Int32
    
    	// memoryLimit is the soft memory limit in bytes.
    	//
    	// Initialized from GOMEMLIMIT. GOMEMLIMIT=off is equivalent to MaxInt64
    	// which means no soft memory limit in practice.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/mark_for_compilation_pass.cc

      // some one-time work.
      XLA_SCOPED_LOGGING_TIMER_LEVEL("MarkForCompilationPassImpl::Run", 1);
    
      TF_ASSIGN_OR_RETURN(bool initialized, Initialize());
      if (!initialized) {
        // Initialization exited early which means this instance of
        // MarkForCompilationPassImpl is not set up to run the subsequent phases.
        return absl::OkStatus();
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  10. cmd/test-utils_test.go

    	if z, ok := objLayer.(*erasureServerPools); ok {
    		formattedDisks = z.serverPools[0].GetDisks(0)()
    	}
    
    	// Success.
    	return objLayer, formattedDisks, nil
    }
    
    // removeRoots - Cleans up initialized directories during tests.
    func removeRoots(roots []string) {
    	for _, root := range roots {
    		os.RemoveAll(root)
    	}
    }
    
    // creates a bucket for the tests and returns the bucket name.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
Back to top