Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for Potato (0.16 sec)

  1. pilot/pkg/bootstrap/istio_ca.go

    	enableJitterForRootCertRotator = env.Register("CITADEL_ENABLE_JITTER_FOR_ROOT_CERT_ROTATOR",
    		true,
    		"If true, set up a jitter to start root cert rotator. "+
    			"Jitter selects a backoff time in seconds to start root cert rotator, "+
    			"and the back off time is below root cert check interval.")
    
    	k8sInCluster = env.Register("KUBERNETES_SERVICE_HOST", "",
    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. pkg/test/framework/suite_test.go

    	go s.Run()
    	waitForRun1.Wait()
    
    	s2.Run()
    	waitForTestCompletion.Done()
    	waitForExit1Call.Wait()
    
    	g.Expect(exit2Called).To(Equal(true))
    	g.Expect(errCode1).To(Equal(0))
    	g.Expect(errCode2).NotTo(Equal(0))
    }
    
    func TestSuite_GetResource(t *testing.T) {
    	defer cleanupRT()
    
    	act := func(refPtr any, trackedResource resource.Resource) error {
    		var err error
    		runFn := func(ctx *suiteContext) int {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  3. pkg/kubelet/certificate/kubelet.go

    	return dnsNames, ips
    }
    
    // NewKubeletClientCertificateManager sets up a certificate manager without a
    // client that can be used to sign new certificates (or rotate). If a CSR
    // client is set later, it may begin rotating/renewing the client cert.
    func NewKubeletClientCertificateManager(
    	certDirectory string,
    	nodeName types.NodeName,
    	bootstrapCertData []byte,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 03:07:16 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  4. pkg/log/options.go

    	// RotateOutputPath is the path to a rotating log file. This file should
    	// be automatically rotated over time, based on the rotation parameters such
    	// as RotationMaxSize and RotationMaxAge. The default is to not rotate.
    	//
    	// This path is used as a foundational path. This is where log output is normally
    	// saved. When a rotation needs to take place because the file got too big,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 04:04:34 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. cmd/encryption-v1.go

    		}
    		if subtle.ConstantTimeCompare(oldKey, newKey) == 1 && sealedKey.Algorithm == crypto.SealAlgorithm {
    			return nil // don't rotate on equal keys if seal algorithm is latest
    		}
    		sealedKey = objectKey.Seal(newKey, sealedKey.IV, crypto.SSEC.String(), bucket, object)
    		crypto.SSEC.CreateMetadata(metadata, sealedKey)
    		return nil
    	default:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 37.1K bytes
    - Viewed (0)
Back to top