Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 102 for SELF (0.03 sec)

  1. pilot/pkg/bootstrap/istio_ca.go

    	SelfSignedCACertTTL = env.Register("CITADEL_SELF_SIGNED_CA_CERT_TTL",
    		cmd.DefaultSelfSignedCACertTTL,
    		"The TTL of self-signed CA root certificate.")
    
    	selfSignedRootCertCheckInterval = env.Register("CITADEL_SELF_SIGNED_ROOT_CERT_CHECK_INTERVAL",
    		cmd.DefaultSelfSignedRootCertCheckInterval,
    		"The interval that self-signed CA checks its root certificate "+
    			"expiration time and rotates root certificate. Setting this interval "+
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/options/serving.go

    			return fmt.Errorf("unable to generate self signed cert: %v", err)
    		} else if len(keyCert.CertFile) > 0 && len(keyCert.KeyFile) > 0 {
    			if err := certutil.WriteCert(keyCert.CertFile, cert); err != nil {
    				return err
    			}
    			if err := keyutil.WriteKey(keyCert.KeyFile, key); err != nil {
    				return err
    			}
    			klog.Infof("Generated self-signed cert (%s, %s)", keyCert.CertFile, keyCert.KeyFile)
    		} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 13:08:18 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation.go

    }
    
    type validationActivation struct {
    	self, oldSelf ref.Val
    	hasOldSelf    bool
    }
    
    func validationActivationWithOldSelf(sts *schema.Structural, obj, oldObj interface{}) (activation interpreter.Activation, optionalOldSelfActivation interpreter.Activation) {
    	va := &validationActivation{
    		self: UnstructuredToVal(obj, sts),
    	}
    	optionalVA := &validationActivation{
    		self:       va.self,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 18:21:31 UTC 2024
    - 32.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/analysis/side_effect_analysis.cc

          // For value-based side effects we currently treat resource types that are
          // only self-dependent conservatively, i.e., we do add dependencies
          // to/from unknown resource types. Currently, we don't have such cases and
          // there is no indication that we will need to support them in the future.
          LOG(WARNING) << "Self-dependent-only resource types are treated "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  5. src/syscall/exec_linux_test.go

    	const O_PATH = 0x200000 // Same for all architectures, but for some reason not defined in syscall for 386||amd64.
    
    	// Requires cgroup v2.
    	const prefix = "/sys/fs/cgroup"
    	selfCg, err := os.ReadFile("/proc/self/cgroup")
    	if err != nil {
    		if os.IsNotExist(err) || os.IsPermission(err) {
    			t.Skip(err)
    		}
    		t.Fatal(err)
    	}
    
    	// Expect a single line like this:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  6. fastapi/openapi/docs.py

        Read more about it in the
        [FastAPI docs for Configure Swagger UI](https://fastapi.tiangolo.com/how-to/configure-swagger-ui/)
        and the [FastAPI docs for Custom Docs UI Static Assets (Self-Hosting)](https://fastapi.tiangolo.com/how-to/custom-docs-ui-assets/).
        """
        current_swagger_ui_parameters = swagger_ui_default_parameters.copy()
        if swagger_ui_parameters:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 23 22:59:02 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/phases/certs/certlist.go

    	}
    }
    
    // KubeadmCertRootCA is the definition of the Kubernetes Root CA for the API Server and kubelet.
    func KubeadmCertRootCA() *KubeadmCert {
    	return &KubeadmCert{
    		Name:     "ca",
    		LongName: "self-signed Kubernetes CA to provision identities for other Kubernetes components",
    		BaseName: kubeadmconstants.CACertAndKeyBaseName,
    		config: pkiutil.CertConfig{
    			Config: certutil.Config{
    				CommonName: "kubernetes",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  8. pkg/kubelet/kuberuntime/kuberuntime_container_linux.go

    		if isCgroup2UnifiedMode() {
    			// memory.swap.max does not exist in the cgroup root, so we check /sys/fs/cgroup/<SELF>/memory.swap.max
    			_, unified, err := cgroups.ParseCgroupFileUnified("/proc/self/cgroup")
    			if err != nil {
    				klog.V(5).ErrorS(fmt.Errorf("failed to parse /proc/self/cgroup: %w", err), warn)
    				return
    			}
    			p = filepath.Join("/sys/fs/cgroup", unified, "memory.swap.max")
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  9. src/runtime/lockrank.go

    // Locks with lower rank must be taken before locks with higher rank,
    // in addition to satisfying the partial order in lockPartialOrder.
    // A few ranks allow self-cycles, which are specified in lockPartialOrder.
    const (
    	lockRankUnknown lockRank = iota
    
    	lockRankSysmon
    	lockRankScavenge
    	lockRankForcegc
    	lockRankDefer
    	lockRankSweepWaiters
    	lockRankAssistQueue
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/cbor_test.go

    		name           string
    		in             runtime.Object
    		assertOnWriter func() (io.Writer, func(*testing.T))
    		assertOnError  func(*testing.T, error)
    	}{
    		{
    			name: "io error writing self described cbor tag",
    			assertOnWriter: func() (io.Writer, func(*testing.T)) {
    				return stubWriter{err: io.ErrShortWrite}, func(*testing.T) {}
    			},
    			assertOnError: func(t *testing.T, err error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 13 14:57:12 UTC 2024
    - 20.1K bytes
    - Viewed (0)
Back to top