Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 852 for declareNS (0.3 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/artifacts/repositories/ExclusiveContentRepository.java

     * source for an artifact, independently of the others.
     *
     * This means that if a repository declares an include, other repositories will
     * automatically exclude it.
     *
     * @since 6.2
     */
    public interface ExclusiveContentRepository {
        /**
         * Declares the repository
         * @param repository the repository for which we declare exclusive content
         * @return this repository descriptor
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 05 14:58:55 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/troubleshooting/version_catalog_problems.adoc

    == Undefined version reference
    
    This error indicates that your catalog declares a library which references a non-existing version.
    When you use version references in a catalog, the version reference must point to an existing version alias.
    
    To fix this, you must either:
    
    - fix the version reference to use one of the versions declared in the catalog
    - or declare a new version corresponding to the reference you want to use in the catalog
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jan 13 21:49:09 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  3. docs/fr/docs/advanced/path-operation-advanced-configuration.md

    ```
    
    ## Réponses supplémentaires
    
    Vous avez probablement vu comment déclarer le `response_model` et le `status_code` pour une *opération de chemin*.
    
    Cela définit les métadonnées sur la réponse principale d'une *opération de chemin*.
    
    Vous pouvez également déclarer des réponses supplémentaires avec leurs modèles, codes de statut, etc.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 8K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/init_scripts.adoc

    [[sec:custom_classpath]]
    == Adding external dependencies
    
    Init scripts can also declare dependencies with the `initscript()` method, passing in a closure that declares the init script classpath.
    
    Declaring external dependencies for an init script:
    
    ====
    include::sample[dir="snippets/initScripts/externalDependency/kotlin",files="init.gradle.kts[tags=declare-classpath]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  5. test/typeswitch2b.go

    // Does not compile.
    
    package main
    
    func notused(x interface{}) {
    	// The first t is in a different scope than the 2nd t; it cannot
    	// be accessed (=> declared and not used error); but it is legal
    	// to declare it.
    	switch t := 0; t := x.(type) { // ERROR "declared and not used"
    	case int:
    		_ = t // this is using the t of "t := x.(type)"
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 21:10:19 UTC 2022
    - 598 bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/main/java/org/gradle/api/plugins/jvm/internal/JvmFeatureInternal.java

         * Dependencies declared on this configuration are present during compilation
         * and runtime, and are exposed as part of the feature's API variant.
         *
         * @return null if {@link #withApi()} has not been called.
         */
        @Nullable
        Configuration getApiConfiguration();
    
        /**
         * Gets the dependency configuration for which to declare compile-only API dependencies.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  7. src/internal/types/testdata/examples/methods.go

    // receiver type acts as an implicit declaration of the type parameters
    // for the receiver type. In the example below, method m1 on type T1 has
    // the receiver type T1[A] which declares the type parameter A for use
    // with this method. That is, within the method m1, A stands for the
    // actual type argument provided to an instantiated T1.
    func (t T1[A]) m1() A { return t.a }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 5K bytes
    - Viewed (0)
  8. tensorflow/c/experimental/saved_model/README.md

    ## saved_model/internal
    
    `saved_model/internal` is the "glue" between the C API and the internal C++
    implementation.
    
    Its role is to:
    
    1. implement the C API functions declared in `saved_model/public`
    
    2. define the C API types declared in `saved_model/public`
    
    The files fulfilling 1. are named `*.cc` (eg: `concrete_function.cc`), while
    the files fulfilling 2. are `*type.h` (eg: `concrete_function_type.h`).
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 20 17:00:01 UTC 2020
    - 2K bytes
    - Viewed (0)
  9. pkg/config/protocol/instance.go

    	TLS Instance = "TLS"
    	// UDP declares that the port uses UDP.
    	// Note that UDP protocol is not currently supported by the proxy.
    	UDP Instance = "UDP"
    	// Mongo declares that the port carries MongoDB traffic.
    	Mongo Instance = "Mongo"
    	// Redis declares that the port carries Redis traffic.
    	Redis Instance = "Redis"
    	// MySQL declares that the port carries MySQL traffic.
    	MySQL Instance = "MySQL"
    	// HBONE declares that the port carries HBONE traffic.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 01 02:46:15 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/interface.go

    }
    
    // OptionalVariableDeclarations declares which optional CEL variables
    // are declared for an expression.
    type OptionalVariableDeclarations struct {
    	// HasParams specifies if the "params" variable is declared.
    	// The "params" variable may still be bound to "null" when declared.
    	HasParams bool
    	// HasAuthorizer specifies if the "authorizer" and "authorizer.requestResource"
    	// variables are declared. When declared, the authorizer variables are
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 3.9K bytes
    - Viewed (0)
Back to top