Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 983 for takes (0.13 sec)

  1. tests/integration/pilot/proxyconfig/proxyconfig_test.go

    						"B": "2",
    					},
    				},
    				{
    					"global takes precedence over default config",
    					"",
    					"",
    					[]proxyConfigInstance{
    						newProxyConfig("global", "istio-system", nil, map[string]string{
    							"A": "3",
    						}),
    					},
    					map[string]string{
    						"A": "3",
    						"B": "2",
    					},
    				},
    				{
    					"pod annotation takes precedence over namespace",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  2. docs/en/docs/reference/request.md

    You can import it directly from `fastapi`:
    
    ```python
    from fastapi import Request
    ```
    
    !!! tip
        When you want to define dependencies that should be compatible with both HTTP and WebSockets, you can define a parameter that takes an `HTTPConnection` instead of a `Request` or a `WebSocket`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 516 bytes
    - Viewed (0)
  3. docs/en/docs/tutorial/dependencies/index.md

    And that function takes parameters in the same way that *path operation functions* do.
    
    !!! tip
        You'll see what other "things", apart from functions, can be used as dependencies in the next chapter.
    
    Whenever a new request arrives, **FastAPI** will take care of:
    
    * Calling your dependency ("dependable") function with the correct parameters.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  4. platforms/core-execution/execution/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.api-java")
    }
    
    description = "Execution engine that takes a unit of work and makes it happen"
    
    dependencies {
        api(libs.guava)
        api(libs.jsr305)
        api(libs.slf4jApi)
    
        api(projects.concurrent)
        api(projects.stdlibJavaExtensions)
        api(projects.serialization)
        compileOnly(libs.errorProneAnnotations)
        api(project(":base-services"))
        api(project(":build-cache"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/optimizing-performance/inspect.adoc

    If your `buildSrc` phase takes too much time, consider breaking it out into a separate project.
    You can then add that project's JAR artifact as a dependency.
    
    The settings file rarely contains code with significant I/O or computation.
    If you find that Gradle takes a long time to process it, use more traditional profiling methods,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/isolated/IsolationScheme.java

            this.noParamsType = noParamsType;
        }
    
        /**
         * Determines the parameters type for the given implementation.
         *
         * @return The parameters type, or {@code null} when the implementation takes no parameters.
         */
        @Nullable
        public <T extends IMPLEMENTATION, P extends PARAMS> Class<P> parameterTypeFor(Class<T> implementationType) {
            return parameterTypeFor(implementationType, 0);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  7. src/reflect/iter.go

    			if !yield(ValueOf(i)) {
    				return
    			}
    		}
    	}
    }
    
    // Seq returns an iter.Seq[Value] that loops over the elements of v.
    // If v's kind is Func, it must be a function that has no results and
    // that takes a single argument of type func(T) bool for some type T.
    // If v's kind is Pointer, the pointer element type must have kind Array.
    // Otherwise v's kind must be Int, Int8, Int16, Int32, Int64,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 13:40:11 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/Comparators.java

       * // returns {"foo", "quux"}
       * }</pre>
       *
       * <p>This {@code Collector} uses O(k) memory and takes expected time O(n) (worst-case O(n log
       * k)), as opposed to e.g. {@code Stream.sorted(comparator).limit(k)}, which currently takes O(n
       * log n) time and O(n) space.
       *
       * @throws IllegalArgumentException if {@code k < 0}
       * @since 33.2.0 (available since 22.0 in guava-jre)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  9. src/math/big/floatmarsh.go

    		// - if shorter, only encode the words present
    		// - if longer, cut off unused words when encoding in bytes
    		//   (in practice, this should never happen since rounding
    		//   takes care of it, but be safe and do it always)
    		if len(x.mant) < n {
    			n = len(x.mant)
    		}
    		// len(x.mant) >= n
    		sz += 4 + n*_S // exp + mant
    	}
    	buf := make([]byte, sz)
    
    	buf[0] = floatGobVersion
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:31:58 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  10. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/mappingToJvm/ReflectionToObjectConverter.kt

     */
    
    package org.gradle.internal.declarativedsl.mappingToJvm
    
    import org.gradle.declarative.dsl.schema.DataProperty
    import org.gradle.internal.declarativedsl.objectGraph.ObjectReflection
    
    
    /**
     * Takes a given {@link ObjectReflection} and applies its operations to the underlying object graph.
     */
    interface ReflectionToObjectConverter {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 14:27:23 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top