Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 40 for union (0.17 sec)

  1. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/declarations/KotlinStandaloneDeclarationProvider.kt

            providers.mergeSpecificProviders<_, KotlinStandaloneDeclarationProvider>(KotlinCompositeDeclarationProvider.factory) { targetProviders ->
                val combinedScope = GlobalSearchScope.union(targetProviders.map { it.scope })
                project.createDeclarationProvider(combinedScope, contextualModule = null).apply {
                    check(this is KotlinStandaloneDeclarationProvider) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/build.go

    		m.Update = &modinfo.ModulePublic{
    			Path:    m.Path,
    			Version: info.Version,
    			Time:    &info.Time,
    		}
    	}
    }
    
    // mergeOrigin returns the union of data from two origins,
    // returning either a new origin or one of its unmodified arguments.
    // If the two origins conflict including if either is nil,
    // mergeOrigin returns nil.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 16:56:39 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/Range.java

       *   <li>{@code [2, 4)} and {@code [4, 6)} are connected, because both enclose the empty range
       *       {@code [4, 4)}
       * </ul>
       *
       * <p>Note that this range and {@code other} have a well-defined {@linkplain #span union} and
       * {@linkplain #intersection intersection} (as a single, possibly-empty range) if and only if this
       * method returns {@code true}.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/collect/ContiguousSetTest.java

          assertTrue(set.containsAll(subset));
        }
        for (Set<Integer> subset : Sets.powerSet(ImmutableSet.of(1, 2, 3))) {
          assertFalse(set.containsAll(Sets.union(subset, ImmutableSet.of(9))));
        }
        assertFalse(set.containsAll((Collection<?>) ImmutableSet.of("blah")));
      }
    
      public void testRange() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 19 20:34:55 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/graph/Network.java

      //
      // Element-level accessors
      //
    
      /**
       * Returns a live view of the nodes which have an incident edge in common with {@code node} in
       * this network.
       *
       * <p>This is equal to the union of {@link #predecessors(Object)} and {@link #successors(Object)}.
       *
       * <p>If {@code node} is removed from the network after this method is called, the {@code Set}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/liveness/intervals.go

    // numbers 0-4, 9-11, and 100. Once an Intervals object is created, it
    // can be tested to see if it has any overlap with another Intervals
    // object, or it can be merged with another Intervals object to form a
    // union of the two.
    //
    // The intended use case for this helper is in describing object or
    // variable lifetime ranges within a linearized program representation
    // where each IR instruction has a slot or index. Example:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 21:55:27 UTC 2024
    - 10K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/validtype.go

    	case *Array:
    		return check.validType0(pos, t.elem, nest, path)
    
    	case *Struct:
    		for _, f := range t.fields {
    			if !check.validType0(pos, f.typ, nest, path) {
    				return false
    			}
    		}
    
    	case *Union:
    		for _, t := range t.terms {
    			if !check.validType0(pos, t.typ, nest, path) {
    				return false
    			}
    		}
    
    	case *Interface:
    		for _, etyp := range t.embeddeds {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 13:22:37 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/instantiate.go

    func mentions(T, typ Type) bool {
    	switch T := T.(type) {
    	case *Interface:
    		for _, e := range T.embeddeds {
    			if mentions(e, typ) {
    				return true
    			}
    		}
    	case *Union:
    		for _, t := range T.terms {
    			if mentions(t.typ, typ) {
    				return true
    			}
    		}
    	default:
    		if Identical(T, typ) {
    			return true
    		}
    	}
    	return false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/collect/SetsTest.java

                                ? Sets.newHashSet(Arrays.asList(elements).subList(1, size))
                                : Sets.<String>newHashSet();
                        return Sets.union(set1, set2);
                      }
                    })
                .named("Sets.union")
                .withFeatures(CollectionSize.ANY, CollectionFeature.ALLOWS_NULL_VALUES)
                .createTestSuite());
    
        suite.addTest(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 47.8K bytes
    - Viewed (0)
  10. gradle/wrapper/gradle-wrapper.jar

    conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 08:44:14 UTC 2024
    - 42.4K bytes
    - Viewed (0)
Back to top