- Sort Score
- Num 10 results
- Language All
Results 221 - 230 of 329 for relativa (0.05 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
docs/ko/docs/tutorial/bigger-applications.md
그래서 dependencies에 대해 `..`를 사용하는 상대 import를 사용합니다: {* ../../docs_src/bigger_applications/app_an_py310/routers/items.py hl[3] title["app/routers/items.py"] *} #### 상대 import가 동작하는 방식 { #how-relative-imports-work } /// tip | 팁 import가 동작하는 방식을 완벽히 알고 있다면, 아래 다음 섹션으로 넘어가세요. /// 다음과 같이 점 하나 `.`를 쓰면: ```Python from .dependencies import get_token_header ```Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:06:26 GMT 2026 - 21.5K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/crawler/transformer/FessXpathTransformerTest.java
@Test public void test_normalizeCanonicalUrl_withMalformedRelative() throws Exception { final FessXpathTransformer transformer = new FessXpathTransformer(); // Valid base URL with malformed relative: java.net.URL is lenient, resolves anyway final String value = transformer.normalizeCanonicalUrl("http://example.com/", "://"); // java.net.URL(base, "://") prepends protocol, result may varyCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 62.9K bytes - Click Count (0) -
LICENSES/vendor/cyphar.com/go-pathrs/LICENSE
* * ************************************************************************ 8. Litigation ------------- Any litigation relating to this License may be brought only in the courts of a jurisdiction where the defendant maintains its principal place of business and such litigation shall be governed by laws of that
Created: Fri Apr 03 09:05:14 GMT 2026 - Last Modified: Wed Nov 12 14:46:31 GMT 2025 - 16.5K bytes - Click Count (0) -
src/main/java/jcifs/smb1/dcerpc/msrpc/lsarpc.java
*/ public LsarTranslatedSid() { // Default constructor } /** SID type. */ public int sid_type; /** Relative identifier. */ public int rid; /** Index of the SID in the domain list. */ public int sid_index; @Override public void encode(final NdrBuffer _dst) throws NdrException {Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 42.5K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/job/IndexExportJobTest.java
assertEquals("Exported 0 documents.", result); } // --- Edge cases --- @Test public void test_buildFilePath_emptyString() { // Empty string is a valid relative URI with null host and empty path final Path result = indexExportJob.buildFilePath("/export", "", new HtmlIndexExportFormatter()); assertEquals(Path.of("/export/_local/index.html"), result); }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Mar 15 09:08:38 GMT 2026 - 66.1K bytes - Click Count (0) -
guava/src/com/google/common/collect/ImmutableList.java
checkElementsNotNull((Object[]) array); Arrays.sort(array); return asImmutableList(array); } /** * Returns an immutable list containing the given elements, in sorted order relative to the * specified comparator. The sorting algorithm used is stable, so elements that compare as equal * will stay in the order in which they appear in the input. *
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sun Mar 08 16:16:42 GMT 2026 - 30.6K bytes - Click Count (0) -
docs/zh/docs/tutorial/bigger-applications.md
我们需要从 `app.dependencies` 模块即 `app/dependencies.py` 文件中获取依赖函数。 因此,我们通过 `..` 对依赖项使用了相对导入: {* ../../docs_src/bigger_applications/app_an_py310/routers/items.py hl[3] title["app/routers/items.py"] *} #### 相对导入如何工作 { #how-relative-imports-work } /// tip | 提示 如果你完全了解导入的工作原理,请从下面的下一部分继续。 /// 一个单点 `.`,例如: ```Python from .dependencies import get_token_header ``` 表示:Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:06:37 GMT 2026 - 19.5K bytes - Click Count (0) -
android/guava/src/com/google/common/util/concurrent/AbstractFuture.java
} /** Returns whether {@code obj} is <b>not</b> an instance of {@code DelegatingToFuture}. */ // This method lets us: // - avoid exposing DelegatingToFuture to the whole package // - avoid fighting with the relative operator precedence of `instanceof` and `!` static boolean notInstanceOfDelegatingToFuture(@Nullable Object obj) { return !(obj instanceof DelegatingToFuture); } @Override public boolean isDone() {Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sat Mar 07 14:39:00 GMT 2026 - 43.6K bytes - Click Count (0) -
helm-releases/minio-2.0.1.tgz
{{- if $storageClass }} storageClassName: {{ $storageClass }} {{- end }} resources: requests: storage: {{ $psize }} {{- end }} {{- end }} {{- end }} minio/.helmignore # Patterns to ignore when building packages. # This supports shell glob matching, relative path matching, and # negation (prefixed with !). Only one pattern per line. .DS_Store # Common VCS dirs .git/ .gitignore .bzr/ .bzrignore .hg/ .hgignore .svn/ # Common backup files *.swp *.bak *.tmp *~ # Various IDEs .project .idea/ *.tmproj # OWNERS...Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Tue Aug 31 09:09:09 GMT 2021 - 13.6K bytes - Click Count (0) -
cmd/xl-storage.go
} } } // Success. return nil } func getValidPath(path string) (string, error) { if path == "" { return path, errInvalidArgument } var err error // Disallow relative paths, figure out absolute paths. path, err = filepath.Abs(path) if err != nil { return path, err } fi, err := Lstat(path) if err != nil && !osIsNotExist(err) { return path, err }
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 91.7K bytes - Click Count (0)