- Sort Score
- Result 10 results
- Languages All
Results 121 - 130 of 609 for prefix (0.05 sec)
-
cmd/object-api-utils.go
// Success. return etag } // HasPrefix - Prefix matcher string matches prefix in a platform specific way. // For example on windows since its case insensitive we are supposed // to do case insensitive checks. func HasPrefix(s string, prefix string) bool { if runtime.GOOS == globalWindowsOSName { return stringsHasPrefixFold(s, prefix) } return strings.HasPrefix(s, prefix) }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Wed Jun 25 15:08:54 UTC 2025 - 37.3K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/AbstractExtractor.java
throw new CrawlerSystemException("ExtractorFactory is unavailable."); } return extractorFactory; } /** * Creates a temporary file. * @param prefix The prefix string to be used in generating the file's name. * @param suffix The suffix string to be used in generating the file's name.
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 4.2K bytes - Viewed (0) -
docs/em/docs/tutorial/bigger-applications.md
đ đ â Ⲡ& đ đ´ đ¨ đ´. âĢī¸ đ đĢ đ đ. đļ /// ### đ `APIRouter` âŽī¸ đ `prefix`, `tags`, `responses`, & `dependencies` đ, âĄī¸ đ đ đĸ đ¤ đ `app/internal/admin.py` đ. âĢī¸ đ `APIRouter` âŽī¸ đĄ *⥠đ ī¸* đ đ đĸ đ° đ đ đ. đ đŧ âĢī¸ đ đ đ . âī¸ âĄī¸ đŦ đ âŠī¸ âĢī¸ đ° âŽī¸ đ đ đĸ, đĨ đĢđ đ âĢī¸ & đŽ `prefix`, `dependencies`, `tags`, âī¸. đ `APIRouter`: ```Python hl_lines="3" title="app/internal/admin.py"
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun May 11 13:37:26 UTC 2025 - 15.5K bytes - Viewed (0) -
cmd/utils_test.go
if err != nil { t.Fatal(err) } req.RequestURI = "/?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=USWUXHGYZQYFYFFIT3RE%2F20170529%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20170529T190139Z&X-Amz-Expires=600&X-Amz-Signature=19b58080999df54b446fc97304eb8dda60d3df1812ae97f3e8783351bfd9781d&X-Amz-SignedHeaders=host&prefix=Hello%2AWorld%2A"
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 10.2K bytes - Viewed (0) -
android/guava-tests/benchmark/com/google/common/util/concurrent/MonitorBenchmark.java
private String[] strings; @BeforeExperiment @SuppressWarnings("unchecked") void setUp() throws Exception { String prefix = useMonitor ? "com.google.common.util.concurrent.MonitorBased" : "java.util.concurrent."; String className = prefix + queueType + "BlockingQueue"; Constructor<?> constructor = Class.forName(className).getConstructor(int.class);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 2.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/ProtocolHelper.java
final String prefix = protocol + ":"; if (stream(webProtocols).get(stream -> stream.anyMatch(s -> s.equals(prefix)))) { logger.debug("web protocols contains {}.", protocol); return; } webProtocols = Arrays.copyOf(webProtocols, webProtocols.length + 1); webProtocols[webProtocols.length - 1] = prefix; } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 9.7K bytes - Viewed (0) -
cmd/object_api_suite_test.go
} if result.Prefixes[0] != "this/is/also/" { t.Errorf("%s: Expected prefix to be `%s`, but instead found `%s`", instanceType, "this/is/also/", result.Prefixes[0]) } } // check delimited results with delimiter without prefix. { result, err = obj.ListObjects(context.Background(), "bucket", "", "", SlashSeparator, 1000)
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 34.5K bytes - Viewed (0) -
.github/ISSUE_TEMPLATE/02-pkgsite-removal.yml
attributes: label: "What is the path of the package that you would like to have removed?" description: | We can remove packages with a shared path prefix. For example, a request for 'github.com/author' would remove all pkg.go.dev pages with that package path prefix. validations: required: true - type: textarea id: package-owner attributes: label: "Are you the owner of this package?"
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Thu Jan 04 23:31:17 UTC 2024 - 1.9K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb1/SmbAuthenticationHolder.java
* authentication based on a given path. * * <p>This class manages a collection of {@link SmbAuthentication} objects, each associated * with a specific path prefix. When a path is provided, it iterates through the stored * authentications to find the one whose path prefix matches the beginning of the given path. * This allows for different SMB shares to use different authentication credentials.</p> * */
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 2.2K bytes - Viewed (0) -
tensorflow/c/c_api.h
// effect if a prefix is set, since the prefix will guarantee all names are // unique. Defaults to false. TF_CAPI_EXPORT extern void TF_ImportGraphDefOptionsSetUniquifyNames( TF_ImportGraphDefOptions* opts, unsigned char uniquify_names); // If true, the specified prefix will be modified if it already exists as an // operation name or prefix in the graph. If false, a conflicting prefix will be
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Thu Oct 26 21:08:15 UTC 2023 - 82.3K bytes - Viewed (0)