Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 168 for ekvs (0.09 sec)

  1. pkg/kubelet/kuberuntime/kuberuntime_container_linux_test.go

    	containerLogsPath := buildContainerLogsPath(container.Name, restartCount)
    	restartCountUint32 := uint32(restartCount)
    	envs := make([]*runtimeapi.KeyValue, len(opts.Envs))
    
    	l, _ := m.generateLinuxContainerConfig(container, pod, new(int64), "", nil, enforceMemoryQoS)
    
    	expectedConfig := &runtimeapi.ContainerConfig{
    		Metadata: &runtimeapi.ContainerMetadata{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 41K bytes
    - Viewed (0)
  2. src/runtime/netpoll_solaris.go

    	return int32(sysvicall3(&libc_port_dissociate, uintptr(port), uintptr(source), object))
    }
    
    func port_getn(port int32, evs *portevent, max uint32, nget *uint32, timeout *timespec) int32 {
    	return int32(sysvicall5(&libc_port_getn, uintptr(port), uintptr(unsafe.Pointer(evs)), uintptr(max), uintptr(unsafe.Pointer(nget)), uintptr(unsafe.Pointer(timeout))))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/etcd3/compact.go

    		clientv3.OpGet(compactRevKey),
    	).Commit()
    	if err != nil {
    		return t, rev, err
    	}
    
    	curRev := resp.Header.Revision
    
    	if !resp.Succeeded {
    		curTime := resp.Responses[0].GetResponseRange().Kvs[0].Version
    		return curTime, curRev, nil
    	}
    	curTime := t + 1
    
    	if rev == 0 {
    		// We don't compact on bootstrap.
    		return curTime, curRev, nil
    	}
    	if _, err = client.Compact(ctx, rev); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 17 02:54:36 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  4. platforms/core-runtime/build-process-services/src/test/groovy/org/gradle/api/internal/classpath/DefaultModuleRegistryTest.groovy

            save(properties, moduleDir.file("gradle-$simpleName-classpath.properties"))
            moduleDir
        }
    
        private Properties properties(Map kvs = [:]) {
            new Properties().with {
                putAll(kvs)
                it
            }
        }
    
        private URLClassLoader classLoaderFor(Iterable<TestFile> files) {
            new URLClassLoader(files.collect { it.toURI().toURL() } as URL[])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  5. internal/s3select/sql/evaluate.go

    	alias := tableAlias
    	if tableAlias == "" {
    		alias = baseTableName
    	}
    	pathExpr := e.StripTableAlias(alias)
    	_, rawVal := r.Raw()
    	switch rowVal := rawVal.(type) {
    	case jstream.KVS, simdjson.Object:
    		if len(pathExpr) == 0 {
    			pathExpr = []*JSONPathElement{{Key: &ObjectKey{ID: e.BaseKey}}}
    		}
    
    		result, _, err := jsonpathEval(pathExpr, rowVal)
    		if err != nil {
    			return nil, err
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Dec 23 07:19:11 UTC 2023
    - 12K bytes
    - Viewed (0)
  6. pkg/apis/core/validation/validation_test.go

    	}
    
    	errorCases := []struct {
    		name          string
    		envs          []core.EnvVar
    		expectedError string
    	}{{
    		name:          "illegal character",
    		envs:          []core.EnvVar{{Name: "=abc"}},
    		expectedError: `[0].name: Invalid value: "=abc": ` + relaxedEnvVarNameFmtErrMsg,
    	}, {
    		name:          "zero-length name",
    		envs:          []core.EnvVar{{Name: ""}},
    		expectedError: "[0].name: Required value",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/etcd3/store_test.go

    		if err != nil {
    			t.Fatalf("etcdClient.KV.Get failed: %v", err)
    		}
    		if len(getResp.Kvs) == 0 {
    			t.Fatalf("expecting non empty result on key: %s", key)
    		}
    		decoded, err := runtime.Decode(codec, getResp.Kvs[0].Value[len(defaultTestPrefix):])
    		if err != nil {
    			t.Fatalf("expecting successful decode of object from %v\n%v", err, string(getResp.Kvs[0].Value))
    		}
    		obj := decoded.(*example.Pod)
    		if obj.ResourceVersion != "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/env_write.txt

    # check a valid GOOS and GOARCH values but an incompatible combinations
    ! go env -w GOOS=android GOARCH=s390x
    stderr 'unsupported GOOS/GOARCH pair android/s390x'
    # check that -u considers explicit envs
    go env -w GOOS=linux GOARCH=mips
    env GOOS=windows
    ! go env -u GOOS
    stderr 'unsupported GOOS/GOARCH.*windows/mips$'
    env GOOS=
    
    # go env -w should reject relative paths in GOMODCACHE environment.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 18:42:31 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  9. pkg/kubelet/cm/container_manager_linux.go

    		return nil, err
    	} else if devOpts == nil {
    		return opts, nil
    	}
    	opts.Devices = append(opts.Devices, devOpts.Devices...)
    	opts.Mounts = append(opts.Mounts, devOpts.Mounts...)
    	opts.Envs = append(opts.Envs, devOpts.Envs...)
    	opts.Annotations = append(opts.Annotations, devOpts.Annotations...)
    	opts.CDIDevices = append(opts.CDIDevices, devOpts.CDIDevices...)
    	return opts, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  10. docs/config/README.md

       └─ public.crt
    ```
    
    You can provide a custom certs directory using `--certs-dir` command line option.
    
    #### Credentials
    
    On MinIO admin credentials or root credentials are only allowed to be changed using ENVs namely `MINIO_ROOT_USER` and `MINIO_ROOT_PASSWORD`.
    
    ```sh
    export MINIO_ROOT_USER=minio
    export MINIO_ROOT_PASSWORD=minio13
    minio server /data
    ```
    
    #### Site
    
    ```
    KEY:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Sep 11 21:48:54 UTC 2023
    - 17.7K bytes
    - Viewed (0)
Back to top