Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 636 for simpler (0.04 sec)

  1. src/test/java/jcifs/BufferCacheTest.java

            byte[] reusedBuffer = testCache.getBuffer();
    
            // Then
            assertSame(originalBuffer, reusedBuffer, "Released buffer should be reused");
        }
    
        /**
         * Simple test implementation of BufferCache for testing purposes
         */
        private static class TestBufferCacheImpl implements BufferCache {
            private final List<byte[]> cache;
            private final int bufferSize;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 4.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/opensearch/user/cbean/ca/bs/BsGroupCA.java

    import org.opensearch.search.aggregations.bucket.range.IpRangeAggregationBuilder;
    import org.opensearch.search.aggregations.bucket.range.RangeAggregationBuilder;
    import org.opensearch.search.aggregations.bucket.sampler.SamplerAggregationBuilder;
    import org.opensearch.search.aggregations.bucket.terms.SignificantTermsAggregationBuilder;
    import org.opensearch.search.aggregations.bucket.terms.TermsAggregationBuilder;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 17.7K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/primitives/Chars.java

       * @return a hash code for the value
       */
      @InlineMe(replacement = "Character.hashCode(value)")
      @InlineMeValidationDisabled(
          "The hash code of a char is the int version of the char itself, so it's simplest to return"
              + " that.")
      public static int hashCode(char value) {
        return value;
      }
    
      /**
       * Returns the {@code char} value that is equal to {@code value}, if possible.
       *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 24.2K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/primitives/Shorts.java

       * @return a hash code for the value
       */
      @InlineMe(replacement = "Short.hashCode(value)")
      @InlineMeValidationDisabled(
          "The hash code of a short is the int version of the short itself, so it's simplest to return"
              + " that.")
      public static int hashCode(short value) {
        return value;
      }
    
      /**
       * Returns the {@code short} value that is equal to {@code value}, if possible.
       *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 25.8K bytes
    - Viewed (0)
  5. guava/src/com/google/common/primitives/Shorts.java

       * @return a hash code for the value
       */
      @InlineMe(replacement = "Short.hashCode(value)")
      @InlineMeValidationDisabled(
          "The hash code of a short is the int version of the short itself, so it's simplest to return"
              + " that.")
      public static int hashCode(short value) {
        return value;
      }
    
      /**
       * Returns the {@code short} value that is equal to {@code value}, if possible.
       *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 25.8K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/script/ScriptEngineFactoryTest.java

            ScriptEngine retrieved = scriptEngineFactory.getScriptEngine("testengine");
            assertNotNull(retrieved);
            assertEquals(engine, retrieved);
    
            // Verify engine is accessible by class simple name
            ScriptEngine retrievedByClass = scriptEngineFactory.getScriptEngine("testscriptengine");
            assertNotNull(retrievedByClass);
            assertEquals(engine, retrievedByClass);
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.1K bytes
    - Viewed (0)
  7. docs/de/README.md

     - [Salesforce](https://github.com/codelibs/fess-ds-salesforce)
     - [SharePoint](https://github.com/codelibs/fess-ds-sharepoint)
     - [Slack](https://github.com/codelibs/fess-ds-slack)
    
    ## Themen
    
     - [Simple](https://github.com/codelibs/fess-theme-simple)
     - [Classic](https://github.com/codelibs/fess-theme-classic)
    
    ## Ingest
    
     - [Logger](https://github.com/codelibs/fess-ingest-logger)
     - [NDJSON](https://github.com/codelibs/fess-ingest-ndjson)
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Oct 12 07:19:47 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  8. src/test/java/jcifs/smb/SmbTreeHandleImplTest.java

        }
    
        @Test
        @DisplayName("Constructor acquires tree connection; getConfig/isConnected delegate")
        void constructorAndSimpleDelegations() {
            // Ensures constructor acquires tree connection and simple delegate methods forward correctly
            // Verify constructor invoked acquire once
            verify(treeConnection, times(1)).acquire();
    
            // getConfig delegates
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 14.4K bytes
    - Viewed (0)
  9. samples/crawler/build.gradle.kts

    plugins {
      kotlin("jvm")
      application
    }
    
    application {
      mainClass.set("okhttp3.sample.Crawler")
    }
    
    dependencies {
      implementation(projects.okhttp)
      implementation(libs.jsoup)
    }
    
    tasks.compileJava {
      options.isWarnings = false
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Tue Feb 15 23:38:32 UTC 2022
    - 234 bytes
    - Viewed (0)
  10. src/test/java/jcifs/smb/SessionSetupHandlerTest.java

            assertEquals("jcifs.smb", clazz.getPackageName(), "Package must match source");
            assertEquals("SessionSetupHandler", clazz.getSimpleName(), "Simple name must match source");
        }
    
        @Test
        @DisplayName("Interface declares no methods or fields")
        void testNoMembers() {
            // Assert
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 4.3K bytes
    - Viewed (0)
Back to top