Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,118 for rotated (1.1 sec)

  1. pkg/kubelet/logs/container_log_manager.go

    	}
    	if err := c.runtimeService.ReopenContainerLog(ctx, id); err != nil {
    		// Rename the rotated log back, so that we can try rotating it again
    		// next round.
    		// If kubelet gets restarted at this point, we'll lose original log.
    		if renameErr := c.osInterface.Rename(rotated, log); renameErr != nil {
    			// This shouldn't happen.
    			// Report an error if this happens, because we will lose original
    			// log.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 15K bytes
    - Viewed (0)
  2. pkg/kubelet/kuberuntime/kuberuntime_container_test.go

    			restartCount: 7,
    		},
    		{
    			filenames:    []string{"5.log.rotated", "6.log", "7.log"},
    			restartCount: 8,
    		},
    		// no restart count log files
    		{
    			filenames:    []string{},
    			restartCount: 0,
    		},
    		{
    			filenames:    []string{"a.log.rotated", "b.log.rotated", "12log.rotated"},
    			restartCount: 0,
    		},
    		// log extension twice
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 28K bytes
    - Viewed (0)
  3. releasenotes/notes/48224.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
      - 48224
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 20 08:44:39 UTC 2023
    - 213 bytes
    - Viewed (0)
  4. security/pkg/pki/ca/selfsignedcarootcertrotator_test.go

    	rotator.config.certInspector = certutil.NewCertUtil(0)
    	rotator.checkAndRotateRootCert()
    	// Verifies that when root cert remaining life is not in grace period time,
    	// root cert is not rotated.
    	certItem1 := loadCert(rotator)
    	verifyRootCertAndPrivateKey(t, true, certItem0, certItem1)
    
    	// Change grace period percentage to 100, so that root cert is guarantee to rotate.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 11 23:33:41 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  5. pkg/log/options.go

    	ErrorOutputPaths []string
    
    	// 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)
  6. pkg/kubelet/certificate/transport.go

    			}
    		}
    
    		if curr == nil || lastCert == curr {
    			// Cert hasn't been rotated.
    			return
    		}
    		lastCert = curr
    		hasCert.Store(lastCert != nil)
    
    		klog.InfoS("Certificate rotation detected, shutting down client connections to start using new credentials")
    		// The cert has been rotated. Close all existing connections to force the client
    		// to reperform its TLS handshake with new cert.
    		//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 08 13:57:45 UTC 2022
    - 6.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/value/transformer.go

    			}
    
    			// It is valid to have overlapping prefixes when the same encryption provider
    			// is specified multiple times but with different keys (the first provider is
    			// being rotated to and some later provider is being rotated away from).
    			//
    			// Example:
    			//
    			//  {
    			//    "aescbc": {
    			//      "keys": [
    			//        {
    			//          "name": "2",
    			//          "secret": "some key 2"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 22:44:02 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  8. src/math/bits/bits.go

    }
    
    // RotateLeft8 returns the value of x rotated left by (k mod 8) bits.
    // To rotate x right by k bits, call RotateLeft8(x, -k).
    //
    // This function's execution time does not depend on the inputs.
    func RotateLeft8(x uint8, k int) uint8 {
    	const n = 8
    	s := uint(k) & (n - 1)
    	return x<<s | x>>(n-s)
    }
    
    // RotateLeft16 returns the value of x rotated left by (k mod 16) bits.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  9. pkg/kubelet/certificate/kubelet.go

    		&compbasemetrics.HistogramOpts{
    			Subsystem: metrics.KubeletSubsystem,
    			Name:      "certificate_manager_server_rotation_seconds",
    			Help:      "Histogram of the number of seconds the previous certificate lived before being rotated.",
    			Buckets: []float64{
    				60,        // 1  minute
    				3600,      // 1  hour
    				14400,     // 4  hours
    				86400,     // 1  day
    				604800,    // 1  week
    				2592000,   // 1  month
    				7776000,   // 3  months
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 03:07:16 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/PPC64latelower.rules

    (AND x:(MOVDconst [m]) n) && m != 0 && isPPC64ValidShiftMask(^m) => (RLDICR [encodePPC64RotateMask(0,m,64)] n)
    
    // If the RLDICL does not rotate its value, a shifted value can be merged.
    (RLDICL [em] x:(SRDconst [s] a)) && (em&0xFF0000) == 0 => (RLDICL [mergePPC64RLDICLandSRDconst(em, s)] a)
    
    // Convert rotated 32 bit masks on 32 bit values into rlwinm. In general, this leaves the upper 32 bits in an undefined state.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 3.8K bytes
    - Viewed (0)
Back to top