Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 232 for Ttl (0.08 sec)

  1. security/pkg/pki/util/verify_cert.go

    			return fmt.Errorf("unexpected value for 'NotBefore' field: want %v but got %v", nb, cert.NotBefore)
    		}
    
    		if ttl := expectedFields.TTL; ttl != 0 && ttl != (cert.NotAfter.Sub(cert.NotBefore)) {
    			return fmt.Errorf("unexpected value for 'NotAfter' - 'NotBefore': want %v but got %v", ttl, cert.NotAfter.Sub(cert.NotBefore))
    		}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Sep 05 10:37:29 UTC 2022
    - 5.9K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/apis/bootstraptoken/v1/zz_generated.deepcopy.go

    func (in *BootstrapToken) DeepCopyInto(out *BootstrapToken) {
    	*out = *in
    	if in.Token != nil {
    		in, out := &in.Token, &out.Token
    		*out = new(BootstrapTokenString)
    		**out = **in
    	}
    	if in.TTL != nil {
    		in, out := &in.TTL, &out.TTL
    		*out = new(metav1.Duration)
    		**out = **in
    	}
    	if in.Expires != nil {
    		in, out := &in.Expires, &out.Expires
    		*out = (*in).DeepCopy()
    	}
    	if in.Usages != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  3. security/pkg/pki/ca/ca.go

    	// however citatel won't rotate if that happens, this function will prevent that using cert chain TTL as
    	// the workload TTL
    	defaultCertTTL, err := ca.minTTL(opts.DefaultCertTTL)
    	if err != nil {
    		return ca, fmt.Errorf("failed to get default cert TTL %s", err.Error())
    	}
    	ca.defaultCertTTL = defaultCertTTL
    
    	return ca, nil
    }
    
    func (ca *IstioCA) Run(stopChan chan struct{}) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 30 19:33:26 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/apis/bootstraptoken/v1/utils.go

    		data[bootstrapapi.BootstrapTokenExpirationKey] = []byte(expirationString)
    
    	} else if token.TTL != nil && token.TTL.Duration > 0 {
    		// Only if .Expires is unset, TTL might have an effect
    		// Get the current time, add the specified duration, and format it accordingly
    		expirationString := now.Add(token.TTL.Duration).UTC().Format(time.RFC3339)
    		data[bootstrapapi.BootstrapTokenExpirationKey] = []byte(expirationString)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 26 15:51:39 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/smb1/Trans2GetDfsReferralResponse.java

                return new String( "Referral[" +
                    "version=" + version + ",size=" + size +
                    ",serverType=" + serverType + ",flags=" + flags +
                    ",proximity=" + proximity + ",ttl=" + ttl +
                    ",pathOffset=" + pathOffset + ",altPathOffset=" + altPathOffset +
                    ",nodeOffset=" + nodeOffset + ",path=" + path + ",altPath=" + altPath +
                    ",node=" + node + "]" );
            }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 5K bytes
    - Viewed (0)
  6. security/pkg/pki/util/verify_cert_test.go

    	}
    
    	notBefore = &VerifyFields{
    		NotBefore: time.Unix(0, 0),
    		Host:      "spiffe://cluster.local/ns/default/sa/default",
    	}
    
    	ttl = &VerifyFields{
    		TTL:  time.Duration(0),
    		Host: "spiffe://cluster.local/ns/default/sa/default",
    	}
    
    	extKeyUsage = &VerifyFields{
    		TTL:  time.Duration(1),
    		Host: "spiffe://cluster.local/ns/default/sa/default",
    	}
    
    	keyUsage = &VerifyFields{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 16 14:56:37 UTC 2022
    - 6.5K bytes
    - Viewed (0)
  7. pkg/registry/events/rest/storage_events.go

    	"k8s.io/kubernetes/pkg/api/legacyscheme"
    	"k8s.io/kubernetes/pkg/apis/events"
    	eventstore "k8s.io/kubernetes/pkg/registry/core/event/storage"
    )
    
    type RESTStorageProvider struct {
    	TTL time.Duration
    }
    
    func (p RESTStorageProvider) NewRESTStorage(apiResourceConfigSource serverstorage.APIResourceConfigSource, restOptionsGetter generic.RESTOptionsGetter) (genericapiserver.APIGroupInfo, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 28 06:58:59 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/dependencyManagement/troubleshooting-cache-dynamic/groovy/settings.gradle

    rootProject.name = 'caching-ttl-dynamic-version'...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 49 bytes
    - Viewed (0)
  9. cmd/kubeadm/app/cmd/options/token.go

    	)
    }
    
    // AddTTLFlag adds the --token-ttl flag to the given flagset
    func (bto *BootstrapTokenOptions) AddTTLFlag(fs *pflag.FlagSet) {
    	bto.AddTTLFlagWithName(fs, TokenTTL)
    }
    
    // AddTTLFlagWithName adds the --token-ttl flag with a custom flag name given flagset
    func (bto *BootstrapTokenOptions) AddTTLFlagWithName(fs *pflag.FlagSet, flagName string) {
    	fs.DurationVar(
    		&bto.TTL.Duration, flagName, bto.TTL.Duration,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 21 10:34:21 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  10. pom.xml

    				<configuration>
    					<includes>
    						<include>**/**Test.java</include>
    					</includes>
    					<systemPropertyVariables>
    						<networkaddress.cache.ttl>-1</networkaddress.cache.ttl>
    						<networkaddress.cache.negative.ttl>-1</networkaddress.cache.negative.ttl>
    					</systemPropertyVariables>
    					<properties>
    						<property>
    							<name>listener</name>
    							<value>jcifs.tests.PrintingRunListener</value>
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun May 26 04:00:03 UTC 2024
    - 9.3K bytes
    - Viewed (0)
Back to top