Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 108 for First (0.38 sec)

  1. analysis/analysis-api-fir/analysis-api-fir-generator/src/org/jetbrains/kotlin/analysis/api/fir/generator/HLDiagnosticConverter.kt

                )
            }
            if (kClass.isSubclassOf(Pair::class)) {
                val first = type.arguments.getOrNull(0)?.type ?: return HLIdParameterConversion
                val second = type.arguments.getOrNull(1)?.type ?: return HLIdParameterConversion
                return HLPairParameterConversion(
                    mappingConversionFirst = createConversion(first),
                    mappingConversionSecond = createConversion(second)
                )
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/liveness/plive.go

    				}
    			}
    		}
    	}
    
    	// We must analyze the entry block first. The runtime assumes
    	// the function entry map is index 0. Conveniently, layout
    	// already ensured that the entry block is first.
    	if lv.f.Entry != lv.f.Blocks[0] {
    		lv.f.Fatalf("entry block must be first")
    	}
    
    	{
    		// Reserve an entry for function entry.
    		live := bitvec.New(nvars)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  3. maven-embedder/src/main/java/org/apache/maven/cli/internal/BootstrapCoreExtensionManager.java

    /**
     * BootstrapCoreExtensionManager
     */
    @Named
    public class BootstrapCoreExtensionManager {
        public static final String STRATEGY_PARENT_FIRST = "parent-first";
        public static final String STRATEGY_PLUGIN = "plugin";
        public static final String STRATEGY_SELF_FIRST = "self-first";
    
        private final Logger log = LoggerFactory.getLogger(getClass());
    
        private final DefaultPluginDependenciesResolver pluginDependenciesResolver;
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jun 12 07:49:10 UTC 2024
    - 13K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/io/CloserTest.java

      }
    
      public void testExceptionThrown_whileClosingLastCloseable() throws IOException {
        Closer closer = new Closer(suppressor);
    
        IOException exception = new IOException();
    
        // c1 is added first, closed last
        TestCloseable c1 = closer.register(TestCloseable.throwsOnClose(exception));
        TestCloseable c2 = closer.register(TestCloseable.normal());
    
        try {
          closer.close();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 15:26:58 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/ImmutableMultiset.java

     * detailed at {@link ImmutableCollection}.
     *
     * <p><b>Grouped iteration.</b> In all current implementations, duplicate elements always appear
     * consecutively when iterating. Elements iterate in order by the <i>first</i> appearance of that
     * element when the multiset was created.
     *
     * <p>See the Guava User Guide article on <a href=
     * "https://github.com/google/guava/wiki/ImmutableCollectionsExplained">immutable collections</a>.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/execution/MavenSession.java

            if (!projects.isEmpty()) {
                MavenProject first = projects.get(0);
                this.currentProject = ThreadLocal.withInitial(() -> first);
                this.topLevelProject = projects.stream()
                        .filter(project -> project.isExecutionRoot())
                        .findFirst()
                        .orElse(first);
            } else {
                this.currentProject = new ThreadLocal<>();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  7. guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ImmutableSortedSet.java

            return false;
          }
        }
        try {
          return sortedDelegate.containsAll(targets);
        } catch (ClassCastException e) {
          return false;
        }
      }
    
      public E first() {
        return sortedDelegate.first();
      }
    
      public ImmutableSortedSet<E> headSet(E toElement) {
        checkNotNull(toElement);
        try {
          return unsafeDelegateSortedSet(sortedDelegate.headSet(toElement), true);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 08 03:01:02 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/evaluate/FirCompileTimeConstantEvaluator.kt

                is ConeCapturedType -> lowerType?.toConstantValueKind() ?: constructor.supertypes!!.first().toConstantValueKind()
                is ConeDefinitelyNotNullType -> original.toConstantValueKind()
                is ConeIntersectionType -> intersectedTypes.first().toConstantValueKind()
                is ConeStubType, is ConeIntegerLiteralType, is ConeTypeVariableType -> null
            }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 11:53:09 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/hash/Hashing.java

       *
       * @since 19.0
       */
      public static HashFunction concatenating(
          HashFunction first, HashFunction second, HashFunction... rest) {
        // We can't use Lists.asList() here because there's no hash->collect dependency
        List<HashFunction> list = new ArrayList<>();
        list.add(first);
        list.add(second);
        Collections.addAll(list, rest);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 09 00:37:15 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ir/func.go

    	Marks []Mark
    
    	FieldTrack map[*obj.LSym]struct{}
    	DebugInfo  interface{}
    	LSym       *obj.LSym // Linker object in this function's native ABI (Func.ABI)
    
    	Inl *Inline
    
    	// RangeParent, if non-nil, is the first non-range body function containing
    	// the closure for the body of a range function.
    	RangeParent *Func
    
    	// funcLitGen, rangeLitGen and goDeferGen track how many closures have been
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 21.1K bytes
    - Viewed (0)
Back to top