Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 97 for Potato (0.11 sec)

  1. security/pkg/pki/ca/selfsignedcarootcertrotator_test.go

    	// a copy of root cert from config map for verification.
    	certItem0 := loadCert(rotator)
    
    	// Change grace period percentage to 100, so that root cert is guarantee to rotate.
    	rotator.config.certInspector = certutil.NewCertUtil(100)
    	// Rotate the root certificate now.
    	rotator.checkAndRotateRootCert()
    	certItem1 := loadCert(rotator)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 11 23:33:41 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  2. security/pkg/pki/ca/selfsignedcarootcertrotator.go

    	}
    	return rotator
    }
    
    // Run refreshes root certs and updates config map accordingly.
    func (rotator *SelfSignedCARootCertRotator) Run(stopCh chan struct{}) {
    	if rotator.config.enableJitter {
    		rootCertRotatorLog.Infof("Jitter is enabled, wait %s before "+
    			"starting root cert rotator.", rotator.backOffTime.String())
    		select {
    		case <-time.After(rotator.backOffTime):
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 30 19:33:26 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  3. cmd/batch-rotate.go

    	}, ObjectOptions{
    		VersionID: oi.VersionID,
    		NoLock:    true,
    	}); err != nil {
    		return err
    	}
    
    	return nil
    }
    
    const (
    	batchKeyRotationName               = "batch-rotate.bin"
    	batchKeyRotationFormat             = 1
    	batchKeyRotateVersionV1            = 1
    	batchKeyRotateVersion              = batchKeyRotateVersionV1
    	batchKeyRotateAPIVersion           = "v1"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  4. security/pkg/pki/ca/ca.go

    	MaxCertTTL     time.Duration
    	CARSAKeySize   int
    
    	KeyCertBundle *util.KeyCertBundle
    
    	// Config for creating self-signed root cert rotator.
    	RotatorConfig *SelfSignedCARootCertRotatorConfig
    
    	// OnRootCertUpdate is the cb which can only be called by self-signed root cert rotator
    	OnRootCertUpdate func() error
    }
    
    type RootCertUpdateFunc func() error
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 30 19:33:26 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  5. cluster/gce/windows/common.psm1

          rotate
          return
        }
      }
    }
    
    # Rotate-Files rotates the log files in directory -Path that match -Pattern.
    # Rotation is performed by Rotate-File, according to -Config.
    function Rotate-Files {
      param (
        # Pattern that file names must match to be rotated. Does not include parent path.
        [parameter(Mandatory=$true)] [string]$Pattern,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 19 14:47:38 UTC 2022
    - 25.4K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/primitives/Bytes.java

       * + i) mod array.length}. This is equivalent to {@code Collections.rotate(Bytes.asList(array),
       * distance)}, but is somewhat faster.
       *
       * <p>The provided "distance" may be negative, which will rotate left.
       *
       * @since 32.0.0
       */
      public static void rotate(byte[] array, int distance) {
        rotate(array, distance, 0, array.length);
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  7. pkg/kubelet/logs/container_log_manager.go

    	klog.InfoS("Initializing container log rotate workers", "workers", c.maxWorkers, "monitorPeriod", c.monitoringPeriod)
    	for i := 0; i < c.maxWorkers; i++ {
    		worker := i + 1
    		go c.processQueueItems(ctx, worker)
    	}
    	// Start a goroutine periodically does container log rotation.
    	go wait.Forever(func() {
    		if err := c.rotateLogs(ctx); err != nil {
    			klog.ErrorS(err, "Failed to rotate container logs")
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 15K bytes
    - Viewed (0)
  8. guava/src/com/google/common/primitives/Bytes.java

       * + i) mod array.length}. This is equivalent to {@code Collections.rotate(Bytes.asList(array),
       * distance)}, but is somewhat faster.
       *
       * <p>The provided "distance" may be negative, which will rotate left.
       *
       * @since 32.0.0
       */
      public static void rotate(byte[] array, int distance) {
        rotate(array, distance, 0, array.length);
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  9. pkg/kubelet/logs/container_log_manager_test.go

    		{
    			ContainerStatus: runtimeapi.ContainerStatus{
    				Id:      "container-not-need-rotate",
    				State:   runtimeapi.ContainerState_CONTAINER_RUNNING,
    				LogPath: filepath.Join(dir, testLogs[0]),
    			},
    		},
    		{
    			ContainerStatus: runtimeapi.ContainerStatus{
    				Id:      "container-need-rotate",
    				State:   runtimeapi.ContainerState_CONTAINER_RUNNING,
    				LogPath: filepath.Join(dir, testLogs[1]),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/primitives/Booleans.java

       * + i) mod array.length}. This is equivalent to {@code Collections.rotate(Booleans.asList(array),
       * distance)}, but is somewhat faster.
       *
       * <p>The provided "distance" may be negative, which will rotate left.
       *
       * @since 32.0.0
       */
      public static void rotate(boolean[] array, int distance) {
        rotate(array, distance, 0, array.length);
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 19.9K bytes
    - Viewed (0)
Back to top