Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 156 for unwrapped (0.22 sec)

  1. staging/src/k8s.io/apiserver/pkg/endpoints/filters/audit_init_test.go

    				// does the inner handler see the audit ID?
    				v, ok := audit.AuditIDFrom(req.Context())
    
    				found = ok
    				auditIDGot = string(v)
    			})
    
    			wrapped := WithAuditInit(handler)
    			if test.newAuditIDFunc != nil {
    				wrapped = withAuditInit(handler, test.newAuditIDFunc)
    			}
    
    			testRequest, err := http.NewRequest(http.MethodGet, "/api/v1/namespaces", nil)
    			if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 14 23:04:35 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/ErroringAction.java

     *
     * Implementations implement doExecute() (instead of execute()) which is allowed to throw checked exceptions.
     * Any checked exceptions thrown will be wrapped as unchecked exceptions and re-thrown.
     *
     * How the exception is wrapped is subject to {@link UncheckedException#throwAsUncheckedException(Throwable)}.
     *
     * @param <T> The type of object which this action accepts.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. internal/etag/reader.go

    //	// the ETag computed over the content.
    //	reader := etag.Wrap(encryptedContent, content)
    func Wrap(wrapped, content io.Reader) io.Reader {
    	if t, ok := content.(Tagger); ok {
    		return wrapReader{
    			Reader: wrapped,
    			Tagger: t,
    		}
    	}
    	return wrapReader{
    		Reader: wrapped,
    	}
    }
    
    // A Reader wraps an io.Reader and computes the
    // MD5 checksum of the read content as ETag.
    //
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/api/internal/provider/CircularEvaluationSpec.groovy

             * @return the property instance
             */
            abstract PropertyInternal<T> property()
    
            def "calling #consumer throws exception with proper chain if wrapped provider forms a cycle"(
                Consumer<ProviderInternal<?>> consumer
            ) {
                given:
                def property = property()
                def provider = wrapProviderWithProviderUnderTest(property)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 15 20:21:32 UTC 2023
    - 8K bytes
    - Viewed (0)
  5. platforms/core-runtime/build-operations/src/main/java/org/gradle/internal/operations/BuildOperationRunner.java

         * Checked exceptions are wrapped in {@link BuildOperationInvocationException}.</p>
         */
        void run(RunnableBuildOperation buildOperation);
    
        /**
         * Calls the given build operation, returns the result.
         *
         * <p>Rethrows any exception thrown by the action.
         * Runtime exceptions are rethrown as is.
         * Checked exceptions are wrapped in {@link BuildOperationInvocationException}.</p>
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 14:54:57 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/skipnonapplied.go

    // NewSkipNonAppliedManager creates a new wrapped FieldManager that only starts tracking managers after the first apply.
    func NewSkipNonAppliedManager(fieldManager Manager, objectCreater runtime.ObjectCreater) Manager {
    	return NewProbabilisticSkipNonAppliedManager(fieldManager, objectCreater, 0.0)
    }
    
    // NewProbabilisticSkipNonAppliedManager creates a new wrapped FieldManager that starts tracking managers after the first apply,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 16 20:03:48 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  7. doc/next/6-stdlib/99-minor/database/sql/64707.md

    Errors returned by [driver.Valuer] implementations are now wrapped for
    improved error handling during operations like [DB.Query], [DB.Exec],
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 20:57:18 UTC 2024
    - 160 bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/file/copy/FileCopier.java

            DestinationRootCopySpec destinationRootCopySpec = new DestinationRootCopySpec(fileResolver, copySpec);
            SyncSpec wrapped = instantiator.newInstance(CopySpecWrapper.class, destinationRootCopySpec);
            action.execute(wrapped);
            return destinationRootCopySpec;
        }
    
        public WorkResult copy(Action<? super CopySpec> action) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 28 12:39:32 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/endpoints/discovery/aggregated/wrapper_test.go

    	unaggregated := fakeHTTPHandler{data: "unaggregated"}
    	aggregated := fakeHTTPHandler{data: "aggregated"}
    	wrapped := WrapAggregatedDiscoveryToHandler(unaggregated, aggregated)
    
    	testCases := []struct {
    		accept   string
    		expected string
    	}{
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/util/concurrent/TimeLimiter.java

      /**
       * Invokes a specified Callable, timing out after the specified time limit. If the target method
       * call finishes before the limit is reached, the return value or a wrapped exception is
       * propagated. If, on the other hand, the time limit is reached, we attempt to abort the call to
       * the target, and throw a {@link TimeoutException} to the caller.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 18:32:03 UTC 2023
    - 8.3K bytes
    - Viewed (0)
Back to top