Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 239 for intervention (0.27 sec)

  1. guava/src/com/google/common/collect/ImmutableRangeSet.java

            && ranges.get(ceilingIndex).isConnected(otherRange)
            && !ranges.get(ceilingIndex).intersection(otherRange).isEmpty()) {
          return true;
        }
        return ceilingIndex > 0
            && ranges.get(ceilingIndex - 1).isConnected(otherRange)
            && !ranges.get(ceilingIndex - 1).intersection(otherRange).isEmpty();
      }
    
      @Override
      public boolean encloses(Range<C> otherRange) {
        int index =
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/classpath/InstrumentableClosure.java

    import org.gradle.api.NonNullApi;
    
    /**
     * Represents a closure that can participate in dynamic calls instrumentation.
     * Initially, such a closure may not be completely prepared for participating in dynamic call interception,
     * which is a performance optimization. <p>
     *
     * Upon an invocation of {@link InstrumentableClosure#makeEffectivelyInstrumented} the instance must perform
     * all the delayed work and become "effectively instrumented".
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 24 15:57:59 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/test/groovy/org/gradle/util/internal/CollectionUtilsTest.groovy

            expect:
            every([1, 2, 3], { it < 4 })
            !every([1, 2, 4], { it < 4 })
            !every([1], { it instanceof String })
            every([], { false })
        }
    
        def "intersection"() {
            expect:
            intersection([collA, collB]) == collC
            where:
            collA           | collB           | collC
            []              | ["a", "b", "c"] | []
            ['a', 'b', 'c'] | ["a", "b", "c"] | ['a', 'b', 'c']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  4. src/image/geom_test.go

    		for _, s := range rects {
    			got := r.Eq(s)
    			want := in(r, s) == nil && in(s, r) == nil
    			if got != want {
    				t.Errorf("Eq: r=%s, s=%s: got %t, want %t", r, s, got, want)
    			}
    		}
    	}
    
    	// The intersection should be the largest rectangle a such that every point
    	// in a is both in r and in s.
    	for _, r := range rects {
    		for _, s := range rects {
    			a := r.Intersect(s)
    			if err := in(a, r); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 05:05:59 UTC 2017
    - 3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/server/options/admission.go

    	if len(enablePlugins.Intersection(disablePlugins).List()) > 0 {
    		errs = append(errs, fmt.Errorf("%v in enable-admission-plugins and disable-admission-plugins "+
    			"overlapped", enablePlugins.Intersection(disablePlugins).List()))
    	}
    
    	// Verify RecommendedPluginOrder.
    	recommendPlugins := sets.NewString(a.RecommendedPluginOrder...)
    	intersections := registeredPlugins.Intersection(recommendPlugins)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 12 08:49:42 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  6. platforms/core-configuration/base-services-groovy/src/main/java/org/gradle/api/specs/Specs.java

        }
    
        public static <T> Spec<T> convertClosureToSpec(final Closure<?> closure) {
            return new ClosureSpec<>(closure);
        }
    
        /**
         * Returns a spec that selects the intersection of those items selected by the given specs. Returns a spec that selects everything when no specs provided.
         */
        @SafeVarargs
        @SuppressWarnings("varargs")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 10:00:26 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  7. pkg/kubelet/apis/config/helpers_test.go

    )
    
    func TestKubeletConfigurationPathFields(t *testing.T) {
    	// ensure the intersection of kubeletConfigurationPathFieldPaths and KubeletConfigurationNonPathFields is empty
    	if i := kubeletConfigurationPathFieldPaths.Intersection(kubeletConfigurationNonPathFieldPaths); len(i) > 0 {
    		t.Fatalf("expect the intersection of kubeletConfigurationPathFieldPaths and "+
    			"KubeletConfigurationNonPathFields to be empty, got:\n%s",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/ImmutableRangeSet.java

            && ranges.get(ceilingIndex).isConnected(otherRange)
            && !ranges.get(ceilingIndex).intersection(otherRange).isEmpty()) {
          return true;
        }
        return ceilingIndex > 0
            && ranges.get(ceilingIndex - 1).isConnected(otherRange)
            && !ranges.get(ceilingIndex - 1).intersection(otherRange).isEmpty();
      }
    
      @Override
      public boolean encloses(Range<C> otherRange) {
        int index =
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  9. platforms/core-runtime/internal-instrumentation-api/src/main/java/org/gradle/internal/instrumentation/api/types/BytecodeInterceptorFilter.java

     * limitations under the License.
     */
    
    package org.gradle.internal.instrumentation.api.types;
    
    import java.util.EnumSet;
    
    /**
     * Request for interceptors. Currently, we support filter just for interception types, but in the feature we could also filter per version etc.
     *
     * Implemented as a enum, so it's easier to generate bytecode.
     */
    public enum BytecodeInterceptorFilter {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:40 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  10. tests/testdata/config/none.yaml

          sniHosts:
          - api1.facebook.com
        route:
        - destination:
            host: api1.facebook.com
    ---
    # DestinationRules attach to services, have no impact on 'none' interception
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 22 21:13:54 UTC 2020
    - 8.8K bytes
    - Viewed (0)
Back to top