Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 212 for typemap (0.13 sec)

  1. guava-tests/test/com/google/common/collect/SortedIterablesTest.java

    public class SortedIterablesTest extends TestCase {
      public void testSameComparator() {
        assertTrue(SortedIterables.hasSameComparator(Ordering.natural(), Sets.newTreeSet()));
        // Before JDK6 (including under GWT), the TreeMap keySet is a plain Set.
        if (Maps.newTreeMap().keySet() instanceof SortedSet) {
          assertTrue(SortedIterables.hasSameComparator(Ordering.natural(), Maps.newTreeMap().keySet()));
        }
        assertTrue(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 19 20:34:55 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/tasks/BaseSnapshotInputsBuildOperationResult.java

    import java.util.Collection;
    import java.util.Deque;
    import java.util.LinkedHashMap;
    import java.util.List;
    import java.util.Map;
    import java.util.Optional;
    import java.util.Set;
    import java.util.TreeMap;
    import java.util.function.Function;
    import java.util.stream.Collector;
    import java.util.stream.Collectors;
    
    @NonNullApi
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 11:36:42 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/shortcircuit_test.go

    package ssa
    
    import (
    	"cmd/compile/internal/types"
    	"testing"
    )
    
    func TestShortCircuit(t *testing.T) {
    	c := testConfig(t)
    
    	fun := c.Fun("entry",
    		Bloc("entry",
    			Valu("mem", OpInitMem, types.TypeMem, 0, nil),
    			Valu("arg1", OpArg, c.config.Types.Int64, 0, nil),
    			Valu("arg2", OpArg, c.config.Types.Int64, 0, nil),
    			Valu("arg3", OpArg, c.config.Types.Int64, 0, nil),
    			Goto("b1")),
    		Bloc("b1",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 23:01:51 UTC 2017
    - 1.3K bytes
    - Viewed (0)
  4. src/compress/flate/token.go

    	// 2 bits:   type   0 = literal  1=EOF  2=Match   3=Unused
    	// 8 bits:   xlength = length - MIN_MATCH_LENGTH
    	// 22 bits   xoffset = offset - MIN_OFFSET_SIZE, or literal
    	lengthShift = 22
    	offsetMask  = 1<<lengthShift - 1
    	typeMask    = 3 << 30
    	literalType = 0 << 30
    	matchType   = 1 << 30
    )
    
    // The length code for length X (MIN_MATCH_LENGTH <= X <= MAX_MATCH_LENGTH)
    // is lengthCodes[length - MIN_MATCH_LENGTH]
    var lengthCodes = [...]uint32{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/ModelGraph.java

    import java.util.LinkedHashSet;
    import java.util.Map;
    import java.util.Set;
    import java.util.TreeMap;
    
    class ModelGraph {
        private enum PendingState {
            ADD, NOTIFY
        }
    
        private final ModelNodeInternal root;
        private final Map<ModelPath, ModelNodeInternal> flattened = new TreeMap<>();
        private final SetMultimap<ModelPath, ModelListener> pathListeners = LinkedHashMultimap.create();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  6. guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ImmutableSortedMap.java

      ImmutableSortedSet<K> createKeySet() {
        // the keySet() of the delegate is only a Set and TreeMap.navigatableKeySet
        // is not available in GWT yet.  To keep the code simple and code size more,
        // we make a copy here, instead of creating a view of it.
        //
        // TODO: revisit if it's unbearably slow or when GWT supports
        // TreeMap.navigatbleKeySet().
        return ImmutableSortedSet.copyOf(comparator, sortedDelegate.keySet());
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 27 19:19:19 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  7. guava/src/com/google/common/graph/StandardValueGraph.java

    import static com.google.common.graph.GraphConstants.DEFAULT_NODE_COUNT;
    import static com.google.common.graph.Graphs.checkNonNegative;
    
    import java.util.Iterator;
    import java.util.Map;
    import java.util.Set;
    import java.util.TreeMap;
    import javax.annotation.CheckForNull;
    
    /**
     * Standard implementation of {@link ValueGraph} that supports the options supplied by {@link
     * AbstractGraphBuilder}.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/graph/StandardNetwork.java

    import static java.util.Objects.requireNonNull;
    
    import com.google.common.collect.ImmutableSet;
    import java.util.Map;
    import java.util.Set;
    import java.util.TreeMap;
    
    /**
     * Standard implementation of {@link Network} that supports the options supplied by {@link
     * NetworkBuilder}.
     *
     * <p>This class maintains a map of nodes to {@link NetworkConnections}. This class also maintains a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  9. guava/src/com/google/common/graph/StandardNetwork.java

    import static java.util.Objects.requireNonNull;
    
    import com.google.common.collect.ImmutableSet;
    import java.util.Map;
    import java.util.Set;
    import java.util.TreeMap;
    
    /**
     * Standard implementation of {@link Network} that supports the options supplied by {@link
     * NetworkBuilder}.
     *
     * <p>This class maintains a map of nodes to {@link NetworkConnections}. This class also maintains a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/classrealm/DefaultClassRealmManager.java

            } else {
                parentImports = new ArrayList<>();
            }
    
            if (foreignImports != null) {
                foreignImports = new TreeMap<>(foreignImports);
            } else {
                foreignImports = new TreeMap<>();
            }
    
            ClassRealm classRealm = newRealm(baseRealmId);
    
            if (parent != null) {
                classRealm.setParentClassLoader(parent);
            }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:53:42 UTC 2024
    - 12.4K bytes
    - Viewed (0)
Back to top