Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 167 for Paging (0.22 sec)

  1. platforms/core-runtime/functional/src/main/java/org/gradle/internal/Try.java

        //  We cannot use this syntax until adopting JSpecify with e.g. Jetbrains Annotations, because IDEA wrongly treats all Try usages as having a nullable type, even when
        //  it is explicitly spelled, e.g.
        //  Try<String> t = Try.successful("some")
        //  t.get().length()  // IDEA produces false positive "potential NPE" warning when JB annotations are used.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:10:49 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  2. pkg/webhooks/validation/controller/controller_test.go

    		t,
    		fetch(unpatchedWebhookConfig.Name),
    		webhookConfigWithCABundleFail,
    		retry.Message("istiod config created when endpoint is ready and invalid config is denied"),
    		LongRetry,
    	)
    
    	// If we start having issues, we should not flip back to Ignore
    	gatewayError.Store(ptr.Of[error](kerrors.NewInternalError(errors.New("unknown error"))))
    	c.syncAll()
    	assert.EventuallyEqual(
    		t,
    		fetch(unpatchedWebhookConfig.Name),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 05 03:21:04 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  3. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/file/TestFileHelper.groovy

            return execute(args, null)
        }
    
        ExecOutput execute(List args, List env) {
            def process = ([file.absolutePath] + args).execute(env, null)
    
            // Prevent process from hanging by consuming the output as we go.
            def output = new ByteArrayOutputStream()
            def error = new ByteArrayOutputStream()
    
            Thread outputThread = Thread.start { ByteStreams.copy(process.in, output) }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  4. pkg/test/framework/components/echo/check/checkers.go

    }
    
    func isMTLS(r echoClient.Response) bool {
    	_, f1 := r.RequestHeaders["X-Forwarded-Client-Cert"]
    	// nolint: staticcheck
    	_, f2 := r.RequestHeaders["x-forwarded-client-cert"] // grpc has different casing
    	return f1 || f2
    }
    
    func MTLSForHTTP() echo.Checker {
    	return Each(func(r echoClient.Response) error {
    		if !isHTTPProtocol(r) {
    			// Non-HTTP traffic. Fail open, we cannot check mTLS.
    			return nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 03 16:19:07 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  5. src/reflect/abi.go

    			addTypeBits(stackPtrs, stkStep.stkOff, res)
    		} else {
    			for _, st := range out.stepsForValue(i) {
    				if st.kind == abiStepPointer {
    					outRegPtrs.Set(st.ireg)
    				}
    			}
    		}
    	}
    	// Undo the faking from earlier so that stackBytes
    	// is accurate.
    	out.stackBytes -= retOffset
    	return abiDesc{in, out, stackCallArgsSize, retOffset, spill, stackPtrs, inRegPtrs, outRegPtrs}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:08:32 UTC 2024
    - 15K bytes
    - Viewed (0)
  6. src/runtime/preempt.go

    			asyncM = asyncM2
    			asyncGen = asyncGen2
    
    			casfrom_Gscanstatus(gp, _Gscanrunning, _Grunning)
    
    			// Send asynchronous preemption. We do this
    			// after CASing the G back to _Grunning
    			// because preemptM may be synchronous and we
    			// don't want to catch the G just spinning on
    			// its status.
    			if preemptMSupported && debug.asyncpreemptoff == 0 && needAsync {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/annotations/impl/DefaultTypeAnnotationMetadataStore.java

         * @param ignoredPackagePrefixes Packages to ignore. Types from ignored packages are considered having no type annotations nor any annotated properties.
         * @param ignoredSuperTypes Super-types to ignore. Ignored super-types are considered having no type annotations nor any annotated properties.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:36 UTC 2024
    - 37.6K bytes
    - Viewed (0)
  8. docs/en/docs/tutorial/bigger-applications.md

        * You can also add [`Security` dependencies with `scopes`](../advanced/security/oauth2-scopes.md){.internal-link target=_blank}.
    
    !!! tip
        Having `dependencies` in the `APIRouter` can be used, for example, to require authentication for a whole group of *path operations*. Even if the dependencies are not added individually to each one of them.
    
    !!! check
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/internal/operations/notify/BuildOperationNotificationBridge.java

            }
    
            return s;
        }
    
        public BuildOperationNotificationValve getValve() {
            return valve;
        }
    
        /*
            Note: the intention here is to work towards not having to create new objects
            to meet the notification object interfaces.
            Instead, the base types like BuildOperationDescriptor should implement them natively.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 04:43:28 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  10. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-typed-test.h

    // valid implementation of the interface/concept should have.  Then,
    // each implementation can easily instantiate the test suite to verify
    // that it conforms to the requirements, without having to write
    // similar tests repeatedly.  Here's an example:
    
    #if 0
    
    // First, define a fixture class template.  It should be parameterized
    // by a type.  Remember to derive it from testing::Test.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10K bytes
    - Viewed (0)
Back to top