- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 9,317 for imports (0.07 sec)
-
build-logic-commons/code-quality-rules/src/main/resources/codenarc/codenarc-integtests.xml
<!--<exclude name='ExplicitCallToAndMethod'/>--> <!--<exclude name='ExplicitCallToOrMethod'/>--> <!--</ruleset-ref>--> <ruleset-ref path='rulesets/braces.xml'/> <ruleset-ref path='rulesets/imports.xml'> <exclude name="ImportFromSunPackages"/> <exclude name="MisorderedStaticImports"/> <exclude name="NoWildcardImports"/> </ruleset-ref> <ruleset-ref path='rulesets/naming.xml'>
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 2.3K bytes - Viewed (0) -
src/cmd/api/main_test.go
for k, v := range pkg.ImportMap { importMap[pkg.Dir][k] = v } } sort.Strings(stdPackages) imports = listImports{ stdPackages: stdPackages, importMap: importMap, importDir: importDir, } imports, _ = listCache.LoadOrStore(name, imports) } li := imports.(listImports) w.stdPackages = li.stdPackages w.importDir = li.importDir w.importMap = li.importMap }
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Wed Sep 04 18:16:59 UTC 2024 - 31.4K bytes - Viewed (0) -
docs/en/docs/tutorial/debugging.md
So, the section: ```Python uvicorn.run(app, host="0.0.0.0", port=8000) ``` will run. --- This won't happen if you import that module (file). So, if you have another file `importer.py` with: ```Python from myapp import app # Some more code ``` in that case, the automatically created variable inside of `myapp.py` will not have the variable `__name__` with a value of `"__main__"`.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 2.4K bytes - Viewed (0) -
build-logic-commons/code-quality-rules/src/main/resources/checkstyle/checkstyle.xml
--> <!-- Imports --> <module name="RedundantImport"/> <module name="UnusedImports"/> <module name="IllegalImport"> <!-- We shouldn't use jdk.internal types. com.beust and org.testng.collections has classes that look like Guava.
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Fri Dec 16 22:05:16 UTC 2022 - 6.3K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/PlexusContainerCapsuleFactory.java
*/ package org.apache.maven.cling.invoker; import java.io.File; import java.nio.file.Path; import java.util.ArrayList; import java.util.Collections; import java.util.HashSet; import java.util.List; import java.util.Set; import java.util.function.Function; import com.google.inject.AbstractModule; import com.google.inject.Module; import org.apache.maven.api.Constants; import org.apache.maven.api.cli.InvokerException;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 13.6K bytes - Viewed (0) -
docs/changelogs/upgrading_to_okhttp_4.md
Companion Imports ----------------- The equivalent of static methods in Java is companion object functions in Kotlin. The bytecode is the same but `.kt` files now need `Companion` in the import. This works with OkHttp 3.x: ```kotlin import okhttp3.CipherSuite.forJavaName ``` But OkHttp 4.x needs a `Companion`: ```kotlin import okhttp3.CipherSuite.Companion.forJavaName
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sun Feb 06 16:58:16 UTC 2022 - 10.9K bytes - Viewed (0) -
CONTRIBUTING.md
patches should only highlight the actual difference, not being disturbed by any formatting issues: + Only use spaces for indentation. + Create minimal diffs - disable on save actions like reformat source code or organize imports. If you feel the source code should be reformatted, create a separate PR for this change. + Check for unnecessary whitespace with `git diff --check` before committing.
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Sun Oct 10 09:48:27 UTC 2021 - 4.7K bytes - Viewed (0) -
tensorflow/api_template_v1.__init__.py
"""Bring in all of the public TensorFlow interface into this module.""" import importlib import inspect as _inspect import os as _os import site as _site import sys as _sys import sysconfig # pylint: disable=g-bad-import-order,protected-access,g-import-not-at-top from tensorflow.python import pywrap_tensorflow # pylint: disable=unused-import from tensorflow.python.tools import module_util as _module_util
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Wed Oct 02 22:16:02 UTC 2024 - 7.5K bytes - Viewed (0) -
misc/cgo/gmp/gmp.go
it compiles into a shared object (.so) that is dynamically linked into any 6.out that imports the first two files. The stanza // #include <gmp.h> import "C" is a signal to cgo. The doc comment on the import of "C" provides additional context for the C file. Here it is just a single #include but it could contain arbitrary C definitions to be imported and used. Cgo recognizes any use of a qualified identifier C.xxx and uses gcc to
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Mon Apr 11 16:34:30 UTC 2022 - 9.5K bytes - Viewed (0) -
tensorflow/api_template.__init__.py
""" # pylint: disable=g-bad-import-order,protected-access,g-import-not-at-top import sysconfig as _sysconfig import importlib import inspect as _inspect import os as _os import site as _site import sys as _sys _os.environ.setdefault("ENABLE_RUNTIME_UPTIME_TELEMETRY", "1")
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Wed Oct 02 22:16:02 UTC 2024 - 6.8K bytes - Viewed (0)