Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 208 for expiresIn (0.25 sec)

  1. src/cmd/go/script_test.go

    		// grace periods to clean up. We will send the first termination signal when
    		// the context expires, then wait one grace period for the process to
    		// produce whatever useful output it can (such as a stack trace). After the
    		// first grace period expires, we'll escalate to os.Kill, leaving the second
    		// grace period for the test function to record its output before the test
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  2. security/pkg/pki/util/verify_cert.go

    	if !rootCert.IsCA {
    		return nil, fmt.Errorf("found root cert is not a ca type cert: %v", rootCert)
    	}
    
    	return cert, nil
    }
    
    // IsCertExpired returns  whether a cert expires
    func IsCertExpired(filepath string) (bool, error) {
    	var err error
    	var certPEMBlock []byte
    	certPEMBlock, err = os.ReadFile(filepath)
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Sep 05 10:37:29 UTC 2022
    - 5.9K bytes
    - Viewed (0)
  3. pkg/proxy/apis/config/v1alpha1/defaults.go

    		// protocols for both sides to issue a close; this typically
    		// occurs when the local socket is lazily garbage collected.
    		//
    		// If the CLOSE_WAIT conntrack entry expires, then FINs from the
    		// local socket will not be properly SNAT'd and will not reach the
    		// remote server (if the connection was subject to SNAT). If the
    		// remote timeouts for FIN_WAIT* states exceed the CLOSE_WAIT
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:33:53 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  4. docs/sts/wso2.md

      "token_type": "Bearer",
      "expires_in": 3600
    }
    ```
    
    ### 4. JWT Claims
    
    The id_token received is a signed JSON Web Token (JWT). Use a JWT decoder to decode the id_token to access the payload of the token that includes following JWT claims:
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 8.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/wait/poll.go

    	return PollWithContext(context.Background(), interval, timeout, condition.WithContext())
    }
    
    // PollWithContext tries a condition func until it returns true, an error,
    // or when the context expires or the timeout is reached, whichever
    // happens first.
    //
    // PollWithContext always waits the interval before the run of 'condition'.
    // 'condition' will always be invoked at least once.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 26 06:13:35 UTC 2023
    - 14K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/resolve/caching/ComponentMetadataSupplierRuleExecutorTest.groovy

        }
    
        // Tests --refresh-dependencies behavior
        @Unroll("Cache expiry check expired=#expired, refresh = #mustRefresh - #scenario - #ruleClass.simpleName")
        def "expires entry when cache policy tells us to"() {
            def id = DefaultModuleVersionIdentifier.newId('org', 'foo', '1.0')
            def inputsSnapshot = new StringValueSnapshot("1")
            def hasher = Hashing.newHasher()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:51:31 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  7. cmd/bucket-lifecycle.go

    	}
    }
    
    // expireTransitionedObject handles expiry of transitioned/restored objects
    // (versions) in one of the following situations:
    //
    // 1. when a restored (via PostRestoreObject API) object expires.
    // 2. when a transitioned object expires (based on an ILM rule).
    func expireTransitionedObject(ctx context.Context, objectAPI ObjectLayer, oi *ObjectInfo, lcEvent lifecycle.Event, src lcEventSrc) error {
    	traceFn := globalLifecycleSys.trace(*oi)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  8. cmd/api-response.go

    			}
    			for k, v := range cleanReservedKeys(object.UserDefined) {
    				content.UserMetadata.Set(k, v)
    			}
    
    			content.UserMetadata.Set("expires", object.Expires.Format(http.TimeFormat))
    			content.Internal = &ObjectInternalInfo{
    				K: object.DataBlocks,
    				M: object.ParityBlocks,
    			}
    		}
    		content.Owner = owner
    		content.VersionID = object.VersionID
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/util/transport/Transport.java

                    }
                }
            }
        }
    
        /* Build a connection. Only one thread will ever call this method at
         * any one time. If this method throws an exception or the connect timeout
         * expires an encapsulating TransportException will be thrown from connect
         * and the transport will be in error.
         */
    
        protected abstract void doConnect() throws Exception;
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/cache/expiring.go

    	if !c.AllowExpiredGet && !c.clock.Now().Before(e.expiry) {
    		return nil, false
    	}
    	return e.val, true
    }
    
    // Set sets a key/value/expiry entry in the map, overwriting any previous entry
    // with the same key. The entry expires at the given expiry time, but its TTL
    // may be lengthened or shortened by additional calls to Set(). Garbage
    // collection of expired entries occurs during calls to Set(), however calls to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 22 15:51:23 UTC 2023
    - 5.6K bytes
    - Viewed (0)
Back to top