Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 152 for ekvs (0.06 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. internal/config/identity/openid/jwt_test.go

    }
    
    func TestKeycloakProviderInitialization(t *testing.T) {
    	testConfig := providerCfg{
    		DiscoveryDoc: DiscoveryDoc{
    			TokenEndpoint: "http://keycloak.test/token/endpoint",
    		},
    	}
    	testKvs := config.KVS{}
    	testKvs.Set(Vendor, "keycloak")
    	testKvs.Set(KeyCloakRealm, "TestRealm")
    	testKvs.Set(KeyCloakAdminURL, "http://keycloak.test/auth/admin")
    	cfgGet := func(param string) string {
    		return testKvs.Get(param)
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  9. src/runtime/os_windows.go

    	n := 0
    	for from, i := 0, 0; true; i++ {
    		if p[i] == 0 {
    			// empty string marks the end
    			if i == from {
    				break
    			}
    			from = i + 1
    			n++
    		}
    	}
    	envs = make([]string, n)
    
    	for i := range envs {
    		envs[i] = gostringw(&p[0])
    		for p[0] != 0 {
    			p = p[1:]
    		}
    		p = p[1:] // skip nil byte
    	}
    
    	stdcall1(_FreeEnvironmentStringsW, uintptr(strings))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 41.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/endpoints/filters/audit_test.go

    )
    
    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 _, e := range evs {
    		event := e.DeepCopy()
    		s.events = append(s.events, event)
    	}
    	return true
    }
    
    func (s *fakeAuditSink) Events() []*auditinternal.Event {
    	s.lock.Lock()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 03 16:16:51 UTC 2023
    - 22.6K bytes
    - Viewed (0)
Back to top