Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 34 for currentNode (0.18 sec)

  1. pkg/volume/util/operationexecutor/operation_generator.go

    			volumeToAttach.VolumeSpec, volumeToAttach.NodeName)
    
    		if attachErr != nil {
    			uncertainNode := volumeToAttach.NodeName
    			if derr, ok := attachErr.(*volerr.DanglingAttachError); ok {
    				uncertainNode = derr.CurrentNode
    			}
    			addErr := actualStateOfWorld.MarkVolumeAsUncertain(
    				logger,
    				volumeToAttach.VolumeName,
    				volumeToAttach.VolumeSpec,
    				uncertainNode)
    			if addErr != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/graph-serialization/src/main/kotlin/org/gradle/internal/serialize/graph/Contexts.kt

        }
    
        protected
        fun getCodec() = currentCodec
    
        private
        val contexts = ArrayList<Pair<T?, Codec<Any?>>>()
    
        override fun push(codec: Codec<Any?>) {
            contexts.add(0, Pair(currentIsolate, currentCodec))
            currentCodec = codec
        }
    
        override fun push(owner: IsolateOwner) {
            push(owner, currentCodec)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/saved_model/core/saved_model_utils.cc

      // object names as we go.
      int node_id = 0;
      const SavedObject* current_node = &nodes.Get(node_id);
    
      for (absl::string_view object_name : absl::StrSplit(path, '.')) {
        auto child_node_iter = std::find_if(
            current_node->children().begin(), current_node->children().end(),
            [object_name](
                const TrackableObjectGraph::TrackableObject::ObjectReference& obj) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 12 19:17:46 UTC 2023
    - 24K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/util_test.go

    	require.Equal(t, currentStorageRV, rsRV, "expected the global etcd RV to be equal to replicaset's RV")
    
    	// ensure that the pod's RV hasn't been changed
    	currentPod := getPod(pod.Name, pod.Namespace)
    	currentPodRV, err := versioner.ParseResourceVersion(currentPod.ResourceVersion)
    	require.NoError(t, err)
    	require.Equal(t, currentPodRV, podRV, "didn't expect to see the pod's RV changed")
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 11 12:07:39 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/rest_test.go

    	for {
    		currentPod := p.startingPod
    		if p.numUpdates > 0 {
    			currentPod = p.updatePod
    		}
    		p.numUpdates++
    
    		// Remember the current resource version
    		currentResourceVersion := currentPod.ResourceVersion
    
    		obj, err := objInfo.UpdatedObject(ctx, currentPod)
    		if err != nil {
    			return nil, false, err
    		}
    		inPod := obj.(*example.Pod)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/saved_model/core/tf_saved_model_api.cc

      if (node_id >= nodes.size()) {
        return errors::OutOfRange(
            "node_id ", node_id,
            " not found.  Maximum node ID: ", nodes.size() - 1);
      }
      const SavedObject* current_node = &nodes.Get(node_id);
      for (const auto& child : current_node->children()) {
        ConcreteFunction* concrete_fn;
        Status status = GetFunction(child.local_name(), &concrete_fn);
        if (status.ok()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 27 09:34:33 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  7. pkg/controller/daemon/update_test.go

    	clearExpectations(t, manager, ds, podControl)
    	expectSyncDaemonSets(t, manager, ds, podControl, 3, 0, 0)
    
    	hash, err := currentDSHash(manager, ds)
    	if err != nil {
    		t.Fatal(err)
    	}
    	currentPods := podsByNodeMatchingHash(manager, hash)
    	// mark two updated pods as ready at time 300
    	setPodReadiness(t, manager, true, 2, func(pod *v1.Pod) bool {
    		return pod.Labels[apps.ControllerRevisionHashLabelKey] == hash
    	})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 10 21:10:35 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  8. src/internal/trace/traceviewer/static/trace_viewer_full.html

    if(currentElement.parentElement){currentElement=currentElement.parentElement;continue;}
    let currentNode=currentElement;while(Polymer.dom(currentNode).parentNode){currentNode=Polymer.dom(currentNode).parentNode;}
    currentElement=currentNode.host;}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (1)
  9. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_loong64.go

    type TIPCSIOCNodeIDReq struct {
    	Peer uint32
    	Id   [16]int8
    }
    
    type PPSKInfo struct {
    	Assert_sequence uint32
    	Clear_sequence  uint32
    	Assert_tu       PPSKTime
    	Clear_tu        PPSKTime
    	Current_mode    int32
    	_               [4]byte
    }
    
    const (
    	PPS_GETPARAMS = 0x800870a1
    	PPS_SETPARAMS = 0x400870a2
    	PPS_GETCAP    = 0x800870a3
    	PPS_FETCH     = 0xc00870a4
    )
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_mips.go

    type TIPCSIOCNodeIDReq struct {
    	Peer uint32
    	Id   [16]int8
    }
    
    type PPSKInfo struct {
    	Assert_sequence uint32
    	Clear_sequence  uint32
    	Assert_tu       PPSKTime
    	Clear_tu        PPSKTime
    	Current_mode    int32
    	_               [4]byte
    }
    
    const (
    	PPS_GETPARAMS = 0x400470a1
    	PPS_SETPARAMS = 0x800470a2
    	PPS_GETCAP    = 0x400470a3
    	PPS_FETCH     = 0xc00470a4
    )
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.3K bytes
    - Viewed (0)
Back to top