Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 347 for JSpecify (0.17 sec)

  1. android/guava-testlib/src/com/google/common/testing/AbstractPackageSanityTests.java

     *
     * <p>{@link #setDefault} allows subclasses to specify default values for types.
     *
     * <p>This class incurs IO because it scans the classpath and reads classpath resources.
     *
     * @author Ben Yu
     * @since 14.0
     */
    // TODO: Switch to JUnit 4 and use @Parameterized and @BeforeClass
    // Note: @Test annotations are deliberate, as some subclasses specify @RunWith(JUnit4).
    @GwtIncompatible
    @J2ktIncompatible
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/Type.java

         * the dependency will be unconditionally placed on the specified type of path
         * and no heuristic rule will be involved.
         *
         * <p>It is nevertheless common to specify two or more types of path. For example,
         * a Java library may be compatible with either the class-path or the module-path,
         * and the user may have provided no instruction about which type to use. In such
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  3. helm/minio/values.yaml

      ##   GKE, AWS & OpenStack)
      ##
      ## Storage class of PV to bind. By default it looks for standard storage class.
      ## If the PV uses a different storage class, specify that here.
      storageClass: ""
      volumeName: ""
      accessMode: ReadWriteOnce
      size: 500Gi
    
      ## If subPath is set mount a sub folder of a volume instead of the root of the volume.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Apr 28 10:14:37 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  4. docs/en/docs/advanced/additional-responses.md

    ```Python hl_lines="19-24  28"
    {!../../../docs_src/additional_responses/tutorial002.py!}
    ```
    
    !!! note
        Notice that you have to return the image using a `FileResponse` directly.
    
    !!! info
        Unless you specify a different media type explicitly in your `responses` parameter, FastAPI will assume the response has the same media type as the main response class (default `application/json`).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  5. cmd/kubelet/app/options/options.go

    	// Omit this flag to use the combination of built-in default configuration values and flags.
    	KubeletConfigFile string
    
    	// kubeletDropinConfigDirectory is a path to a directory to specify dropins allows the user to optionally specify
    	// additional configs to overwrite what is provided by default and in the KubeletConfigFile flag
    	KubeletDropinConfigDirectory string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:05 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  6. guava-testlib/src/com/google/common/testing/AbstractPackageSanityTests.java

     *
     * <p>{@link #setDefault} allows subclasses to specify default values for types.
     *
     * <p>This class incurs IO because it scans the classpath and reads classpath resources.
     *
     * @author Ben Yu
     * @since 14.0
     */
    // TODO: Switch to JUnit 4 and use @Parameterized and @BeforeClass
    // Note: @Test annotations are deliberate, as some subclasses specify @RunWith(JUnit4).
    @GwtIncompatible
    @J2ktIncompatible
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  7. pkg/test/framework/suite.go

    	exitCodeSetupError = -2
    )
    
    var (
    	rt   *runtime
    	rtMu sync.Mutex
    
    	// Well-known paths which are stripped when generating test IDs.
    	// Note: Order matters! Always specify the most specific directory first.
    	wellKnownPaths = mustCompileAll(
    		// This allows us to trim test IDs on the istio.io/istio.io repo.
    		".*/istio.io/istio.io/",
    
    		// These allow us to trim test IDs on istio.io/istio repo.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  8. pilot/pkg/xds/workload.go

    // This means subscribing to a VIP may end up pushing many resources of different name than the request.
    // On-demand clients are expected to handle this (for wildcard, this is not applicable, as they don't specify any resources at all).
    func (e WorkloadGenerator) GenerateDeltas(
    	proxy *model.Proxy,
    	req *model.PushRequest,
    	w *model.WatchedResource,
    ) (model.Resources, model.DeletedResources, model.XdsLogDetails, bool, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 14:14:30 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/reference/command_line_interface.adoc

    ----
    $ gradle :myTask
    ----
    
    This will run the single `myTask` and all of its <<tutorial_using_tasks.adoc#sec:task_dependencies,dependencies>>.
    
    [[sec:disambiguate_task_options_from_built_in_options]]
    === Specify options for tasks
    To pass an option to a task, prefix the option name with `--` after the task name:
    
    ----
    $ gradle exampleTask --exampleOption=exampleValue
    ----
    
    ==== Disambiguate task options from built-in options
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf_with_tf2xla.cc

      LogicalResult matchAndRewrite(
          Operation* op, ArrayRef<Value> operands,
          ConversionPatternRewriter& rewriter) const override {
        // This pattern is a conversion pattern because we want to specify a type
        // converter. However, this pattern still uses the original op's operands
        // while creating the ops so make sure there aren't any type changes between
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 9.7K bytes
    - Viewed (0)
Back to top