Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 239 for intervention (5.47 sec)

  1. staging/src/k8s.io/apiserver/pkg/authentication/authenticator/audiences_test.go

    			expected: Audiences{},
    		},
    	}
    	for _, c := range cs {
    		t.Run("auds", func(t *testing.T) {
    			if got, want := c.auds.Intersect(c.tauds), c.expected; !reflect.DeepEqual(got, want) {
    				t.Errorf("unexpected intersection.\ngot:\t%v\nwant:\t%v", got, want)
    			}
    		})
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 31 21:50:11 UTC 2018
    - 1.7K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/factories/CachingExcludeFactory.java

        public ExcludeSpec allOf(Set<ExcludeSpec> specs) {
            return caches.getAllOf(new ExcludesKey(specs), key -> delegate.allOf(key.specs));
        }
    
        /**
         * A special key which recognizes the fact union and intersection
         * are commutative.
         */
        private final static class ExcludePair {
            private final ExcludeSpec left;
            private final ExcludeSpec right;
            private final int hashCode;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/classpath/InstrumentedClosuresTracker.java

     * to the current closures chain and can potentially be intercepted. The implementation must ensure that all the closures in the scope are processed in a way that
     * ensures call interception if a call is dispatched to them.
     */
    @NonNullApi
    public interface InstrumentedClosuresTracker {
        void enterClosure(InstrumentableClosure thisClosure);
        void leaveClosure(InstrumentableClosure thisClosure);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Aug 11 12:31:52 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProcessResourcesIntegrationTest.groovy

                plugins {
                    id 'java'
                }
                sourceSets {
                    main.resources.srcDir 'src/main/java'
                    main.resources.exclude '**/*.kt' // Forces an intersection pattern set to be created behind the scenes
                }
            '''
            createDir('src/main') {
                dir('java') {
                    file('Test.java') << 'class Test {}'
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/abt/avlint32_test.go

    	AXB := tree([]int32{1, 2, 5, 6, 7})
    
    	aib1 := A.Intersection(B, first)
    	assert(t, AIB, aib1, "aib1")
    	if A.Find(3) != aib1.Find(3) {
    		t.Errorf("Failed aliasing/reuse check, A/aib1")
    	}
    	aib2 := A.Intersection(B, second)
    	assert(t, AIB, aib2, "aib2")
    	if B.Find(3) != aib2.Find(3) {
    		t.Errorf("Failed aliasing/reuse check, B/aib2")
    	}
    	aib3 := B.Intersection(A, first)
    	assert(t, AIB, aib3, "aib3")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 11 16:34:41 UTC 2022
    - 20.3K bytes
    - Viewed (0)
  6. .github/CONTRIBUTING.md

    - Get working code on a personal branch with tests before you submit a PR.
    - OkHttp is a small and light dependency.  Don't introduce new dependencies or major new functionality.
    - OkHttp targets the intersection of RFC correct *and* widely implemented.  Incorrect implementations that are very widely implemented e.g. a bug in Apache, Nginx, Google, Firefox should also be handled.
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Mar 17 04:16:26 UTC 2019
    - 1.4K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/internal/classpath/intercept/ClassBoundCallInterceptor.java

     * It only intercepts the calls where the receiver is the class of interest.
     * <p>
     * It is possible but not strictly necessary to use this interceptor to intercept constructors.
     * Due to the way constructor interception works, having an {@link InterceptScope#constructorsOf(Class)
     * as a scope already guarantees that the invocation would have the given class object as the receiver.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:46:35 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  8. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/extensions/types/InstrumentedTypesResourceGenerator.java

    import java.io.Writer;
    import java.nio.charset.StandardCharsets;
    import java.util.Collection;
    import java.util.stream.Collectors;
    
    /**
     * Writes all instrumented types with inherited method interception to a resources
     */
    public class InstrumentedTypesResourceGenerator implements InstrumentationResourceGenerator {
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:40 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/RegularContiguousSet.java

        super(domain);
        this.range = range;
      }
    
      private ContiguousSet<C> intersectionInCurrentDomain(Range<C> other) {
        return range.isConnected(other)
            ? ContiguousSet.create(range.intersection(other), domain)
            : new EmptyContiguousSet<C>(domain);
      }
    
      @Override
      ContiguousSet<C> headSetImpl(C toElement, boolean inclusive) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  10. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/codegen/groovy/GroovyClassGeneratorUtils.java

                        .map(RequestExtra.InterceptGroovyCalls::getInterceptionType)
                        .orElseThrow(() -> new IllegalStateException("Interception type name is not set for " + request.getInterceptedCallable().getOwner().getType()));
                    CallableInfo callable = request.getInterceptedCallable();
                    CallableKindInfo kind = callable.getKind();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 13:39:36 UTC 2023
    - 3.7K bytes
    - Viewed (0)
Back to top