Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 153 for expiresIn (0.41 sec)

  1. cmd/postpolicyform.go

    	"$acl":                     true,
    	"$bucket":                  false,
    	"$cache-control":           true,
    	"$content-type":            true,
    	"$content-disposition":     true,
    	"$content-encoding":        true,
    	"$expires":                 true,
    	"$key":                     true,
    	"$success_action_redirect": true,
    	"$redirect":                true,
    	"$success_action_status":   true,
    	"$x-amz-algorithm":         false,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 06 10:52:41 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  2. pkg/controller/volume/attachdetach/reconciler/reconciler_test.go

    	waitForDetachCallCount(t, 0 /* expectedDetachCallCount */, fakePlugin)
    
    	// Delete the pod and the volume will be detached only after the maxLongWaitForUnmountDuration expires as volume is
    	//not unmounted. Here maxLongWaitForUnmountDuration is used to mimic that node is out of service.
    	// But in this case the node has the node.kubernetes.io/out-of-service taint and hence it will not wait for
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:14 UTC 2024
    - 72.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config.go

    	// worst case window divided by the negative interval defines the
    	// minimum amount of times the server will attempt to return to a
    	// healthy state before the DEK/seed expires and writes begin to fail.
    	//
    	// For now, these values are kept small and hardcoded to support being
    	// able to perform a "passive" storage migration while tolerating some
    	// amount of plugin downtime.
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/cmd/token_test.go

    			usages:       []string{"signing", "authentication"},
    			extraGroups:  []string{"system:bootstrappers:kubeadm:default-node-token"},
    			outputFormat: "text",
    			expected: `TOKEN                     TTL         EXPIRES   USAGES                   DESCRIPTION                                                EXTRA GROUPS
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 05:47:48 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  5. cmd/object-api-datatypes_gen.go

    			z.ContentEncoding, bts, err = msgp.ReadStringBytes(bts)
    			if err != nil {
    				err = msgp.WrapError(err, "ContentEncoding")
    				return
    			}
    		case "Expires":
    			z.Expires, bts, err = msgp.ReadTimeBytes(bts)
    			if err != nil {
    				err = msgp.WrapError(err, "Expires")
    				return
    			}
    		case "CacheControl":
    			z.CacheControl, bts, err = msgp.ReadStringBytes(bts)
    			if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 70.1K bytes
    - Viewed (0)
  6. pkg/registry/core/service/portallocator/controller/repair.go

    			count = numRepairsBeforeLeakCleanup - 1
    			fallthrough
    		case count > 0:
    			// pretend it is still in use until count expires
    			c.leaks[port] = count - 1
    			if err := rebuilt.Allocate(port); err != nil {
    				// do not increment the metric here, if it is a leak it will be detected once the counter gets to 0
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Sep 30 15:46:06 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  7. src/os/exec/exec.go

    func (e *Error) Unwrap() error { return e.Err }
    
    // ErrWaitDelay is returned by [Cmd.Wait] if the process exits with a
    // successful status code but its output pipes are not closed before the
    // command's WaitDelay expires.
    var ErrWaitDelay = errors.New("exec: WaitDelay expired before I/O complete")
    
    // wrappedError wraps an error without relying on fmt.Errorf.
    type wrappedError struct {
    	prefix string
    	err    error
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  8. pilot/pkg/features/pilot.go

    			"Only works in kubernetes environment.").Get()
    
    	RemoteClusterTimeout = env.Register(
    		"PILOT_REMOTE_CLUSTER_TIMEOUT",
    		30*time.Second,
    		"After this timeout expires, pilot can become ready without syncing data from clusters added via remote-secrets. "+
    			"Setting the timeout to 0 disables this behavior.",
    	).Get()
    
    	DisableMxALPN = env.Register("PILOT_DISABLE_MX_ALPN", false,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  9. src/crypto/tls/tls.go

    	return new(net.Dialer)
    }
    
    // DialContext connects to the given network address and initiates a TLS
    // handshake, returning the resulting TLS connection.
    //
    // The provided Context must be non-nil. If the context expires before
    // the connection is complete, an error is returned. Once successfully
    // connected, any expiration of the context will not affect the
    // connection.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/crawler/transformer/AbstractFessFileTransformer.java

            // cid
            final String configId = crawlingConfig.getConfigId();
            if (configId != null) {
                putResultDataBody(dataMap, fessConfig.getIndexFieldConfigId(), configId);
            }
            //  expires
            if (documentExpires != null) {
                putResultDataBody(dataMap, fessConfig.getIndexFieldExpires(), documentExpires);
            }
            // segment
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 23.5K bytes
    - Viewed (0)
Back to top