Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 567 for inputs (0.99 sec)

  1. android/guava-tests/test/com/google/common/util/concurrent/AbstractClosingFutureTest.java

                        assertThat(peeker.getDone(input1)).isSameInstanceAs("value1");
                        try {
                          peeker.getDone(input2Failed);
                          fail("Peeker should fail for failed inputs");
                        } catch (ExecutionException expected) {
                        }
                        try {
                          peeker.getDone(nonInput);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri Jul 11 18:52:30 UTC 2025
    - 75.4K bytes
    - Viewed (0)
  2. src/main/resources/fess_label.properties

    labels.webApiJson=JSON Response
    labels.webConfigName=Web Crawl Config Name
    labels.allLanguages=All Languages
    labels.dictId=Dictionary ID
    labels.docId=Document ID
    labels.endTime=End Time
    labels.hq=hq
    labels.inputs=Inputs
    labels.jobLogging=Logging
    labels.jobName=Name
    labels.jobStatus=Status
    labels.labelTypeIds=Labels
    labels.lang=Language
    labels.outputs=Outputs
    labels.pos=Part-of-speech
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jun 28 08:40:50 UTC 2025
    - 40.7K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/hash/HashTestUtils.java

       * (key) bits 'affects' a strictly smaller set of output bits. Funneling is bad because it can
       * result in more-than-ideal collisions for a non-uniformly distributed key space. In practice,
       * most key spaces are ANYTHING BUT uniformly distributed. A bit(i) in the input is said to
       * 'affect' a bit(j) in the output if two inputs, identical but for bit(i), will differ at output
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 25.6K bytes
    - Viewed (0)
  4. src/main/resources/fess_label_zh_TW.properties

    labels.url=URL
    labels.userFavorite=收藏日誌
    labels.userInfo=使用者資訊
    labels.webApiJson=JSON響應
    labels.webConfigName=Web爬網配置名稱
    labels.allLanguages=所有語言
    labels.dictId=字典ID
    labels.docId=文檔ID
    labels.endTime=結束時間
    labels.hq=hq
    labels.inputs=輸入
    labels.jobLogging=日誌記錄
    labels.jobName=名稱
    labels.jobStatus=狀態
    labels.labelTypeIds=標籤
    labels.lang=語言
    labels.outputs=輸出
    labels.pos=詞性
    labels.purgeJobLogDay=刪除以前的作業日誌
    labels.purgeUserInfoDay=刪除以前的使用者日誌
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 40.7K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/collect/IterablesTest.java

        List<Integer> list2 = newArrayList(4);
    
        List<List<Integer>> input = newArrayList(list1, list2);
    
        Iterable<Integer> result = Iterables.concat(input);
        assertEquals(asList(1, 4), newArrayList(result));
    
        // Now change the inputs and see result dynamically change as well
    
        list1.add(2);
        List<Integer> list3 = newArrayList(3);
        input.add(1, list3);
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 46.6K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/util/concurrent/Futures.java

       *
       * @param input the primary input {@code Future}
       * @param exceptionType the exception type that triggers use of {@code fallback}. The exception
       *     type is matched against the input's exception. "The input's exception" means the cause of
       *     the {@link ExecutionException} thrown by {@code input.get()} or, if {@code get()} throws a
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 64.3K bytes
    - Viewed (0)
  7. src/main/resources/fess_label_de.properties

    labels.webApiJson=JSON-Antwort
    labels.webConfigName=Webcrawl-Konfigurationsname
    labels.allLanguages=Alle Sprachen
    labels.dictId=Wörterbuch-ID
    labels.docId=Dokument-ID
    labels.endTime=Endzeit
    labels.hq=hq
    labels.inputs=Eingaben
    labels.jobLogging=Protokollierung
    labels.jobName=Name
    labels.jobStatus=Status
    labels.labelTypeIds=Labels
    labels.lang=Sprache
    labels.outputs=Ausgaben
    labels.pos=Wortart
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 43.5K bytes
    - Viewed (1)
  8. guava/src/com/google/common/primitives/Floats.java

       * {@code '-'} (<code>'&#92;u002D'</code>) is recognized as the minus sign.
       *
       * <p>Unlike {@link Float#parseFloat(String)}, this method returns {@code null} instead of
       * throwing an exception if parsing fails. Valid inputs are exactly those accepted by {@link
       * Float#valueOf(String)}, except that leading and trailing whitespace is not permitted.
       *
       * <p>This implementation is likely to be faster than {@code Float.parseFloat} if many failures
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 25.7K bytes
    - Viewed (0)
  9. src/main/resources/fess_label_pl.properties

    labels.webConfigName=Nazwa konfiguracji indeksowania stron internetowych
    labels.allLanguages=Wszystkie języki
    labels.dictId=ID słownika
    labels.docId=ID dokumentu
    labels.endTime=Godzina zakończenia
    labels.hq=hq
    labels.inputs=Wejścia
    labels.jobLogging=Logowanie
    labels.jobName=Nazwa
    labels.jobStatus=Status
    labels.labelTypeIds=Etykiety
    labels.lang=Język
    labels.outputs=Wyjścia
    labels.pos=Część mowy
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 44.6K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/collect/IterablesTest.java

        List<Integer> list2 = newArrayList(4);
    
        List<List<Integer>> input = newArrayList(list1, list2);
    
        Iterable<Integer> result = Iterables.concat(input);
        assertEquals(asList(1, 4), newArrayList(result));
    
        // Now change the inputs and see result dynamically change as well
    
        list1.add(2);
        List<Integer> list3 = newArrayList(3);
        input.add(1, list3);
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 45.2K bytes
    - Viewed (0)
Back to top