Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,295 for rotated (0.24 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. 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. 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)
  7. 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)
  8. 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)
  9. 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)
  10. src/cmd/internal/obj/arm/a.out.go

    	C_FREG
    	C_PSR
    	C_FCR
    	C_SPR /* REG_MB_SY */
    
    	C_RCON   /* 0xff rotated */
    	C_NCON   /* ~RCON */
    	C_RCON2A /* OR of two disjoint C_RCON constants */
    	C_RCON2S /* subtraction of two disjoint C_RCON constants */
    	C_SCON   /* 0xffff */
    	C_LCON
    	C_LCONADDR
    	C_ZFCON
    	C_SFCON
    	C_LFCON
    
    	C_RACON /* <=0xff rotated constant offset from auto */
    	C_LACON /* Large Auto CONstant, i.e. large offset from SP */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 05 16:22:12 UTC 2021
    - 7K bytes
    - Viewed (0)
Back to top