Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for currentNode (0.11 sec)

  1. pkg/kubelet/cloudresource/cloud_request_manager.go

    	// TODO(roberthbailey): Can we do this without having credentials to talk to
    	// the cloud provider?
    	// TODO(justinsb): We can if CurrentNodeName() was actually CurrentNode() and
    	// returned an interface.
    	// TODO: If IP addresses couldn't be fetched from the cloud provider, should
    	// kubelet fallback on the other methods for getting the IP below?
    	instances, ok := m.cloud.Instances()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 05 18:29:23 UTC 2021
    - 4.5K 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. 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)
Back to top