Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for key5 (0.01 sec)

  1. pom.xml

    					<controlDir>${project.build.directory}/generated-packaging/deb/scripts</controlDir>
    					<!--
    					<signPackage>${deb.sign}</signPackage>
    					<keyring>${gpg.keyring}</keyring>
    					key>${gpg.key}</key>
    					<passphrase>${gpg.passphrase}</passphrase>
    					<signMethod>${deb.sign.method}</signMethod>
    					-->
    					<dataSet>
    						<!-- Add app directory -->
    						<data>
    							<type>directory</type>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Sep 04 05:22:58 UTC 2025
    - 49.6K bytes
    - Viewed (0)
  2. README.md

    - **Type safety** - Extensive use of generics and null-safe operations throughout the API
    - **Resource management** - Proper handling of resources with utilities like `CloseableUtil` and `DisposableUtil`
    
    ### Key Architectural Patterns
    - **Factory Pattern** - `BeanDescFactory` for creating bean descriptors, `ParameterizedClassDescFactory` for generic type handling
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sun Aug 31 02:56:02 UTC 2025
    - 12.7K bytes
    - Viewed (0)
  3. docs/recipes.md

              if (!response.isSuccessful) throw IOException("Unexpected code $response")
    
              val gist = gistJsonAdapter.fromJson(response.body!!.source())
    
              for ((key, value) in gist!!.files!!) {
                println(key)
                println(value.content)
              }
            }
          }
    
          @JsonClass(generateAdapter = true)
          data class Gist(var files: Map<String, GistFile>?)
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Aug 30 17:01:12 UTC 2025
    - 47.8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java

            configListMap.computeIfAbsent(index, k -> new ArrayList<>()).add(path);
        }
    
        /**
         * Sets the configuration settings for the search engine.
         *
         * @param settings map of configuration key-value pairs
         */
        public void setSettings(final Map<String, String> settings) {
            this.settings = settings;
        }
    
        /**
         * Gets the current cluster health status.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 121.9K bytes
    - Viewed (0)
Back to top