Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 124 for hodina (0.04 sec)

  1. android/guava-tests/test/com/google/common/cache/CacheBuilderTest.java

        computingLatch.countDown();
        // don't check cache.size() until we know the get("b") call is complete
        computationComplete.await();
    
        // At this point, the listener should be holding the seed value (a -> a), and the map should
        // contain the computed value (b -> b), since the clear() happened before the computation
        // completed.
        assertEquals(1, listener.size());
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 25.1K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/cache/CacheBuilderTest.java

        computingLatch.countDown();
        // don't check cache.size() until we know the get("b") call is complete
        computationComplete.await();
    
        // At this point, the listener should be holding the seed value (a -> a), and the map should
        // contain the computed value (b -> b), since the clear() happened before the computation
        // completed.
        assertEquals(1, listener.size());
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 25K bytes
    - Viewed (0)
  3. cmd/erasure-metadata.go

    }
    
    // IsValid - tells if erasure info fields are valid.
    func (fi FileInfo) IsValid() bool {
    	if fi.Deleted {
    		// Delete marker has no data, no need to check
    		// for erasure coding information
    		return true
    	}
    	dataBlocks := fi.Erasure.DataBlocks
    	parityBlocks := fi.Erasure.ParityBlocks
    	correctIndexes := (fi.Erasure.Index > 0 &&
    		fi.Erasure.Index <= dataBlocks+parityBlocks &&
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 21.3K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/util/concurrent/ExecutionSequencer.java

            // run() on the same thread that called execute() - such as in a thread pool, and think
            // that it was happening inline. As a side benefit, avoids holding on to the Thread object
            // longer than necessary.
            submitting = null;
          }
        }
    
        @SuppressWarnings("ShortCircuitBoolean")
        @Override
        public void run() {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Jul 23 15:26:56 UTC 2025
    - 22.1K bytes
    - Viewed (0)
  5. docs/tr/docs/async.md

    Ardından, đŸ€– bitirmek için ilk görevi alır ("slow-file" 📝) ve onunla ne yapması gerekiyorsa onu devam ettirir.
    
    Bu "baßka bir ßey için bekle" normalde, aßağıdakileri beklemek gibi (ißlemcinin ve RAM belleğinin hızına kıyasla) nispeten "yavaß" olan <abbr title="Input ve Output (Giriß ve Çıkıß)">I/O</abbr> ißlemlerine atıfta bulunur:
    
    * istemci tarafından ağ ĂŒzerinden veri göndermek
    * ağ ĂŒzerinden istemciye gönderilen veriler
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:56:21 UTC 2025
    - 21.8K bytes
    - Viewed (0)
  6. src/main/resources/fess_indices/_aws/fess.json

    "siihen", "sillÀ", "siltÀ", "sille", "sinÀ", "siksi", "nÀmÀ", "nÀiden", "nÀitÀ", "nÀissÀ", "nÀistÀ", "nÀihin", "nÀillÀ", "nÀiltÀ", "nÀille", "nÀinÀ", "nÀiksi", "nuo", "noiden", "noita", "noissa", "noista", "noihin", "noilla", "noilta", "noille", "noina", "noiksi", "ne", "niiden", "niitÀ", "niissÀ", "niistÀ", "niihin", "niillÀ", "niiltÀ", "niille", "niinÀ", "niiksi", "kuka", "kenen", "kenet", "ketÀ", "kenessÀ", "kenestÀ", "keneen", "kenellÀ", "keneltÀ", "kenelle", "kenenÀ", "keneksi", "ketkÀ", "keiden",...
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jun 14 00:36:40 UTC 2025
    - 117.3K bytes
    - Viewed (0)
  7. src/main/resources/fess_indices/_cloud/fess.json

    "siihen", "sillÀ", "siltÀ", "sille", "sinÀ", "siksi", "nÀmÀ", "nÀiden", "nÀitÀ", "nÀissÀ", "nÀistÀ", "nÀihin", "nÀillÀ", "nÀiltÀ", "nÀille", "nÀinÀ", "nÀiksi", "nuo", "noiden", "noita", "noissa", "noista", "noihin", "noilla", "noilta", "noille", "noina", "noiksi", "ne", "niiden", "niitÀ", "niissÀ", "niistÀ", "niihin", "niillÀ", "niiltÀ", "niille", "niinÀ", "niiksi", "kuka", "kenen", "kenet", "ketÀ", "kenessÀ", "kenestÀ", "keneen", "kenellÀ", "keneltÀ", "kenelle", "kenenÀ", "keneksi", "ketkÀ", "keiden",...
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Feb 27 09:26:16 UTC 2021
    - 117.3K bytes
    - Viewed (0)
  8. cmd/xl-storage-format-v2.go

    	return e > invalidVersionType && e < lastVersionType
    }
    
    // ErasureAlgo defines common type of different erasure algorithms
    type ErasureAlgo uint8
    
    // List of currently supported erasure coding algorithms
    const (
    	invalidErasureAlgo ErasureAlgo = 0
    	ReedSolomon        ErasureAlgo = 1
    	lastErasureAlgo    ErasureAlgo = 2
    )
    
    func (e ErasureAlgo) valid() bool {
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 65.6K bytes
    - Viewed (1)
  9. src/main/java/jcifs/util/transport/Transport.java

        }
    
        /**
         * Disconnect the transport
         *
         * @param hard if true, disconnect immediately without waiting for outstanding requests
         * @param inUse whether the caller is holding a usage reference on the transport
         * @return whether connection was in use
         * @throws IOException if an I/O error occurs during disconnection
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 27.8K bytes
    - Viewed (0)
  10. src/main/webapp/css/admin/font-awesome.min.css

    s-square:before{content:"\f3af"}.fa-hackerrank:before{content:"\f5f7"}.fa-hamburger:before{content:"\f805"}.fa-hammer:before{content:"\f6e3"}.fa-hamsa:before{content:"\f665"}.fa-hand-holding:before{content:"\f4bd"}.fa-hand-holding-heart:before{content:"\f4be"}.fa-hand-holding-usd:before{content:"\f4c0"}.fa-hand-lizard:before{content:"\f258"}.fa-hand-middle-finger:before{content:"\f806"}.fa-hand-paper:before{content:"\f256"}.fa-hand-peace:before{content:"\f25b"}.fa-hand-point-down:before{content:...
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Dec 14 21:22:25 UTC 2019
    - 55.8K bytes
    - Viewed (0)
Back to top