Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 431 for modules (0.03 sec)

  1. build-logic-commons/publishing/src/main/kotlin/gradlebuild.kotlin-dsl-plugin-bundle.gradle.kts

    plugins {
        id("gradlebuild.module-identity")
        `maven-publish`
        signing
        `java-gradle-plugin`
        id("com.gradle.plugin-publish")
    }
    
    extensions.create<PluginPublishExtension>("pluginPublish", gradlePlugin)
    
    tasks.validatePlugins {
        enableStricterValidation = true
    }
    
    // Remove gradleApi() and gradleTestKit() as we want to compile/run against Gradle modules
    Registered: 2025-05-28 11:36
    - Last Modified: 2025-05-16 18:26
    - 6.1K bytes
    - Viewed (0)
  2. build-logic/dependency-modules/src/main/kotlin/gradlebuild/modules/extension/ExternalModulesExtension.kt

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package gradlebuild.modules.extension
    
    import gradlebuild.modules.model.License
    
    
    abstract class ExternalModulesExtension(bundleGroovyMajor: Int) {
    
        val groovyVersion = when (bundleGroovyMajor) {
            4 -> "4.0.26"
    Registered: 2025-05-28 11:36
    - Last Modified: 2025-05-21 06:20
    - 15.7K bytes
    - Viewed (0)
  3. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/internal.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    /** Exposes Kotlin-internal APIs to Java test code and code in other modules. */
    @file:JvmName("Internal")
    @file:Suppress("ktlint:standard:filename")
    
    package okhttp3.internal
    
    import java.nio.charset.Charset
    import javax.net.ssl.SSLSocket
    import okhttp3.Cache
    Registered: 2025-05-30 11:42
    - Last Modified: 2025-03-19 19:25
    - 3.7K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Tables.java

          return Maps.transformValues(
              fromTable.columnMap(), column -> Maps.transformValues(column, function));
        }
      }
    
      /**
       * Returns an unmodifiable view of the specified table. This method allows modules to provide
       * users with "read-only" access to internal tables. Query operations on the returned table "read
       * through" to the specified table, and attempts to modify the returned table, whether direct or
    Registered: 2025-05-30 12:43
    - Last Modified: 2025-04-14 16:07
    - 25K bytes
    - Viewed (0)
  5. pyproject.toml

    name = "fastapi-slim"
    
    [tool.mypy]
    strict = true
    
    [[tool.mypy.overrides]]
    module = "fastapi.concurrency"
    warn_unused_ignores = false
    ignore_missing_imports = true
    
    [[tool.mypy.overrides]]
    module = "fastapi.tests.*"
    ignore_missing_imports = true
    check_untyped_defs = true
    
    [[tool.mypy.overrides]]
    module = "docs_src.*"
    disallow_incomplete_defs = false
    disallow_untyped_defs = false
    Registered: 2025-05-25 07:19
    - Last Modified: 2025-02-28 14:07
    - 8.2K bytes
    - Viewed (0)
  6. misc/go_android_exec/main.go

    		if modDir != "" {
    			// In module mode, the user may reasonably expect the entire module
    			// to be present. Copy it over.
    			deviceModDir := path.Join(deviceGopath, "src", modPath)
    			if err := adb("exec-out", "mkdir", "-p", path.Dir(deviceModDir)); err != nil {
    				return 0, err
    			}
    			// We use a single recursive 'adb push' of the module root instead of
    Registered: 2025-05-27 11:13
    - Last Modified: 2023-08-21 17:46
    - 15.3K bytes
    - Viewed (0)
  7. docs/en/docs/tutorial/testing.md

    ///
    
    ## Separating tests
    
    In a real application, you probably would have your tests in a different file.
    
    And your **FastAPI** application might also be composed of several files/modules, etc.
    
    ### **FastAPI** app file
    
    Let's say you have a file structure as described in [Bigger Applications](bigger-applications.md){.internal-link target=_blank}:
    
    ```
    .
    ├── app
    │   ├── __init__.py
    Registered: 2025-05-25 07:19
    - Last Modified: 2024-11-18 02:25
    - 6.4K bytes
    - Viewed (0)
  8. SECURITY.md

    computation
    [**graphs**](https://developers.google.com/machine-learning/glossary/#graph).
    Since models are practically programs that TensorFlow executes, using untrusted
    models or graphs is equivalent to running untrusted code.
    
    If you need to run untrusted models, execute them inside a
    [**sandbox**](https://developers.google.com/code-sandboxing). Memory corruptions
    Registered: 2025-05-27 12:39
    - Last Modified: 2024-10-16 16:10
    - 9.6K bytes
    - Viewed (0)
  9. mvnw.cmd

        IF "%%A"=="wrapperSha256Sum" SET WRAPPER_SHA_256_SUM=%%B
    )
    IF NOT %WRAPPER_SHA_256_SUM%=="" (
        powershell -Command "&{"^
           "Import-Module $PSHOME\Modules\Microsoft.PowerShell.Utility -Function Get-FileHash;"^
           "$hash = (Get-FileHash \"%WRAPPER_JAR%\" -Algorithm SHA256).Hash.ToLower();"^
           "If('%WRAPPER_SHA_256_SUM%' -ne $hash){"^
    Registered: 2025-05-30 12:43
    - Last Modified: 2024-10-14 22:24
    - 7.5K bytes
    - Viewed (0)
  10. apache-maven/src/main/appended-resources/licenses/CDDL+GPLv2-with-classpath-exception.txt

    modules, and to copy and distribute the resulting executable under
    terms of your choice, provided that you also meet, for each linked
    independent module, the terms and conditions of the license of that
    module.  An independent module is a module which is not derived from or
    based on this library.  If you modify this library, you may extend this
    exception to your version of the library, but you are not obligated to
    Registered: 2025-05-24 08:56
    - Last Modified: 2024-05-17 19:14
    - 38.5K bytes
    - Viewed (0)
Back to top