- Sort Score
- Result 10 results
- Languages All
Results 431 - 440 of 549 for prefixes (0.04 sec)
-
cmd/postpolicyform.go
return strings.HasPrefix(input1, input2) } return false } // S3 docs: "Each form field that you specify in a form (except x-amz-signature, file, policy, and field names // that have an x-ignore- prefix) must appear in the list of conditions." // https://docs.aws.amazon.com/AmazonS3/latest/API/sigv4-HTTPPOSTConstructPolicy.html
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 12.1K bytes - Viewed (0) -
cmd/os-readdir_test.go
func setupTestReadDirGeneric(t *testing.T) (testResults []result) { dir := t.TempDir() if err := os.MkdirAll(filepath.Join(dir, "mydir"), 0o777); err != nil { t.Fatalf("Unable to create prefix directory \"mydir\", %s", err) } entries := []string{"mydir/"} for i := range 10 { name := fmt.Sprintf("file-%d", i) if err := os.WriteFile(filepath.Join(dir, "mydir", name), []byte{}, os.ModePerm); err != nil {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue May 27 15:19:03 UTC 2025 - 7.5K bytes - Viewed (0) -
.bazelrc
build:windows --nobuild_python_zip build:windows --dynamic_mode=off # Default paths for TF_SYSTEM_LIBS build:linux --define=PREFIX=/usr build:linux --define=PROTOBUF_INCLUDE_PATH=$(PREFIX)/include build:macos --define=PREFIX=/usr build:macos --define=PROTOBUF_INCLUDE_PATH=$(PREFIX)/include # TF_SYSTEM_LIBS do not work on windows. # By default, build TF in C++ 17 mode. build:android --cxxopt=-std=c++17
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Fri Aug 22 21:03:34 UTC 2025 - 56K bytes - Viewed (0) -
cmd/signature-v4-parser_test.go
{ inputV4AuthStr: "", expectedAuthField: signValues{}, expectedErrCode: ErrAuthHeaderEmpty, }, // Test case - 2. // Test case with no sign v4 Algorithm prefix. // A valid authorization string should begin(prefix) { inputV4AuthStr: "no-singv4AlgorithmPrefix", expectedAuthField: signValues{}, expectedErrCode: ErrSignatureVersionNotSupported, }, // Test case - 3.
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Feb 18 16:25:55 UTC 2025 - 27.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/ResourceUtilTest.java
assertNotNull(jarFiles); // Should return empty array when no servlet context available in test assertEquals(0, jarFiles.length); // Test with empty prefix jarFiles = ResourceUtil.getJarFiles(""); assertNotNull(jarFiles); assertEquals(0, jarFiles.length); } public void test_getPluginJarFiles_withPrefix() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 11.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/query/PrefixQueryCommandTest.java
PrefixQuery prefixQuery = new PrefixQuery(new Term("title", "")); QueryBuilder builder = queryProcessor.execute(context, prefixQuery, 1.0f); assertNotNull(builder); // Empty prefix should still create a valid query assertTrue(builder instanceof MatchPhrasePrefixQueryBuilder); MatchPhrasePrefixQueryBuilder mpqb = (MatchPhrasePrefixQueryBuilder) builder;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 13.1K bytes - Viewed (0) -
src/main/java/jcifs/pac/PacDataInputStream.java
throw new PACDecodingException("Malformed string in PAC"); } return new PacUnicodeString(length, maxLength, pointer); } /** * Reads a string with length prefix from the stream. * @return the decoded string * @throws IOException if an I/O error occurs * @throws PACDecodingException if the string structure is malformed */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 8.9K bytes - Viewed (0) -
src/main/resources/fess_message_de.properties
# Framework Default # ================= # ---------------------------------------------------------- # Lasta Taglib # ------------ errors.header = <ul class="has-error"> errors.footer = </ul> errors.prefix = <li><i class="fa fa-exclamation-circle"></i> errors.suffix = </li> # ---------------------------------------------------------- # Javax Validator # --------------- constraints.AssertFalse.message = {item} muss falsch sein.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 05 02:36:47 UTC 2025 - 12.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/ThemeHelperTest.java
assertTrue(true); } } public void test_getThemeName_invalidPrefix() { try { Artifact artifact = new Artifact("invalid-prefix-simple", "1.0.0"); String result = themeHelper.getThemeName(artifact); // May not throw exception but return unexpected result assertNotNull(result); } catch (Exception e) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 14.5K bytes - Viewed (0) -
guava/src/com/google/common/primitives/Chars.java
* locale. That is, it compares, using {@link #compare(char, char)}), the first pair of values * that follow any common prefix, or when one array is a prefix of the other, treats the shorter * array as the lesser. For example, {@code [] < ['a'] < ['a', 'b'] < ['b']}. * * <p>The returned comparator is inconsistent with {@link Object#equals(Object)} (since arrays
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 24.2K bytes - Viewed (0)