Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 67 for Potato (0.37 sec)

  1. cmd/kubeadm/app/phases/upgrade/postupgrade.go

    	if err := nodebootstraptoken.AutoApproveNodeBootstrapTokens(client); err != nil {
    		errs = append(errs, err)
    	}
    
    	// Create/update RBAC rules that makes the nodes to rotate certificates and get their CSRs approved automatically
    	if err := nodebootstraptoken.AutoApproveNodeCertificateRotation(client); err != nil {
    		errs = append(errs, err)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  2. tests/integration/security/sds_ingress/ingress_test.go

    						// Verify the call works
    						ingressutil.SendRequestOrFail(t, ing, host, credName, ingressutil.TLS, tlsContextA,
    							ingressutil.ExpectedResponse{StatusCode: http.StatusOK})
    
    						// Now rotate the key/cert
    						ingressutil.RotateSecrets(t, credName, ingressutil.TLS,
    							ingressutil.IngressCredentialB, false)
    
    						t.NewSubTest("old cert should fail").Run(func(t framework.TestContext) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/css/base.css

        content: '\2023';
        font-size: 28px;
        position: absolute;
        margin-left: -14px;
        margin-top: -8px;
    }
    
    .docs-navigation .nav-dropdown.expanded:before {
        transform: rotate(90deg);
    }
    
    .docs-navigation > ul ul,
    .docs-navigation > ul ul ul {
        display: none;
        height: 0;
        margin-left: 1rem;
    }
    
    .docs-navigation > ul ul:target,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  4. cluster/gce/gci/configure-kubeapiserver.sh

          # has an in-memory counter that doesn't notice if you truncate the file.
          # 2000000000 (in MiB) is a large number that fits in 31 bits. If the log
          # grows at 10MiB/s (~30K QPS), it will rotate after ~6 years if apiserver
          # never restarts. Please manually restart apiserver before this time.
          params+=" --audit-log-maxsize=2000000000"
    
          # Batching parameters
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 11:08:30 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  5. src/runtime/mstats.go

    	// it can be sure that it will pick up the new gen value the
    	// next time it writes.
    	//
    	// The reader then takes responsibility by clearing space
    	// in the ring buffer for the next reader to rotate gen to
    	// that space (i.e. it merges in values from index (gen-2) mod 3
    	// to index (gen-1) mod 3, then clears the former).
    	//
    	// Note that this means only one reader can be reading at a time.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/internal/driver/html/stacks.js

      function find(name) {
        const elem = document.getElementById(name);
        if (!elem) {
          throw 'element not found: ' + name
        }
        return elem;
      }
    
      function makeColor(index) {
        // Rotate hue around a circle. Multiple by phi to spread things
        // out better. Use 50% saturation to make subdued colors, and
        // 80% lightness to have good contrast with black foreground text.
        const PHI = 1.618033988;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  7. src/runtime/gc_test.go

    	for i := range ptrs {
    		ptrs[i] = new(obj)
    	}
    
    	writeBarrierBenchmark(b, func() {
    		const blockSize = 1024
    		var pos int
    		for i := 0; i < b.N; i += blockSize {
    			// Rotate block.
    			block := ptrs[pos : pos+blockSize]
    			first := block[0]
    			copy(block, block[1:])
    			block[blockSize-1] = first
    
    			pos += blockSize
    			if pos+blockSize > len(ptrs) {
    				pos = 0
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 22:33:52 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  8. pkg/istio-agent/agent.go

    				// is called by sdsServer.OnSecretUpdate, which triggers a push and eventually calls sdsservice.Generate
    				// TODO: extract the logic to detect expiration time, and use a simpler code to rotate to files.
    				_, _ = a.getWorkloadCerts(st)
    			})
    			_, _ = a.getWorkloadCerts(st)
    		}()
    	} else {
    		pkpConf := a.proxyConfig.GetPrivateKeyProvider()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  9. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/policy.go

    		// Used to create a certificatesigningrequest for a node-specific client certificate, and watch
    		// for it to be signed. This allows the kubelet to rotate it's own certificate.
    		rbacv1helpers.NewRule("create", "get", "list", "watch").Groups(certificatesGroup).Resources("certificatesigningrequests").RuleOrDie(),
    
    		// Leases
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 19:25:10 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  10. security/pkg/nodeagent/cache/secretcache.go

    	// outputToCertificatePath handles a special case where we have configured to output certificates
    	// to the special /etc/certs directory. In this case, we need to ensure we do *not* read from
    	// these files, otherwise we would never rotate.
    	outputToCertificatePath, ferr := file.DirEquals(filepath.Dir(cf.CertificatePath), sc.configOptions.OutputKeyCertToDir)
    	if ferr != nil {
    		return false, nil, ferr
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 04 08:29:46 UTC 2024
    - 28.2K bytes
    - Viewed (0)
Back to top