Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1141 - 1150 of 1,321 for api1 (0.66 seconds)

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

     * powerful advantage. Although Java offers certain immutable collection factory methods, such as
     * {@link Collections#singleton(Object)} and <a
     * href="https://docs.oracle.com/en/java/javase/25/docs/api/java.base/java/util/Set.html#unmodifiable">{@code
     * Set.of}</a>, we recommend using <i>these</i> classes instead for this reason (as well as for
     * consistency).
     *
     * <h4>Creation</h4>
     *
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Jan 29 22:14:05 GMT 2026
    - 18.7K bytes
    - Click Count (0)
  2. android/guava/src/com/google/common/hash/Hashing.java

       *     neither fast nor secure. As of January 2017, we suggest:
       *     <ul>
       *       <li>For security:
       *           {@link Hashing#sha256} or a higher-level API.
       *       <li>For speed: {@link Hashing#goodFastHash}, though see its docs for caveats.
       *     </ul>
       */
      @Deprecated
      public static HashFunction md5() {
        return Md5Holder.MD5;
      }
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Jul 17 15:26:41 GMT 2025
    - 29.8K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/util/QueryStringBuilderTest.java

    import org.codelibs.fess.entity.GeoInfo;
    import org.codelibs.fess.entity.HighlightInfo;
    import org.codelibs.fess.entity.SearchRequestParams;
    import org.codelibs.fess.unit.UnitFessTestCase;
    import org.junit.jupiter.api.Test;
    
    public class QueryStringBuilderTest extends UnitFessTestCase {
    
        @Test
        public void test_query() {
            assertEquals("", getQuery("", new String[0], Collections.emptyMap(), Collections.emptyMap(), false));
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 16.7K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/helper/NotificationHelperTest.java

    import org.codelibs.fess.util.ComponentUtil;
    import org.dbflute.mail.send.supplement.SMailPostingDiscloser;
    import org.dbflute.optional.OptionalThing;
    import org.junit.jupiter.api.Test;
    import org.junit.jupiter.api.TestInfo;
    
    public class NotificationHelperTest extends UnitFessTestCase {
    
        private NotificationHelper notificationHelper;
    
        @Override
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 20K bytes
    - Click Count (0)
  5. guava/src/com/google/common/base/Strings.java

       *     {@code count} is zero)
       * @throws IllegalArgumentException if {@code count} is negative
       */
      @InlineMe(replacement = "string.repeat(count)")
      @InlineMeValidationDisabled("Java 11+ API only")
      public static String repeat(String string, int count) {
        checkNotNull(string); // eager for GWT.
    
        if (count <= 1) {
          checkArgument(count >= 0, "invalid count: %s", count);
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Jan 29 22:14:05 GMT 2026
    - 12.5K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/chat/ChatPhaseCallbackTest.java

     */
    package org.codelibs.fess.chat;
    
    import java.util.ArrayList;
    import java.util.List;
    
    import org.codelibs.fess.unit.UnitFessTestCase;
    import org.junit.jupiter.api.Test;
    
    public class ChatPhaseCallbackTest extends UnitFessTestCase {
    
        @Test
        public void test_phaseConstants() {
            assertEquals("intent", ChatPhaseCallback.PHASE_INTENT);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Jan 12 10:32:40 GMT 2026
    - 7.3K bytes
    - Click Count (0)
  7. src/test/java/org/codelibs/fess/llm/RelevanceEvaluationResultTest.java

     */
    package org.codelibs.fess.llm;
    
    import java.util.Arrays;
    import java.util.Collections;
    import java.util.List;
    
    import org.codelibs.fess.unit.UnitFessTestCase;
    import org.junit.jupiter.api.Test;
    
    public class RelevanceEvaluationResultTest extends UnitFessTestCase {
    
        @Test
        public void test_withRelevantDocs() {
            List<String> docIds = Arrays.asList("doc1", "doc2", "doc3");
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 01 08:11:18 GMT 2026
    - 7.7K bytes
    - Click Count (0)
  8. .teamcity/src/main/kotlin/configurations/GradleBuildConfigurationDefaults.kt

            return
        }
    
        commitStatusPublisher {
            vcsRootExtId = VersionedSettingsBranch.fromDslContext().vcsRootId()
            publisher =
                github {
                    githubUrl = "https://api.github.com"
                    authType =
                        personalToken {
                            token = "%github.bot-gradle.token%"
                        }
                }
        }
    }
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Mar 13 05:03:56 GMT 2026
    - 8.5K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/taglib/FessFunctionsTest.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.taglib;
    
    import java.util.Date;
    
    import org.codelibs.fess.unit.UnitFessTestCase;
    import org.junit.jupiter.api.Test;
    
    public class FessFunctionsTest extends UnitFessTestCase {
        @Test
        public void test_formatNumber() {
            assertEquals("0", FessFunctions.formatNumber(0, "###,###"));
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 6K bytes
    - Click Count (0)
  10. okhttp-testing-support/src/main/kotlin/okhttp3/RecordingConnectionListener.kt

    import okhttp3.ConnectionEvent.NoNewExchanges
    import okhttp3.internal.connection.ConnectionListener
    import okhttp3.internal.connection.RealConnection
    import okio.IOException
    import org.junit.jupiter.api.Assertions
    
    internal open class RecordingConnectionListener(
      /**
       * An override to ignore the normal order that is enforced.
       * EventListeners added by Interceptors will not see all events.
       */
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Jan 27 09:00:39 GMT 2026
    - 5.8K bytes
    - Click Count (0)
Back to Top