Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 152 for ekvs (0.04 sec)

  1. src/internal/trace/internal/oldtrace/parser.go

    		for i := 0; i < len(availableProcs); i++ {
    			proc := availableProcs[i]
    
    			for len(proc.events) == 0 {
    				// Call loadBatch in a loop because sometimes batches are empty
    				evs, err := p.loadBatch(proc.pid, proc.buf[:0])
    				proc.buf = evs[:0]
    				if err == io.EOF {
    					// This P has no more events
    					proc.done = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_pods_test.go

    }
    
    func (ls testServiceLister) List(labels.Selector) ([]*v1.Service, error) {
    	return ls.services, nil
    }
    
    type envs []kubecontainer.EnvVar
    
    func (e envs) Len() int {
    	return len(e)
    }
    
    func (e envs) Swap(i, j int) { e[i], e[j] = e[j], e[i] }
    
    func (e envs) Less(i, j int) bool { return e[i].Name < e[j].Name }
    
    func buildService(name, namespace, clusterIP, protocol string, port int) *v1.Service {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  3. cmd/format-erasure.go

    // It will attempt to read it from env variable and fall back to drives/2.
    func ecDrivesNoConfig(setDriveCount int) (int, error) {
    	sc, err := storageclass.LookupConfig(config.KVS{}, setDriveCount)
    	if err != nil {
    		return 0, err
    	}
    	return sc.GetParityForSC(storageclass.STANDARD), nil
    }
    
    // Initialize a new set of set formats which will be written to all disks.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  4. pkg/istio-agent/agent.go

    	}
    	if credentialSocketExists {
    		log.Info("Credential SDS socket found")
    	}
    
    	return bootstrap.GetNodeMetaData(bootstrap.MetadataOptions{
    		ID:                          a.cfg.ServiceNode,
    		Envs:                        os.Environ(),
    		Platform:                    a.cfg.Platform,
    		InstanceIPs:                 a.cfg.ProxyIPAddresses,
    		StsPort:                     a.secOpts.STSPort,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	driveType = uint32(r0)
    	return
    }
    
    func GetEnvironmentStrings() (envs *uint16, err error) {
    	r0, _, e1 := syscall.Syscall(procGetEnvironmentStringsW.Addr(), 0, 0, 0, 0)
    	envs = (*uint16)(unsafe.Pointer(r0))
    	if envs == nil {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  6. src/log/slog/logger_test.go

    		s := "abc"
    		i := 2000
    		wantAllocs(t, 0, func() {
    			if l.Enabled(ctx, LevelInfo) {
    				l.Log(ctx, LevelInfo, "hello",
    					"n", i,
    					"s", s,
    				)
    			}
    		})
    	})
    	t.Run("9 kvs", func(t *testing.T) {
    		s := "abc"
    		i := 2000
    		d := time.Second
    		wantAllocs(t, 10, func() {
    			dl.Info("hello",
    				"n", i, "s", s, "d", d,
    				"n", i, "s", s, "d", d,
    				"n", i, "s", s, "d", d)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 10 21:25:30 UTC 2023
    - 19.5K bytes
    - Viewed (0)
  7. src/syscall/syscall_windows.go

    //sys	CryptGenRandom(provhandle Handle, buflen uint32, buf *byte) (err error) = advapi32.CryptGenRandom
    //sys	GetEnvironmentStrings() (envs *uint16, err error) [failretval==nil] = kernel32.GetEnvironmentStringsW
    //sys	FreeEnvironmentStrings(envs *uint16) (err error) = kernel32.FreeEnvironmentStringsW
    //sys	GetEnvironmentVariable(name *uint16, buffer *uint16, size uint32) (n uint32, err error) = kernel32.GetEnvironmentVariableW
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/preflight/checks_test.go

    		kL16a2xBMKgV4RDFcu+VYjbJTFdWOTGFrxPBmd/rLdwD3XNiwPtI0vXGM7I35DDP
    		SWwKVvR97F3uEnIQ1u8vHa1pNfQ1qSf/+hUJx2D9ypr7LTQ0LpLh1vUeTeUAVHmT
    		EEpcqzDg6lsqXw6KHJ55kd3QR/hRXd/Vr6EWUawDEnGjxyFVV2dTBbunsbSobNI4
    		eKV+60oCk3NMwrZoLw4Fv5qs2saS62dgJNfxbKqBX9ljSQxGzHjRwh+hVByCnG8m
    		Z9JkQayesM6D7uwbQJXd5rgy
    		-----END CERTIFICATE-----
    	`)
    
    	externalEtcdCertFileContent = dedent.Dedent(`
    		-----BEGIN CERTIFICATE-----
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  9. pkg/kube/inject/inject.go

    func overwriteClusterInfo(pod *corev1.Pod, params InjectionParameters) {
    	c := FindSidecar(pod)
    	if c == nil {
    		return
    	}
    	if len(params.proxyEnvs) > 0 {
    		log.Debugf("Updating cluster envs based on inject url: %s\n", params.proxyEnvs)
    		updateClusterEnvs(c, params.proxyEnvs)
    	}
    }
    
    func updateClusterEnvs(container *corev1.Container, newKVs map[string]string) {
    	envVars := make([]corev1.EnvVar, 0)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 20:35:11 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  10. pkg/kubelet/container/runtime.go

    	Name string
    }
    
    // RunContainerOptions specify the options which are necessary for running containers
    type RunContainerOptions struct {
    	// The environment variables list.
    	Envs []EnvVar
    	// The mounts for the containers.
    	Mounts []Mount
    	// The host devices mapped into the containers.
    	Devices []DeviceInfo
    	// The CDI devices for the container
    	CDIDevices []CDIDevice
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 27.8K bytes
    - Viewed (0)
Back to top