Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 85 of 85 for Filetime (0.2 sec)

  1. pkg/security/security.go

    	// - none
    	//
    	// This is used only in agent.
    	PilotCertProvider string
    
    	// secret TTL.
    	SecretTTL time.Duration
    
    	// The ratio of cert lifetime to refresh a cert. For example, at 0.10 and 1 hour TTL,
    	// we would refresh 6 minutes before expiration.
    	SecretRotationGracePeriodRatio float64
    
    	// STS port
    	STSPort int
    
    	// credential fetcher.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  2. pkg/proxy/nftables/proxier.go

    	proxier.mu.Lock()
    	proxier.servicesSynced = true
    	proxier.setInitialized(proxier.endpointSlicesSynced)
    	proxier.mu.Unlock()
    
    	// Sync unconditionally - this is called once per lifetime.
    	proxier.syncProxyRules()
    }
    
    // OnEndpointSliceAdd is called whenever creation of a new endpoint slice object
    // is observed.
    func (proxier *Proxier) OnEndpointSliceAdd(endpointSlice *discovery.EndpointSlice) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/debug.go

    		// first non-zero-width op (for other blocks).
    		for idx := 0; idx < len(b.Values); idx++ {
    			v := b.Values[idx]
    			if blockPrologComplete(v) {
    				break
    			}
    			// Consider only "lifetime begins at block start" ops.
    			if !mustBeFirst(v) && v.Op != OpArg {
    				continue
    			}
    			slots := state.valueNames[v.ID]
    			reg, _ := state.f.getHome(v.ID).(*Register)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/data.go

    			}
    		}
    
    		state.data[symnro] = ro
    		state.data[symnrelro] = relro
    	}
    }
    
    // dodataState holds bits of state information needed by dodata() and the
    // various helpers it calls. The lifetime of these items should not extend
    // past the end of dodata().
    type dodataState struct {
    	// Link context
    	ctxt *Link
    	// Data symbols bucketed by type.
    	data [sym.SXREF][]loader.Sym
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet.go

    // SyncTerminatingPod is expected to terminate all running containers in a pod. Once this method
    // returns without error, the pod is considered to be terminated and it will be safe to clean up any
    // pod state that is tied to the lifetime of running containers. The next method invoked will be
    // SyncTerminatedPod. This method is expected to return with the grace period provided and the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
Back to top