Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 148 for MULTIPLE (0.1 sec)

  1. docs/en/docs/tutorial/body-multiple-params.md

    ## Multiple body parameters
    
    In the previous example, the *path operations* would expect a JSON body with the attributes of an `Item`, like:
    
    ```JSON
    {
        "name": "Foo",
        "description": "The pretender",
        "price": 42.0,
        "tax": 3.2
    }
    ```
    
    But you can also declare multiple body parameters, e.g. `item` and `user`:
    
    === "Python 3.10+"
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Jun 09 02:01:51 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/InstrumentingClassLoader.java

     * giving the classloader a chance to rewrite the bytecode of the class.
     * <p>
     * Methods defined in this interface may be called concurrently in multiple threads.
     */
    public interface InstrumentingClassLoader {
        /**
         * This hook is called when the class is being defined in this classloader.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. src/iter/iter.go

    // no longer interested in next values and next has not yet
    // signaled that the sequence is over (with a false boolean return).
    // It is valid to call stop multiple times and when next has
    // already returned false.
    //
    // It is an error to call next or stop from multiple goroutines
    // simultaneously.
    func Pull[V any](seq Seq[V]) (next func() (V, bool), stop func()) {
    	var (
    		v          V
    		ok         bool
    		done       bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:09:28 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/UndeclaredFileInputsIntegrationTest.groovy

    class UndeclaredFileInputsIntegrationTest extends AbstractConfigurationCacheIntegrationTest implements GroovyPluginImplementation {
        @ToBeImplemented("reporting multiple consumers per input is not implemented yet")
        def "reports multiple consumers of a single file in #accessKind access"() {
            def configurationCache = newConfigurationCacheFixture()
    
            UndeclaredFileAccess access = inputRead(testDirectory)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  5. pkg/controller/job/success_policy_test.go

    			succeededIndexes:       orderedIntervals{{0, 2}},
    			successPolicy: &batch.SuccessPolicy{
    				Rules: []batch.SuccessPolicyRule{{
    					SucceededCount: ptr.To[int32](4),
    				}},
    			},
    		},
    		"multiple rules; rules.succeededIndexes is specified; succeededIndexes met one of rules": {
    			enableJobSuccessPolicy: true,
    			completions:            10,
    			succeededIndexes:       orderedIntervals{{0, 2}, {4, 7}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  6. pkg/workloadapi/workload.proto

      // TODO: support this field
      string hostname = 3;
      // Address represents the addresses the service can be reached at.
      // There may be multiple addresses for a single service if it resides in multiple networks,
      // multiple clusters, and/or if it's dual stack (TODO: support dual stack).
      // For a headless kubernetes service, this list will be empty.
      repeated NetworkAddress addresses = 4;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  7. pilot/pkg/model/gateway.go

    							http3AdvertisingRoutes.Insert(routeName)
    
    							if mergedQUICServers[serverPort] == nil {
    								// This should be treated like non-passthrough HTTPS case. There will be multiple filter
    								// chains, multiple routes per server port. So just like in TLS server case we do not
    								// track route name here. Instead, TLS server info is used (it is fine for now because
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsCompositeBuildIntegrationTest.groovy

     */
    
    package org.gradle.internal.cc.impl.isolated
    
    class IsolatedProjectsCompositeBuildIntegrationTest extends AbstractIsolatedProjectsIntegrationTest {
        def "can build libraries composed from multiple builds"() {
            settingsFile << """
                includeBuild("libs")
            """
            file("libs/settings.gradle") << """
                include("a")
            """
            file("libs/a/build.gradle") << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheStateStore.kt

         * Writes some value to zero or more state files.
         */
        fun <T> useForStore(action: (ConfigurationCacheRepository.Layout) -> T): T
    
        /**
         * Creates a new [ValueStore] that can be used to load and store multiple values.
         */
        fun <T> createValueStore(
            stateType: StateType,
            writer: ValueStore.Writer<T>,
            reader: ValueStore.Reader<T>
        ): ValueStore<T>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  10. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/service/scopes/ServiceScope.java

     * <p>
     * Services are visible to other services in the same scope and descendent scopes.
     * Services are not visible to services in ancestor scopes.
     * <p>
     * When a service is defined in multiple scopes, the highest scope determines the visibility.
     * The additional instances of the service in lower scopes "override" the instance from the parent
     * for their scope and its children.
     *
     * @see Scope
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.7K bytes
    - Viewed (0)
Back to top