Search Options

Results per page
Sort
Preferred Languages
Advance

Results 201 - 210 of 2,207 for VALUE (0.01 sec)

  1. plugin.xml

    		<antcall target="install.plugin">
    			<param name="repo.url" value="${maven.release.repo.url}" />
    			<param name="plugin.groupId" value="org/codelibs/opensearch" />
    			<param name="plugin.name.prefix" value="opensearch-" />
    			<param name="plugin.name" value="analysis-extension" />
    			<param name="plugin.version" value="3.2.0" />
    			<param name="plugin.zip.version" value="3.2.0" />
    		</antcall>
    		<!-- analysis-fess -->
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 3.5K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/MutableClassToInstanceMap.java

          Class<@NonNull T> type, @ParametricNullness T value) {
        return cast(type, put(type, value));
      }
    
      @Override
      public <T extends @NonNull B> @Nullable T getInstance(Class<T> type) {
        return cast(type, get(type));
      }
    
      @CanIgnoreReturnValue
      private static <T> @Nullable T cast(Class<T> type, @Nullable Object value) {
        return Primitives.wrap(type).cast(value);
      }
    
        private Object writeReplace() {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 22:10:29 UTC 2025
    - 6.7K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/misc/AssertionUtil.java

        /**
         * Asserts that the argument is not <code>null</code>.
         *
         * @param argName
         *            The name of the argument that must not be {@code null}.
         * @param argValue
         *            The value of the argument.
         * @throws NullArgumentException
         *             If the argument is <code>null</code>.
         */
        public static void assertArgumentNotNull(final String argName, final Object argValue) {
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 12.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/collection/ArrayUtil.java

         *
         * @param array
         *            the array
         * @param value
         *            the value to search for
         * @return {@literal true} if the array contains the specified value
         */
        public static boolean contains(final long[] array, final long value) {
            return indexOf(array, value) > -1;
        }
    
        /**
         * Returns {@literal true} if the array contains the specified value.
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 41.5K bytes
    - Viewed (0)
  5. api/maven-api-xml/src/main/java/org/apache/maven/api/xml/ImmutableCollections.java

        }
    
        static <K, V> Map<K, V> singletonMap(K key, V value) {
            return new Map1<>(key, value);
        }
    
        private static class Map1<K, V> extends AbstractImmutableMap<K, V> {
            private final Entry<K, V> entry;
    
            private Map1(K key, V value) {
                this.entry = new SimpleImmutableEntry<>(key, value);
            }
    
            @Override
            public Set<Entry<K, V>> entrySet() {
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Mon Jul 07 11:47:42 UTC 2025
    - 7.8K bytes
    - Viewed (0)
  6. src/test/java/jcifs/ntlmssp/av/AvSingleHostTest.java

            byte[] value = avSingleHost.getRaw();
            assertNotNull(value);
            assertEquals(48, value.length);
    
            // Verify the size field (first 4 bytes)
            assertEquals(48, (value[0] & 0xFF) | ((value[1] & 0xFF) << 8) | ((value[2] & 0xFF) << 16) | ((value[3] & 0xFF) << 24));
            // Verify the zero field (next 4 bytes)
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 6.4K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/opensearch/log/bsentity/BsUserInfo.java

            return createdAt;
        }
    
        public void setCreatedAt(LocalDateTime value) {
            registerModifiedProperty("createdAt");
            this.createdAt = value;
        }
    
        public LocalDateTime getUpdatedAt() {
            checkSpecifiedProperty("updatedAt");
            return updatedAt;
        }
    
        public void setUpdatedAt(LocalDateTime value) {
            registerModifiedProperty("updatedAt");
            this.updatedAt = value;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 4.4K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsElevateWordToLabel.java

        }
    
        public void setElevateWordId(String value) {
            registerModifiedProperty("elevateWordId");
            this.elevateWordId = value;
        }
    
        public String getLabelTypeId() {
            checkSpecifiedProperty("labelTypeId");
            return convertEmptyToNull(labelTypeId);
        }
    
        public void setLabelTypeId(String value) {
            registerModifiedProperty("labelTypeId");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 4.5K bytes
    - Viewed (0)
  9. cmd/metrics-v3-api.go

    	}
    	for name, value := range httpStats.TotalS35xxErrors.APIStats {
    		m.Set(apiRequests5xxErrorsTotal, float64(value), "name", name, "type", "s3")
    	}
    	for name, value := range httpStats.TotalS34xxErrors.APIStats {
    		m.Set(apiRequests4xxErrorsTotal, float64(value), "name", name, "type", "s3")
    	}
    	for name, value := range httpStats.TotalS3Canceled.APIStats {
    		m.Set(apiRequestsCanceledTotal, float64(value), "name", name, "type", "s3")
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Tue Sep 24 17:13:00 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsRoleType.java

            checkSpecifiedProperty("value");
            return convertEmptyToNull(value);
        }
    
        public void setValue(String value) {
            registerModifiedProperty("value");
            this.value = value;
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 6.6K bytes
    - Viewed (0)
Back to top