Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 40 for Intersect (0.25 sec)

  1. subprojects/core-api/src/test/groovy/org/gradle/api/tasks/util/PatternSetTest.groovy

            !patternSet.intersect().isEmpty()
    
            when:
            patternSet = new PatternSet()
            patternSet.exclude { false }
            then:
            !patternSet.isEmpty()
            !patternSet.intersect().isEmpty()
    
            when:
            patternSet = new PatternSet()
            patternSet.exclude("*.txt")
            then:
            !patternSet.isEmpty()
            !patternSet.intersect().isEmpty()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 15 12:37:12 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  2. src/cmd/covdata/metamerge.go

    		}
    		fnIdx = gfidx
    	}
    	if !haveCounters {
    		return
    	}
    
    	// Install counters in package ctab.
    	gfp, ok := mm.p.ctab[fnIdx]
    	if ok {
    		if verb == "subtract" || verb == "intersect" {
    			panic("should never see this for intersect/subtract")
    		}
    		if *verbflag >= 3 {
    			fmt.Printf("counter merge for %s fidx=%d\n", fd.Funcname, fnIdx)
    		}
    		// Merge.
    		err, overflow := mm.MergeCounters(gfp.Counters, counters)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 17:17:47 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/ConnectionSpec.kt

    import okhttp3.ConnectionSpec.Builder
    import okhttp3.internal.concat
    import okhttp3.internal.effectiveCipherSuites
    import okhttp3.internal.hasIntersection
    import okhttp3.internal.indexOf
    import okhttp3.internal.intersect
    
    /**
     * Specifies configuration for the socket connection that HTTP traffic travels through. For `https:`
     * URLs, this includes the TLS version and cipher suites to use when negotiating a secure
     * connection.
     *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  4. guava-testlib/src/com/google/common/collect/testing/FeatureSpecificTestSuiteBuilder.java

            logger.finer(
                Platform.format(
                    "%s: skipping because these features are absent: %s", method, missingFeatures));
          }
          return false;
        }
        if (intersect(features, requirements.getAbsentFeatures())) {
          if (logger.isLoggable(FINER)) {
            Set<Feature<?>> unwantedFeatures = Helpers.copyToSet(requirements.getAbsentFeatures());
            unwantedFeatures.retainAll(features);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  5. android/guava-testlib/src/com/google/common/collect/testing/FeatureSpecificTestSuiteBuilder.java

            logger.finer(
                Platform.format(
                    "%s: skipping because these features are absent: %s", method, missingFeatures));
          }
          return false;
        }
        if (intersect(features, requirements.getAbsentFeatures())) {
          if (logger.isLoggable(FINER)) {
            Set<Feature<?>> unwantedFeatures = Helpers.copyToSet(requirements.getAbsentFeatures());
            unwantedFeatures.retainAll(features);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  6. src/cmd/covdata/tool_test.go

    		t.Fatalf("can't create outdir %s: %v", ioutdir, err)
    	}
    
    	// Intersect the two dirs into a final result.
    	ins := fmt.Sprintf("-i=%s,%s", indir1, indir2)
    	out := fmt.Sprintf("-o=%s", ioutdir)
    	sargs := []string{ins, out}
    	lines := runToolOp(t, s, "intersect", sargs)
    	if len(lines) != 0 {
    		t.Errorf("intersect run produced unexpected output: %+v", lines)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 20:46:32 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  7. okhttp/src/test/java/okhttp3/CallHandshakeTest.kt

          )
        }
      }
    
      private fun expectedConnectionCipherSuites(client: OkHttpClient): Set<String> {
        return client.connectionSpecs.first().cipherSuites!!.map { it.javaName }.intersect(defaultEnabledCipherSuites.toSet())
      }
    
      private fun makeClient(
        connectionSpec: ConnectionSpec? = null,
        tlsVersion: TlsVersion? = null,
        cipherSuites: List<CipherSuite>? = null,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/typeset.go

    		// The type set of an interface is the intersection of the type sets of all its elements.
    		// Due to language restrictions, only embedded interfaces can add methods, they are handled
    		// separately. Here we only need to intersect the term lists and comparable bits.
    		allTerms, allComparable = intersectTermLists(allTerms, allComparable, terms, comparable)
    	}
    
    	ityp.tset.comparable = allComparable
    	if len(allMethods) != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  9. src/go/types/typeset.go

    		// The type set of an interface is the intersection of the type sets of all its elements.
    		// Due to language restrictions, only embedded interfaces can add methods, they are handled
    		// separately. Here we only need to intersect the term lists and comparable bits.
    		allTerms, allComparable = intersectTermLists(allTerms, allComparable, terms, comparable)
    	}
    
    	ityp.tset.comparable = allComparable
    	if len(allMethods) != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/GeneralRange.java

       * Returns the intersection of the two ranges, or an empty range if their intersection is empty.
       */
      @SuppressWarnings("nullness") // TODO(cpovirk): Add casts as needed. Will be noisy and annoying...
      GeneralRange<T> intersect(GeneralRange<T> other) {
        checkNotNull(other);
        checkArgument(comparator.equals(other.comparator));
    
        boolean hasLowBound = this.hasLowerBound;
        T lowEnd = getLowerEndpoint();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 10.8K bytes
    - Viewed (0)
Back to top