- Sort Score
- Result 10 results
- Languages All
Results 141 - 150 of 4,402 for Spring (0.27 sec)
-
api/maven-api-annotations/src/main/java/org/apache/maven/api/annotations/Config.java
* * @return the fully qualified class name of the property type, defaults to "java.lang.String" */ String type() default "java.lang.String"; /** * Specifies the default value of the configuration property. * * @return the default value as a string, defaults to empty string */ String defaultValue() default ""; /** * Specifies whether the configuration property is read-only.
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Jul 03 14:18:26 UTC 2025 - 4.3K bytes - Viewed (0) -
src/bufio/example_test.go
package bufio_test import ( "bufio" "bytes" "fmt" "os" "strconv" "strings" ) func ExampleWriter() { w := bufio.NewWriter(os.Stdout) fmt.Fprint(w, "Hello, ") fmt.Fprint(w, "world!") w.Flush() // Don't forget to flush! // Output: Hello, world! } func ExampleWriter_AvailableBuffer() { w := bufio.NewWriter(os.Stdout) for _, i := range []int64{1, 2, 3, 4} {
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Fri Nov 01 21:52:12 UTC 2024 - 5.5K bytes - Viewed (0) -
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/exception/OpenSearchAccessException.java
* @param message the detail message */ public OpenSearchAccessException(final String message) { super(message); } /** * Creates a new instance of OpenSearchAccessException. * * @param message the detail message * @param cause the cause */ public OpenSearchAccessException(final String message, final Throwable cause) { super(message, cause); }
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 1.4K bytes - Viewed (0) -
src/test/java/jcifs/smb/NtlmPasswordAuthenticatorTest.java
assertEquals(new String(testPassword), auth.getPassword()); } /** * Test null password handling */ @Test public void testNullPasswordHandling() { // Test with null String password NtlmPasswordAuthenticator auth1 = new NtlmPasswordAuthenticator("testuser", (String) null); assertNull(auth1.getPassword());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 23.3K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb1/SmbClient.java
} processAccessControlEntries(responseData, file); final Map<String, List<String>> headerFieldMap = file.getHeaderFields(); if (headerFieldMap != null) { for (final Map.Entry<String, List<String>> entry : headerFieldMap.entrySet()) { responseData.addMetaData(entry.getKey(), entry.getValue()); }
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Sep 18 09:30:45 UTC 2025 - 23K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/QueryHelper.java
protected static final String PREFERENCE_QUERY = "_query"; /** Prefix used to identify sort parameters in search queries */ protected String sortPrefix = "sort:"; /** Additional query string to be appended to all search queries */ protected String additionalQuery; /** Default sort builders to be applied when no explicit sorting is specified */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 19.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/failureurl/EditForm.java
*/ @Required @Size(max = 1000) public String id; /** * The URL that failed during crawling. * This is a required field containing the actual URL that encountered an error. */ @Required public String url; /** * The name of the crawler thread that encountered the failure. * This is a required field used for identifying which crawler process failed.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.2K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/ntlm/JcifsEngine.java
* @throws NTLMEngineException if an NTLM engine error occurs * @throws CrawlingAccessException if an error occurs during message generation */ @Override public String generateType3Msg(final String username, final String password, final String domain, final String workstation, final String challenge) throws NTLMEngineException { Type2Message type2Message; try {
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Sep 18 09:30:45 UTC 2025 - 4.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/mapping/CharMappingItem.java
* @return array of input sequences */ public String[] getInputs() { return inputs; } /** * Returns all input sequences joined with newline characters as a single string. * This is useful for display purposes in forms and user interfaces. * * @return string representation of all inputs separated by newlines, or empty string if inputs is null */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.6K bytes - Viewed (0) -
docs/iam/access-manager-plugin.go
json.Indent(&out, body, "", " ") fmt.Printf("Received JSON payload:\n%s\n", out.String()) reqMap := make(map[string]interface{}) err = json.Unmarshal(body, &reqMap) if err != nil { writeErrorResponse(w, err) return } m := reqMap["input"].(map[string]interface{}) accountValue := m["account"].(string) actionValue := m["action"].(string) // Allow user `minio` to perform any action. var res Result
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Thu Feb 08 17:15:20 UTC 2024 - 2.7K bytes - Viewed (0)