Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 30 for 64 (0.01 sec)

  1. compat/maven-resolver-provider/src/test/java/org/apache/maven/repository/internal/util/ConsoleTransferListener.java

        public void transferProgressed(TransferEvent event) {
            TransferResource resource = event.getResource();
            downloads.put(resource, event.getTransferredBytes());
    
            StringBuilder buffer = new StringBuilder(64);
    
            for (Map.Entry<TransferResource, Long> entry : downloads.entrySet()) {
                long total = entry.getKey().getContentLength();
                long complete = entry.getValue();
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  2. android/guava-testlib/test/com/google/common/testing/FakeTickerTest.java

      }
    
      @GwtIncompatible // concurrency
    
      public void testConcurrentAdvance() throws Exception {
        final FakeTicker ticker = new FakeTicker();
    
        int numberOfThreads = 64;
        runConcurrentTest(
            numberOfThreads,
            new Callable<@Nullable Void>() {
              @Override
              public @Nullable Void call() throws Exception {
                // adds two nanoseconds to the ticker
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Oct 22 13:49:09 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  3. compat/maven-compat/src/main/java/org/apache/maven/repository/MetadataGraph.java

        MetadataGraphNode entry;
    
        public MetadataGraph(MetadataGraphNode entry) {
            this();
    
            this.entry = entry;
        }
    
        public MetadataGraph() {
            nodes = new ArrayList<>(64);
        }
    
        public void addNode(MetadataGraphNode node) {
            nodes.add(node);
        }
    
        /**
         * find a node by the GAV (metadata)
         *
         * @param md
         */
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/hash/HashCode.java

      /**
       * Returns the first eight bytes of {@linkplain #asBytes() this hashcode's bytes}, converted to a
       * {@code long} value in little-endian order.
       *
       * @throws IllegalStateException if {@code bits() < 64}
       */
      public abstract long asLong();
    
      /**
       * If this hashcode has enough bits, returns {@code asLong()}, otherwise returns a {@code long}
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 19:54:59 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  5. guava/src/com/google/common/hash/HashCode.java

      /**
       * Returns the first eight bytes of {@linkplain #asBytes() this hashcode's bytes}, converted to a
       * {@code long} value in little-endian order.
       *
       * @throws IllegalStateException if {@code bits() < 64}
       */
      public abstract long asLong();
    
      /**
       * If this hashcode has enough bits, returns {@code asLong()}, otherwise returns a {@code long}
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 19:54:59 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  6. compat/maven-artifact/src/main/java/org/apache/maven/artifact/repository/ArtifactRepositoryPolicy.java

                }
            }
            // else assume "never"
            return checkForUpdates;
        }
    
        @Override
        public String toString() {
            StringBuilder buffer = new StringBuilder(64);
            buffer.append("{enabled=");
            buffer.append(enabled);
            buffer.append(", checksums=");
            buffer.append(checksumPolicy);
            buffer.append(", updates=");
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  7. compat/maven-compat/src/main/java/org/apache/maven/repository/ArtifactTransferEvent.java

            return dataLength;
        }
    
        public void setDataLength(int dataLength) {
            this.dataLength = dataLength;
        }
    
        public String toString() {
            StringBuilder sb = new StringBuilder(64);
    
            sb.append("TransferEvent[");
    
            switch (this.getRequestType()) {
                case REQUEST_GET:
                    sb.append("GET");
                    break;
                case REQUEST_PUT:
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  8. compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultTransformerContextBuilder.java

        private final DefaultModelBuilder defaultModelBuilder;
        private final DefaultTransformerContext context;
    
        private final Map<String, Set<FileModelSource>> mappedSources = new ConcurrentHashMap<>(64);
    
        private volatile boolean fullReactorLoaded;
    
        DefaultTransformerContextBuilder(DefaultModelBuilder defaultModelBuilder) {
            this.defaultModelBuilder = defaultModelBuilder;
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.32.md

    - cloud.google.com/go/aiplatform: v1.48.0 → v1.58.0
    - cloud.google.com/go/analytics: v0.21.3 → v0.22.0
    - cloud.google.com/go/apigateway: v1.6.1 → v1.6.4
    - cloud.google.com/go/apigeeconnect: v1.6.1 → v1.6.4
    - cloud.google.com/go/apigeeregistry: v0.7.1 → v0.8.2
    - cloud.google.com/go/appengine: v1.8.1 → v1.8.4
    - cloud.google.com/go/area120: v0.8.1 → v0.8.4
    Registered: Fri Nov 01 09:05:11 UTC 2024
    - Last Modified: Tue Oct 29 20:17:52 UTC 2024
    - 121.6K bytes
    - Viewed (0)
  10. compat/maven-compat/src/main/java/org/apache/maven/repository/metadata/MetadataGraph.java

    /**
     * maven dependency metadata graph
     *
     *
     */
    @Deprecated
    public class MetadataGraph {
        public static final int DEFAULT_VERTICES = 32;
        public static final int DEFAULT_EDGES = 64;
    
        // flags to indicate the granularity of vertices
        private boolean versionedVertices = false;
        private boolean scopedVertices = false;
        /**
         * the entry point we started building the graph from
         */
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 13.1K bytes
    - Viewed (0)
Back to top