Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for Intersect (0.14 sec)

  1. 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)
  2. 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)
  3. subprojects/core/src/integTest/groovy/org/gradle/configuration/ExecuteUserLifecycleListenerBuildOperationIntegrationTest.groovy

            findOpApplicationId(ApplyScriptPluginBuildOperationType, Specs.intersect(predicates))
        }
    
        private Long findPluginApplicationId(Spec<? super BuildOperationRecord>... predicates) {
            findOpApplicationId(ApplyPluginBuildOperationType, Specs.intersect(predicates))
        }
    
        private static Spec<? super BuildOperationRecord> targetsGradle() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 40.2K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/internal/-UtilCommon.kt

        "0000feff".decodeHex(),
      )
    
    /**
     * Returns an array containing only elements found in this array and also in [other]. The returned
     * elements are in the same order as in this.
     */
    internal fun Array<String>.intersect(
      other: Array<String>,
      comparator: Comparator<in String>,
    ): Array<String> {
      val result = mutableListOf<String>()
      for (a in this) {
        for (b in other) {
          if (comparator.compare(a, b) == 0) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon May 13 13:42:37 UTC 2024
    - 11K bytes
    - Viewed (0)
  5. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/DebugSymbolRenderer.kt

            val matchingClassSet = matchingClasses.toSet()
    
            val matchingClassesRanking = matchingClasses
                .associateWith { matchingClassSet.intersect(it.allSuperclasses).size }
    
            // Find supertypes with the highest number of frontend-independent supertypes
            // It means more specific classes will be selected (such as KaClassSymbol instead of KaSymbol)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  6. pkg/test/framework/components/echo/deployment/builder.go

    			}
    			if data.RawTemplates != nil {
    				t := sets.New[string]()
    				for name := range data.RawTemplates {
    					t.Insert(name)
    				}
    				// either intersection has not been set or we intersect these templates
    				// with the current set.
    				if intersection.IsEmpty() {
    					intersection = t
    				} else {
    					intersection = intersection.Intersection(t)
    				}
    			}
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 12K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/internal/facts/facts.go

    		// we aren't careful about which structs or methods
    		// we rexport: it should be only those referenced
    		// from the API of s.pkg.
    		// TODO(adonovan): opt: be more precise. e.g.
    		// intersect with the set of objects computed by
    		// importMap(s.pkg.Imports()).
    		// TODO(adonovan): opt: implement "shallow" facts.
    		if k.pkg != s.pkg {
    			if k.obj == nil {
    				continue // imported package fact
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  8. src/runtime/metrics/doc.go

    The set of metrics defined by this package may evolve as the runtime itself
    evolves, and also enables variation across Go implementations, whose relevant
    metric sets may not intersect.
    
    # Interface
    
    Metrics are designated by a string key, rather than, for example, a field name in
    a struct. The full list of supported metrics is always available in the slice of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:43 UTC 2024
    - 20K bytes
    - Viewed (0)
  9. src/syscall/exec_linux.go

    	CLONE_CLEAR_SIGHAND = 0x100000000 // Clear any signal handler and reset to SIG_DFL.
    	CLONE_INTO_CGROUP   = 0x200000000 // Clone into a specific cgroup given the right permissions.
    
    	// Cloning flags intersect with CSIGNAL so can be used with unshare and clone3
    	// syscalls only:
    
    	CLONE_NEWTIME = 0x00000080 // New time namespace
    )
    
    // SysProcIDMap holds Container ID to Host ID mappings used for User Namespaces in Linux.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 23K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/cel/library/cost_test.go

    		},
    		{
    			expr:                `sets.intersects([1], [1])`,
    			expectEstimatedCost: checker.CostEstimate{Min: 22, Max: 22},
    			expectRuntimeCost:   22,
    		},
    		{
    			expr:                `sets.intersects([1], [1, 1])`,
    			expectEstimatedCost: checker.CostEstimate{Min: 23, Max: 23},
    			expectRuntimeCost:   23,
    		},
    		{
    			expr:                `sets.intersects([1, 1], [1])`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 17:22:44 UTC 2024
    - 40.8K bytes
    - Viewed (0)
Back to top