Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 215 for Adds (0.26 sec)

  1. src/main/java/org/codelibs/core/collection/Maps.java

         *
         * @param map the <code>Map</code> to which keys and values are added
         */
        protected Maps(final Map<K, V> map) {
            this.map = map;
        }
    
        /**
         * Adds a key and value to the {@link Map}.
         *
         * @param key the key to be added to the <code>Map</code>
         * @param value the value to be added to the <code>Map</code>
         * @return this instance
         */
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jun 19 09:12:22 UTC 2025
    - 7.2K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/LinkedListMultimap.java

      }
    
      private LinkedListMultimap(Multimap<? extends K, ? extends V> multimap) {
        this(multimap.keySet().size());
        putAll(multimap);
      }
    
      /**
       * Adds a new node for the specified key-value pair before the specified {@code nextSibling}
       * element, or at the end of the list if {@code nextSibling} is null. Note: if {@code nextSibling}
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 26.6K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.17.md

        *  - `kubernetes` plugin adds metrics to measure kubernetes control plane latency.
        *  -  the `health` plugin now includes the `lameduck` option by default, which waits for a duration before shutting down.
    * Kubeadm now includes CoreDNS version 1.6.5 ([#85108](https://github.com/kubernetes/kubernetes/pull/85108), [@rajansandeep](https://github.com/rajansandeep))
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Thu Jan 28 10:44:33 UTC 2021
    - 346.2K bytes
    - Viewed (1)
  4. docs/en/docs/tutorial/response-model.md

    ### Type Annotations and Tooling { #type-annotations-and-tooling }
    
    First let's see how editors, mypy and other tools would see this.
    
    `BaseUser` has the base fields. Then `UserIn` inherits from `BaseUser` and adds the `password` field, so, it will include all the fields from both models.
    
    We annotate the function return type as `BaseUser`, but we are actually returning a `UserIn` instance.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 16K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/lang/GenericsUtil.java

            }
    
            return map;
        }
    
        /**
         * Gathers the type variables and type arguments of the specified parameterized type (class or interface)
         * and adds them to the given map.
         *
         * @param clazz
         *            the class to analyze
         * @param type
         *            the type to analyze
         * @param map
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 23.4K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/ImmutableSetMultimap.java

          return this;
        }
    
        /** Adds a key-value mapping to the built multimap if it is not already present. */
        @CanIgnoreReturnValue
        @Override
        public Builder<K, V> put(K key, V value) {
          super.put(key, value);
          return this;
        }
    
        /**
         * Adds an entry to the built multimap if it is not already present.
         *
         * @since 11.0
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 25.6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java

        protected boolean usePipeline = false;
    
        /**
         * Adds an index configuration file path to be loaded.
         *
         * @param path path to the index configuration file
         */
        public void addIndexConfig(final String path) {
            indexConfigList.add(path);
        }
    
        /**
         * Adds a configuration file for a specific index.
         *
         * @param index the index name
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 121.9K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java

                    throw new CrawlerSystemException("Could not create an instanced from bytes.", e);
                }
            }
            return new HashMap<String, Object>();
        }
    
        /**
         * Adds child URL from tag attribute value.
         *
         * @param urlList the list to add URLs to
         * @param url the base URL for resolving relative URLs
         * @param attrValue the attribute value containing the URL
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 54.4K bytes
    - Viewed (0)
  9. 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);
            assertEquals(1, response.getNotifyInformation().size());
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 14.7K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/query/TermQueryCommand.java

         * @param termQuery the term query to convert
         * @param boost the boost value to apply
         * @param field the field name
         * @param text the query text
         * @return null as this method only adds sort criteria
         */
        protected QueryBuilder convertSortQuery(final FessConfig fessConfig, final QueryContext context, final TermQuery termQuery,
                final float boost, final String field, final String text) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 13.6K bytes
    - Viewed (0)
Back to top