- Sort Score
- Result 10 results
- Languages All
Results 441 - 450 of 1,052 for data2 (0.05 sec)
-
src/test/java/jcifs/smb/SmbFilenameFilterTest.java
@Mock SmbFile mockDir; /** * Happy-path: a filter that accepts any name. */ @ParameterizedTest @DisplayName("accepts any non-null/any string") @ValueSource(strings = { "file.txt", "data.DAT", "a", "x.y.z", " spaced " }) void acceptsAnyNameReturnsTrue(String input) throws Exception { SmbFilenameFilter filter = (dir, name) -> true; boolean result = filter.accept(mockDir, input);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 7.3K bytes - Viewed (0) -
docs/sts/client-grants.go
flag.StringVar(&clientSecret, "csec", "", "Client secret") } func getTokenExpiry() (*credentials.ClientGrantsToken, error) { data := url.Values{} data.Set("grant_type", "client_credentials") req, err := http.NewRequest(http.MethodPost, idpEndpoint, strings.NewReader(data.Encode())) if err != nil { return nil, err } req.Header.Set("Content-Type", "application/x-www-form-urlencoded")
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Thu Aug 19 01:35:22 UTC 2021 - 3.3K bytes - Viewed (0) -
dbflute_fess/dfprop/dependencyInjectionMap.dfprop
#; dbfluteBeansFileName = dbfluteBeans.xml # - - - - - - - - - -/ # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - # o dbfluteBeansDataSourceName: (NotRequired - Default 'dataSource') # The data source name that DBFlute(Behaviors) uses. # # @SpringOnly #; dbfluteBeansDataSourceName = exampleDataSource # - - - - - - - - - -/ # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Oct 31 23:35:14 UTC 2015 - 6.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans/TransPeekNamedPipeResponse.java
import jcifs.Configuration; import jcifs.internal.util.SMBUtil; /** * Response for SMB1 TRANS_PEEK_NAMED_PIPE transaction. * * This response contains information about the data available in the * named pipe without actually removing the data from the pipe. */ public class TransPeekNamedPipeResponse extends SmbComTransactionResponse { /** * Named pipe status indicating the pipe is disconnected. */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.3K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/io/FilesTest.java
assertEquals(I18N, Files.toString(temp, UTF_16LE)); } public void testWriteBytes() throws IOException { File temp = createTempFile(); byte[] data = newPreFilledByteArray(2000); Files.write(data, temp); assertTrue(Arrays.equals(data, Files.toByteArray(temp))); assertThrows(NullPointerException.class, () -> Files.write(null, temp)); } public void testAppendString() throws IOException {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Jul 14 14:44:08 UTC 2025 - 22.1K bytes - Viewed (0) -
docs/smb3-features/01-smb3-lease-design.md
if (entry != null) { entry.breaking = true; entry.updateState(newState); // Flush any cached data if losing write cache if (!entry.hasWriteCache()) { flushCachedWrites(entry.path); } // Invalidate cached data if losing read cache if (!entry.hasReadCache()) { invalidateReadCache(entry.path); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 22K bytes - Viewed (0) -
src/main/resources/fess_message_pt_BR.properties
constraints.Future.message = {item} deve ser uma data futura. constraints.Max.message = {item} deve ser menor ou igual a {value}. constraints.Min.message = {item} deve ser maior ou igual a {value}. constraints.NotNull.message = {item} é obrigatório. constraints.Null.message = {item} deve ser nulo. constraints.Past.message = {item} deve ser uma data passada. constraints.Pattern.message = {item} não corresponde a "{regexp}".
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 04:56:21 UTC 2025 - 12.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/CrawlJob.java
this.fileConfigIds = fileConfigIds; return this; } /** * Sets the data source crawling configuration IDs to process. * If not set, all available data configurations will be crawled. * * @param dataConfigIds array of data crawling configuration IDs, or null for all * @return this CrawlJob instance for method chaining */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 19.6K bytes - Viewed (0) -
okhttp-logging-interceptor/README.md
Logging Interceptor =================== An [OkHttp interceptor][interceptors] which logs HTTP request and response data. ```java HttpLoggingInterceptor logging = new HttpLoggingInterceptor(); logging.setLevel(Level.BASIC); OkHttpClient client = new OkHttpClient.Builder() .addInterceptor(logging) .build(); ``` You can change the log level at any time by calling `setLevel()`.
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon Jul 07 19:32:33 UTC 2025 - 1.3K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/BadPaddingRuntimeException.java
*/ package org.codelibs.core.exception; import javax.crypto.BadPaddingException; /** * Signals that this exception has been thrown when a particular padding mechanism is expected for the input data but the data is not padded properly. * @author shinsuke */ public class BadPaddingRuntimeException extends ClRuntimeException { private static final long serialVersionUID = 1L; /**
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat Jul 05 00:11:05 UTC 2025 - 1.3K bytes - Viewed (0)