Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 732 for rotated (0.16 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config.go

    		_, errGen = h.getCurrentState()
    		if errGen == nil {
    			klogV6 := klog.V(6)
    			if klogV6.Enabled() {
    				klogV6.InfoS("successfully rotated DEK",
    					"uid", uid,
    					"useSeed", useSeed,
    					"newKeyIDHash", envelopekmsv2.GetHashIfNotEmpty(encObject.KeyID),
    					"oldKeyIDHash", envelopekmsv2.GetHashIfNotEmpty(state.EncryptedObject.KeyID),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  2. src/crypto/sha1/sha1block_amd64.s

    #define CALC_F1_POST(REG_A,REG_B,REG_E) \
    	ANDL REG_B,REG_A \             // b&c
    	XORL BP, REG_A \               // F1 = (b&c) ^ (~b&d)
    	LEAL (REG_E)(R12*1), REG_E     // E += A >>> 5
    
    
    // Registers are cyclically rotated DX -> AX -> DI -> SI -> BX -> CX
    #define CALC_0 \
    	MOVL SI, BX \ // Precalculating first round
    	RORXL $2, SI, SI \
    	ANDNL AX, BX, BP \
    	ANDL DI, BX \
    	XORL BP, BX \
    	CALC_F1_PRE(0x0,CX,BX,DI,DX) \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  3. cmd/kubelet/app/options/options.go

    	fs.StringVar(&c.TLSPrivateKeyFile, "tls-private-key-file", c.TLSPrivateKeyFile, "File containing x509 private key matching --tls-cert-file.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:05 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  4. pkg/kubelet/kuberuntime/kuberuntime_container.go

    }
    
    // removeContainerLog removes the container log.
    func (m *kubeGenericRuntimeManager) removeContainerLog(ctx context.Context, containerID string) error {
    	// Use log manager to remove rotated logs.
    	err := m.logManager.Clean(ctx, containerID)
    	if err != nil {
    		return err
    	}
    
    	resp, err := m.runtimeService.ContainerStatus(ctx, containerID, false)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  5. cmd/batch-rotate.go

    func (r BatchJobKeyRotateV1) Notify(ctx context.Context, ri *batchJobInfo) error {
    	return notifyEndpoint(ctx, ri, r.Flags.Notify.Endpoint, r.Flags.Notify.Token)
    }
    
    // KeyRotate rotates encryption key of an object
    func (r *BatchJobKeyRotateV1) KeyRotate(ctx context.Context, api ObjectLayer, objInfo ObjectInfo) error {
    	srcBucket := r.Bucket
    	srcObject := objInfo.Name
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  6. cmd/kubelet/app/server.go

    		certDir,
    		nodeName,
    
    		// this preserves backwards compatibility with kubeadm which passes
    		// a high powered certificate to the kubelet as --kubeconfig and expects
    		// it to be rotated out immediately
    		clientConfig.CertData,
    		clientConfig.KeyData,
    
    		clientConfig.CertFile,
    		clientConfig.KeyFile,
    		newClientsetFn,
    	)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (FTRUNC (FMOVDconst [x])) => (FMOVDconst [math.Trunc(x)])
    
    // Rotates
    (RotateLeft8 <t> x (MOVDconst [c])) => (Or8 (Lsh8x64 <t> x (MOVDconst [c&7])) (Rsh8Ux64 <t> x (MOVDconst [-c&7])))
    (RotateLeft16 <t> x (MOVDconst [c])) => (Or16 (Lsh16x64 <t> x (MOVDconst [c&15])) (Rsh16Ux64 <t> x (MOVDconst [-c&15])))
    (RotateLeft(32|64) ...) => ((ROTLW|ROTL) ...)
    
    // Constant rotate generation
    (ROTLW  x (MOVDconst [c])) => (ROTLWconst  x [c&31])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  8. cluster/gce/gci/configure-helper.sh

        # are configured to write their log files. Whenever logrotate is ran, this
        # config will:
        # * rotate the log file if its size is > 100Mb OR if one day has elapsed
        # * save rotated logs into a gzipped timestamped backup
        # * log file timestamp (controlled by 'dateformat') includes seconds too. This
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  9. src/net/dnsconfig.go

    }
    
    // serverOffset returns an offset that can be used to determine
    // indices of servers in c.servers when making queries.
    // When the rotate option is enabled, this offset increases.
    // Otherwise it is always 0.
    func (c *dnsConfig) serverOffset() uint32 {
    	if c.rotate {
    		return atomic.AddUint32(&c.soffset, 1) - 1 // return 0 to start
    	}
    	return 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  10. okhttp-idna-mapping-table/src/main/resources/okhttp3/internal/idna/IdnaMappingTable.txt

    2C27          ; mapped                 ; 2C57          # 4.1  GLAGOLITIC CAPITAL LETTER IOTATED SMALL YUS
    2C28          ; mapped                 ; 2C58          # 4.1  GLAGOLITIC CAPITAL LETTER BIG YUS
    2C29          ; mapped                 ; 2C59          # 4.1  GLAGOLITIC CAPITAL LETTER IOTATED BIG YUS
    2C2A          ; mapped                 ; 2C5A          # 4.1  GLAGOLITIC CAPITAL LETTER FITA
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Feb 10 11:25:47 UTC 2024
    - 854.1K bytes
    - Viewed (0)
Back to top