Search Options

Results per page
Sort
Preferred Languages
Advance

Results 251 - 260 of 1,303 for EMPTY (0.03 sec)

  1. src/main/java/org/codelibs/fess/dict/kuromoji/KuromojiFile.java

                String line = null;
                while ((line = reader.readLine()) != null) {
                    // Remove comments
                    final String replacedLine = line.replaceAll("#.*$", StringUtil.EMPTY).trim();
    
                    // Skip empty lines or comment lines
                    if (replacedLine.length() == 0) {
                        if (updater != null) {
                            updater.write(line);
                        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 11.3K bytes
    - Viewed (0)
  2. src/test/java/jcifs/internal/smb2/info/Smb2QueryDirectoryResponseTest.java

        }
    
        @Test
        @DisplayName("Test getResults with empty array")
        void testGetResultsWithEmptyArray() throws Exception {
            response = new Smb2QueryDirectoryResponse(mockConfig, (byte) 0x03);
    
            // Use reflection to set the results field to empty array
            Field resultsField = Smb2QueryDirectoryResponse.class.getDeclaredField("results");
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 23.5K bytes
    - Viewed (0)
  3. src/test/java/jcifs/internal/smb1/trans/nt/NtTransNotifyChangeResponseTest.java

        }
    
        @Test
        @DisplayName("Test readParametersWireFormat with empty buffer")
        void testReadParametersWireFormatEmptyBuffer() throws Exception {
            byte[] buffer = new byte[0];
    
            // Empty buffer adds one empty FileNotifyInformation
            int result = response.readParametersWireFormat(buffer, 0, 0);
            assertEquals(0, result);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 14.7K bytes
    - Viewed (0)
  4. guava-testlib/test/com/google/common/testing/ArbitraryInstancesTest.java

        assertEquals(UTF_8, ArbitraryInstances.get(Charset.class));
        assertEquals(Optional.empty(), ArbitraryInstances.get(Optional.class));
        assertEquals(OptionalInt.empty(), ArbitraryInstances.get(OptionalInt.class));
        assertEquals(OptionalLong.empty(), ArbitraryInstances.get(OptionalLong.class));
        assertEquals(OptionalDouble.empty(), ArbitraryInstances.get(OptionalDouble.class));
        assertNotNull(ArbitraryInstances.get(UUID.class));
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Jul 16 17:42:14 UTC 2025
    - 22.3K bytes
    - Viewed (0)
  5. cmd/endpoint_test.go

    		{"http://192.168.253.200/path", Endpoint{u4, false, -1, -1, -1}, URLEndpointType, nil},
    		{"", Endpoint{}, -1, fmt.Errorf("empty or root endpoint is not supported")},
    		{SlashSeparator, Endpoint{}, -1, fmt.Errorf("empty or root endpoint is not supported")},
    		{`\`, Endpoint{}, -1, fmt.Errorf("empty or root endpoint is not supported")},
    		{"c://foo", Endpoint{}, -1, fmt.Errorf("invalid URL endpoint format")},
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 18.9K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/entity/RequestParameter.java

        /**
         * Constructs a new RequestParameter with the specified name and values.
         *
         * @param name the name of the parameter, must not be null
         * @param values the array of values for this parameter, can be null or empty
         */
        public RequestParameter(final String name, final String[] values) {
            this.name = name;
            this.values = values;
        }
    
        /**
         * Returns the name of this request parameter.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.4K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/validation/CustomSize.java

         * @return name of size the element must be higher or equal to
         */
        String minKey() default StringUtil.EMPTY;
    
        /**
         * Gets the configuration key for the maximum size constraint.
         *
         * @return name of size the element must be lower or equal to
         */
        String maxKey() default StringUtil.EMPTY;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.3K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/util/KuromojiCSVUtilTest.java

            String value;
            String[] result;
    
            // Empty fields between commas
            value = ",,";
            result = KuromojiCSVUtil.parse(value);
            assertEquals(3, result.length);
            assertEquals("", result[0]);
            assertEquals("", result[1]);
            assertEquals("", result[2]);
    
            // Mixed empty and non-empty
            value = "first,,third,";
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 18.7K bytes
    - Viewed (0)
  9. api/maven-api-core/src/main/java/org/apache/maven/api/ArtifactCoordinates.java

        /**
         * {@return the identifier of the artifact}.
         */
        @Nonnull
        String getArtifactId();
    
        /**
         * Returns the classifier of the artifact.
         *
         * @return the classifier or an empty string if none, never {@code null}
         */
        @Nonnull
        String getClassifier();
    
        /**
         * {@return the specific version, range of versions, or meta-version of the artifact}.
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Thu Jun 26 07:56:58 UTC 2025
    - 2.8K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/math/StatsAccumulator.java

       * If it contains {@link Double#NEGATIVE_INFINITY} and finite values only or {@link
       * Double#NEGATIVE_INFINITY} only, the result is {@link Double#NEGATIVE_INFINITY}.
       *
       * @throws IllegalStateException if the dataset is empty
       */
      public double mean() {
        checkState(count != 0);
        return mean;
      }
    
      /**
       * Returns the sum of the values.
       *
       * <h3>Non-finite values</h3>
       *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Apr 14 16:36:11 UTC 2025
    - 15.8K bytes
    - Viewed (0)
Back to top