Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,548 for _initialized (0.22 sec)

  1. pkg/kubelet/volume_host.go

    )
    
    // NewInitializedVolumePluginMgr returns a new instance of
    // volume.VolumePluginMgr initialized with kubelets implementation of the
    // volume.VolumeHost interface.
    //
    // kubelet - used by VolumeHost methods to expose kubelet specific parameters
    // plugins - used to initialize volumePluginMgr
    func NewInitializedVolumePluginMgr(
    	kubelet *Kubelet,
    	secretManager secret.Manager,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 11:00:37 UTC 2024
    - 10K bytes
    - Viewed (0)
  2. src/cmd/link/doc.go

    	-X importpath.name=value
    		Set the value of the string variable in importpath named name to value.
    		This is only effective if the variable is declared in the source code either uninitialized
    		or initialized to a constant string expression. -X will not work if the initializer makes
    		a function call or refers to other variables.
    		Note that before Go 1.5 this option took two separate arguments.
    	-asan
    		Link with C/C++ address sanitizer support.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 16:11:52 UTC 2024
    - 4K bytes
    - Viewed (0)
  3. pkg/kubelet/status/generate.go

    			Status: v1.ConditionTrue,
    			Reason: PodCompleted,
    		}
    	}
    
    	// If there is any regular container that has started, then the pod has
    	// been initialized before.
    	// This is needed to handle the case where the pod has been initialized but
    	// the restartable init containers are restarting.
    	if kubecontainer.HasAnyRegularContainerStarted(spec, containerStatuses) {
    		return v1.PodCondition{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 12 15:18:11 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  4. plugin/pkg/admission/certificates/ctbattest/admission.go

    func (p *Plugin) InspectFeatureGates(featureGates featuregate.FeatureGate) {
    	p.enabled = featureGates.Enabled(features.ClusterTrustBundle)
    	p.inspectedFeatureGates = true
    }
    
    // ValidateInitialization checks that the plugin was initialized correctly.
    func (p *Plugin) ValidateInitialization() error {
    	if p.authz == nil {
    		return fmt.Errorf("%s requires an authorizer", PluginName)
    	}
    	if !p.inspectedFeatureGates {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 20 16:26:11 UTC 2023
    - 4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/passes/insert_save_op.cc

               "the values of the VarHandleOps that are found in the initializer "
               "function of 'restore_op' type.";
      }
    
      void runOnOperation() override;
    };
    
    // Finds `tf.AssignVariableOp(tf.VarHandleOp, tf.Const)` patterns and removes
    // `tf.AssignVariableOp`s and `tf.Const`s. Collects and returns the
    // `tf.VarHandleOp`s that are initialized by these `tf.AssignVariableOp`s.
    SmallVector<TF::VarHandleOp> CollectVariableOps(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 05:52:39 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  6. tensorflow/c/tf_tensor.cc

    AbstractTensorInterface* TensorInterfaceFromTensor(const Tensor& src,
                                                       Status* status) {
      *status = absl::OkStatus();
      if (!src.IsInitialized()) {
        *status = FailedPrecondition(
            "attempt to use a tensor with an uninitialized value");
        return nullptr;
      }
      if (src.NumElements() == 0) {
        auto* emptyTensor =
            EmptyTensor(static_cast<TF_DataType>(src.dtype()), src.shape());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Apr 14 21:57:32 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  7. src/crypto/x509/hybrid_pool_test.go

    	}
    	if !testenv.HasExternalNetwork() {
    		t.Skip()
    	}
    	if runtime.GOOS == "windows" {
    		// NOTE(#51599): on the Windows builders we sometimes see that the state
    		// of the root pool is not fully initialized, causing an expected
    		// platform verification to fail. In part this is because Windows
    		// dynamically populates roots into its local trust store at time of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:48:11 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  8. src/runtime/slice.go

    // Existing entries [0, oldLen) are copied over to the new backing store.
    // Added entries [oldLen, newLen) are not initialized by growslice
    // (although for pointer-containing element types, they are zeroed). They
    // must be initialized by the caller.
    // Trailing entries [newLen, newCap) are zeroed.
    //
    // growslice's odd calling convention makes the generated code that calls
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/testshared/testdata/depBase/dep.go

    	"os"
    	"reflect"
    
    	"testshared/depBaseInternal"
    )
    
    // Issue 61973: indirect dependencies are not initialized.
    func init() {
    	if !depBaseInternal.Initialized {
    		panic("depBaseInternal not initialized")
    	}
    	if os.Stdout == nil {
    		panic("os.Stdout is nil")
    	}
    
    	Initialized = true
    }
    
    var Initialized bool
    
    var SlicePtr interface{} = &[]int{}
    
    var V int = 1
    
    var HasMask []string = []string{"hi"}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 14:52:41 UTC 2024
    - 1K bytes
    - Viewed (0)
  10. pkg/proxy/winkernel/proxier.go

    	proxier.syncRunner.Loop(wait.NeverStop)
    }
    
    func (proxier *Proxier) setInitialized(value bool) {
    	var initialized int32
    	if value {
    		initialized = 1
    	}
    	atomic.StoreInt32(&proxier.initialized, initialized)
    }
    
    func (proxier *Proxier) isInitialized() bool {
    	return atomic.LoadInt32(&proxier.initialized) > 0
    }
    
    // OnServiceAdd is called whenever creation of new service object
    // is observed.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
Back to top