Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 955 for cong (0.02 sec)

  1. guava/src/com/google/common/collect/Streams.java

        class Splitr extends MapWithIndexSpliterator<Spliterator.OfLong, R, Splitr>
            implements LongConsumer, Spliterator<R> {
          long holder;
    
          Splitr(Spliterator.OfLong splitr, long index) {
            super(splitr, index);
          }
    
          @Override
          public void accept(long t) {
            this.holder = t;
          }
    
          @Override
          public boolean tryAdvance(Consumer<? super R> action) {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 31 14:20:11 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/util/Encdec.java

            return 8;
        }
        public static long dec_uint64be( byte[] src, int si )
        {
            long l;
            l = dec_uint32be( src, si ) & 0xFFFFFFFFL;
            l <<= 32L;
            l |= dec_uint32be( src, si + 4 ) & 0xFFFFFFFFL;
            return l;
        }
        public static long dec_uint64le( byte[] src, int si )
        {
            long l;
            l = dec_uint32le( src, si + 4 ) & 0xFFFFFFFFL;
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 10.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/api/ApiResult.java

            protected long recordCount;
            protected String recordCountRelation;
            protected int pageCount;
            protected boolean nextPage;
            protected boolean prevPage;
            protected long startRecordNumber;
            protected long endRecordNumber;
            protected List<String> pageNumbers;
            protected boolean partial;
            protected long queryTime;
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:20:39 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  4. docs/bigdata/README.md

    cd /usr/hdp/current/spark2-client
    su spark
    ```
    
    The following example uses _log4j.properties_ as the input file:
    
    #### **4.2.1 Upload the input file to HDFS:**
    
    ```
    hadoop fs -copyFromLocal /etc/hadoop/conf/log4j.properties
              s3a://testbucket/testdata
    ```
    
    #### **4.2.2  Run the Spark shell:**
    
    ```
    ./bin/spark-shell --master yarn-client --driver-memory 512m --executor-memory 512m
    ```
    
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 14.7K bytes
    - Viewed (0)
  5. guava/src/com/google/common/cache/AbstractCache.java

              negativeToMaxValue(evictionCount.sum()));
        }
    
        /** Returns {@code value}, if non-negative. Otherwise, returns {@link Long#MAX_VALUE}. */
        private static long negativeToMaxValue(long value) {
          return (value >= 0) ? value : Long.MAX_VALUE;
        }
    
        /** Increments all counters by the values in {@code other}. */
        public void incrementBy(StatsCounter other) {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Jun 15 18:00:07 UTC 2021
    - 9.1K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/hash/HashCode.java

       * {@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}
       * value with {@code asBytes()} as the least-significant bytes and {@code 0x00} as the remaining
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 19:54:59 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  7. android/guava-testlib/src/com/google/common/util/concurrent/testing/TestingExecutors.java

          return NeverScheduledFuture.create();
        }
    
        private static class NeverScheduledFuture<V> extends AbstractFuture<V>
            implements ListenableScheduledFuture<V> {
    
          static <V> NeverScheduledFuture<V> create() {
            return new NeverScheduledFuture<>();
          }
    
          @Override
          public long getDelay(TimeUnit unit) {
            return Long.MAX_VALUE;
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Jul 23 14:18:12 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/es/config/exentity/ThumbnailQueue.java

        private static final long serialVersionUID = 1L;
    
        public String getId() {
            return asDocMeta().id();
        }
    
        public void setId(final String id) {
            asDocMeta().id(id);
        }
    
        public Long getVersionNo() {
            return asDocMeta().version();
        }
    
        public void setVersionNo(final Long version) {
            asDocMeta().version(version);
        }
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/smb1/net/SmbShareInfo.java

        }
    
    
        @Override
        public long createTime () {
            return 0L;
        }
    
    
        @Override
        public long lastModified () {
            return 0L;
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.smb.FileEntry#lastAccess()
         */
        @Override
        public long lastAccess () {
            return 0L;
        }
    
    
        @Override
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Feb 17 09:30:57 UTC 2019
    - 3.1K bytes
    - Viewed (0)
  10. cmd/warm-backend-gcs.go

    	}
    	return false, nil
    }
    
    func newWarmBackendGCS(conf madmin.TierGCS, tier string) (*warmBackendGCS, error) {
    	// Validation code
    	if conf.Creds == "" {
    		return nil, errors.New("empty credentials unsupported")
    	}
    
    	if conf.Bucket == "" {
    		return nil, errors.New("no bucket name was provided")
    	}
    
    	credsJSON, err := conf.GetCredentialJSON()
    	if err != nil {
    		return nil, err
    	}
    
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Oct 31 22:10:24 UTC 2024
    - 6.1K bytes
    - Viewed (0)
Back to top