Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 101 for Parses (0.13 sec)

  1. pkg/controller/cronjob/cronjob_controllerv2_test.go

    				},
    			},
    		},
    	}
    }
    
    func justASecondBeforeTheHour() time.Time {
    	T1, err := time.Parse(time.RFC3339, "2016-05-19T09:59:59Z")
    	if err != nil {
    		panic("test setup error")
    	}
    	return T1
    }
    
    func justAfterThePriorHour() time.Time {
    	T1, err := time.Parse(time.RFC3339, "2016-05-19T09:01:00Z")
    	if err != nil {
    		panic("test setup error")
    	}
    	return T1
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 70.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/filters/priority-and-fairness_test.go

    		// get a timeout response without directly affecting execution.  For the second request, the
    		// fact that the timeout filter closes the request's Context.Done() causes the request to be
    		// promptly ejected from its queue.  The goroutine doing the APF handling writes an HTTP
    		// response message with status 429.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  3. src/net/http/transport.go

    	isProxy   bool
    	sawEOF    bool  // whether we've seen EOF from conn; owned by readLoop
    	readLimit int64 // bytes allowed to be read; owned by readLoop
    	// writeErrCh passes the request write error (usually nil)
    	// from the writeLoop goroutine to the readLoop which passes
    	// it off to the res.Body reader, which then uses it to decide
    	// whether or not a connection can be reused. Issue 7569.
    	writeErrCh chan error
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/windows/setupapi_windows.go

    	// registration, installation, and deletion.
    	DI_DONOTCALLCONFIGMG DI_FLAGS = 0x00020000
    
    	// The following flag can be used to install a device disabled
    	DI_INSTALLDISABLED DI_FLAGS = 0x00040000
    
    	// Flag that causes SetupDiBuildDriverInfoList to build a device's compatible driver
    	// list from its existing class driver list, instead of the normal INF search.
    	DI_COMPAT_FROM_CLASS DI_FLAGS = 0x00080000
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 67.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	cacheInterval, err = c.watchCache.getAllEventsSinceLocked(requiredResourceVersion, key, opts)
    	if err != nil {
    		// To match the uncached watch implementation, once we have passed authn/authz/admission,
    		// and successfully parsed a resource version, other errors must fail with a watch event of type ERROR,
    		// rather than a directly returned error.
    		return newErrWatcher(err), nil
    	}
    
    	addedWatcher := false
    	func() {
    		c.Lock()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/admission_test.go

    	// require.Equal(t, []*unstructured.Unstructured{fakeParams, fakeParams2}, passedParams, "expected call to `Validate` to cause call to evaluator")
    	require.Equal(t, 2, numCompiles, "expect changing binding causes a recompile")
    }
    
    // Shows that a policy which is in effect will stop being in effect when removed
    func TestRemoveDefinition(t *testing.T) {
    	compiler := &fakeCompiler{}
    	matcher := &fakeMatcher{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 25 01:39:01 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  7. pkg/apis/admissionregistration/types.go

    	Name string
    
    	// ClientConfig defines how to communicate with the hook.
    	// Required
    	ClientConfig WebhookClientConfig
    
    	// Rules describes what operations on what resources/subresources the webhook cares about.
    	// The webhook cares about an operation if it matches _any_ Rule.
    	Rules []RuleWithOperations
    
    	// FailurePolicy defines how unrecognized errors from the admission endpoint are handled -
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

       * {@code setFuture} after any cancellation will propagate cancellation to the supplied {@code
       * Future}.
       *
       * <p>Note that, even if the supplied future is cancelled and it causes this future to complete,
       * it will never trigger interruption behavior. In particular, it will not cause this future to
       * invoke the {@link #interruptTask} method, and the {@link #wasInterrupted} method will not
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
  9. guava/src/com/google/common/util/concurrent/AbstractFuture.java

       * {@code setFuture} after any cancellation will propagate cancellation to the supplied {@code
       * Future}.
       *
       * <p>Note that, even if the supplied future is cancelled and it causes this future to complete,
       * it will never trigger interruption behavior. In particular, it will not cause this future to
       * invoke the {@link #interruptTask} method, and the {@link #wasInterrupted} method will not
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
  10. android/guava/src/com/google/common/util/concurrent/Futures.java

       *       UncheckedExecutionException} (if the cause is an {@code Exception}) or {@link
       *       ExecutionError} (if the cause is an {@code Error}).
       *   <li>Any {@link InterruptedException} causes a retry of the {@code get} call. The interrupt is
       *       restored before {@code getUnchecked} returns.
       *   <li>Any {@link CancellationException} is propagated untouched. So is any other {@link
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 59.6K bytes
    - Viewed (0)
Back to top