Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 61 for ekvs (0.05 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/crypto/x509/verify.go

    // the constrained name to be considered valid.
    //
    // Extended Key Usage values are enforced nested down a chain, so an intermediate
    // or root that enumerates EKUs prevents a leaf from asserting an EKU not in that
    // list. (While this is not specified, it is common practice in order to limit
    // the types of certificates a CA can issue.)
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:39 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  8. hack/lib/golang.sh

        if ! (command -v go >/dev/null && [ "$(go version | cut -d' ' -f3)" = "${GOTOOLCHAIN}" ]); then
          export GIMME_ENV_PREFIX=${GIMME_ENV_PREFIX:-"${KUBE_OUTPUT}/.gimme/envs"}
          export GIMME_VERSION_PREFIX=${GIMME_VERSION_PREFIX:-"${KUBE_OUTPUT}/.gimme/versions"}
          # eval because the output of this is shell to set PATH etc.
          eval "$("${KUBE_ROOT}/third_party/gimme/gimme" "${GO_VERSION}")"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  9. cmd/server-main.go

    	// Add the global public crts as part of global root CAs
    	for _, publicCrt := range globalPublicCerts {
    		globalRootCAs.AddCert(publicCrt)
    	}
    
    	// Register root CAs for remote ENVs
    	env.RegisterGlobalCAs(globalRootCAs)
    
    	globalEndpoints, setupType, err = createServerEndpoints(globalMinioAddr, ctxt.Layout.pools, ctxt.Layout.legacy)
    	logger.FatalIf(err, "Invalid command line arguments")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 04 15:12:57 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  10. pkg/kube/inject/webhook.go

    		log.Errorf("Could not write response: %v", err)
    		http.Error(w, fmt.Sprintf("could not write response: %v", err), http.StatusInternalServerError)
    	}
    }
    
    // parseInjectEnvs parse new envs from inject url path. format: /inject/k1/v1/k2/v2
    // slash characters in values must be replaced by --slash-- (e.g. /inject/k1/abc--slash--def/k2/v2).
    func parseInjectEnvs(path string) map[string]string {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:59:39 UTC 2024
    - 42.2K bytes
    - Viewed (0)
Back to top