Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 61 for ekvs (0.06 sec)

  1. pkg/kubelet/cm/devicemanager/pod_devices_test.go

    			as.ElementsMatch(tc.expected.Annotations, opts.Annotations)
    			as.ElementsMatch(tc.expected.CDIDevices, opts.CDIDevices)
    			as.ElementsMatch(tc.expected.Devices, opts.Devices)
    			as.ElementsMatch(tc.expected.Envs, opts.Envs)
    			as.ElementsMatch(tc.expected.Mounts, opts.Mounts)
    		})
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  2. hack/make-rules/test-e2e-node.sh

        --image-config-dir="${image_config_dir}" --node-env="${node_env}" \
        --use-dockerized-build="${use_dockerized_build}" --instance-type="${instance_type}" \
        --target-build-arch="${target_build_arch}" \
        --extra-envs="${extra_envs}" --kubelet-config-file="${kubelet_config_file}"  --test-suite="${test_suite}" \
        "${timeout_arg}" \
        2>&1 | tee -i "${artifacts}/build-log.txt"
      exit $?
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 16 09:46:28 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/etcd3/store.go

    		if opts.Predicate.Empty() {
    			growSlice(v, len(getResp.Kvs))
    		} else {
    			growSlice(v, 2048, len(getResp.Kvs))
    		}
    
    		// take items from the response until the bucket is full, filtering as we go
    		for i, kv := range getResp.Kvs {
    			if paging && int64(v.Len()) >= opts.Predicate.Limit {
    				hasMore = true
    				break
    			}
    			lastKey = kv.Key
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 11:56:42 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/devicemanager/pod_devices.go

    		// Environment variables
    		// Mount points
    		// Device files
    		// Container annotations
    		// CDI device IDs
    		// These artifacts are per resource per container.
    		// Updates RunContainerOptions.Envs.
    		for k, v := range resp.Envs {
    			if e, ok := envsMap[k]; ok {
    				klog.V(4).InfoS("Skip existing env", "envKey", k, "envValue", v)
    				if e != v {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 27 02:10:25 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  5. pilot/pkg/features/pilot.go

    		"If disabled, Gateway API gateways will ignore workloadSelector policies, only"+
    			"applying policies that select the gateway with a targetRef.").Get()
    
    	// Useful for IPv6-only EKS clusters. See https://aws.github.io/aws-eks-best-practices/networking/ipv6/ why it assigns an additional IPv4 NAT address.
    	// Also see https://github.com/istio/istio/issues/46719 why this flag is required
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. src/runtime/runtime.go

    		// Sleep in one millisecond increments until we have a reliable time.
    		timeSleep(1_000_000)
    	}
    	return r
    }
    
    var envs []string
    var argslice []string
    
    //go:linkname syscall_runtime_envs syscall.runtime_envs
    func syscall_runtime_envs() []string { return append([]string{}, envs...) }
    
    //go:linkname syscall_Getpagesize syscall.Getpagesize
    func syscall_Getpagesize() int { return int(physPageSize) }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  7. src/runtime/runtime1.go

    	// problems.
    	n := int32(0)
    	for argv_index(argv, argc+1+n) != nil {
    		n++
    	}
    
    	envs = make([]string, n)
    	for i := int32(0); i < n; i++ {
    		envs[i] = gostring(argv_index(argv, argc+1+i))
    	}
    }
    
    func environ() []string {
    	return envs
    }
    
    // TODO: These should be locals in testAtomic64, but we don't 8-byte
    // align stack variables on 386.
    var test_z64, test_x64 uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/endpoints/audit_test.go

    	"k8s.io/apiserver/pkg/registry/rest"
    )
    
    type fakeAuditSink struct {
    	lock   sync.Mutex
    	events []*auditinternal.Event
    }
    
    func (s *fakeAuditSink) ProcessEvents(evs ...*auditinternal.Event) bool {
    	s.lock.Lock()
    	defer s.lock.Unlock()
    	for _, ev := range evs {
    		e := ev.DeepCopy()
    		s.events = append(s.events, e)
    	}
    	return true
    }
    
    func (s *fakeAuditSink) Events() []*auditinternal.Event {
    	s.lock.Lock()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 14 23:04:34 UTC 2022
    - 12.1K bytes
    - Viewed (0)
  9. pkg/kube/inject/inject_test.go

    			}
    		})
    	}
    }
    
    func podWithEnv(envCount int) *corev1.Pod {
    	envs := []corev1.EnvVar{}
    	for i := 0; i < envCount; i++ {
    		envs = append(envs, corev1.EnvVar{
    			Name:  fmt.Sprintf("something-%d", i),
    			Value: "blah",
    		})
    	}
    	return &corev1.Pod{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      "foo",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 20:35:11 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  10. cmd/admin-handlers-config-kv.go

    	objectAPI, cred := validateAdminReq(ctx, w, r, policy.ConfigUpdateAdminAction)
    	if objectAPI == nil {
    		return
    	}
    
    	cfg := globalServerConfig.Clone()
    
    	var s strings.Builder
    	hkvs := config.HelpSubSysMap[""]
    	for _, hkv := range hkvs {
    		// We ignore the error below, as we cannot get one.
    		cfgSubsysItems, _ := cfg.GetSubsysInfo(hkv.Key, "", false)
    
    		for _, item := range cfgSubsysItems {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 15.7K bytes
    - Viewed (0)
Back to top