Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 731 for declareNS (0.16 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  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. 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)
  7. 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)
  8. docs/en/docs/advanced/response-change-status-code.md

    And if you declared a `response_model`, it will still be used to filter and convert the object you returned.
    
    **FastAPI** will use that *temporal* response to extract the status code (also cookies and headers), and will put them in the final response that contains the value you returned, filtered by any `response_model`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jan 11 16:31:18 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  9. docs/en/docs/tutorial/body-multiple-params.md

    You can also declare singular values to be received as part of the body.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Jun 09 02:01:51 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  10. src/internal/types/testdata/check/vardecl.go

    		var x2 /* ERROR "declared and not used" */ int
    		x1 = 1
    		(x2) = 2
    
    		y1 /* ERROR "declared and not used" */ := 1
    		y2 /* ERROR "declared and not used" */ := 2
    		y1 = 1
    		(y1) = 2
    	}
    
    	if x /* ERROR "declared and not used" */ := 0; a < b {}
    
    	switch x /* ERROR "declared and not used" */, y := 0, 1; a {
    	case 0:
    		_ = y
    	case 1:
    		x /* ERROR "declared and not used" */ := 0
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 5.8K bytes
    - Viewed (0)
Back to top