Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 230 for include2 (0.53 sec)

  1. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    type TableOptions struct {
    	TypeMeta `json:",inline"`
    
    	// NoHeaders is only exposed for internal callers. It is not included in our OpenAPI definitions
    	// and may be removed as a field in a future release.
    	NoHeaders bool `json:"-"`
    
    	// includeObject decides whether to include each object along with its columnar information.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (1)
  2. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

    === [5.0] Separation of compile and runtime dependencies when consuming POMs
    
    Since Gradle 1.0, runtime-scoped dependencies have been included in the Java compilation classpath, which has some drawbacks:
    
     * The compilation classpath is much larger than it needs to be, slowing down compilation.
     * The compilation classpath includes runtime-scoped files that do not impact compilation, resulting in unnecessary re-compilation when those files change.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/VersionCatalogExtensionIntegrationTest.groovy

                }
            }
        }
    
        def "included builds use their own libraries extension"() {
            file("included/build.gradle") << """
                plugins {
                    id 'java-library'
                }
    
                group = 'com.acme'
                version = 'zloubi'
    
                dependencies {
                    implementation libs.from.included
                }
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 13:37:31 UTC 2024
    - 77.8K bytes
    - Viewed (0)
  4. fastapi/param_functions.py

                """
            ),
        ] = None,
        include_in_schema: Annotated[
            bool,
            Doc(
                """
                To include (or not) this parameter field in the generated OpenAPI.
                You probably don't need it, but it's available.
    
                This affects the generated OpenAPI (e.g. visible at `/docs`).
                """
            ),
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 62.5K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/Project.java

         *
         * <li>A {@link org.gradle.api.file.FileCollection}. The contents of the collection are included in the returned collection.</li>
         *
         * <li>A {@link org.gradle.api.file.FileTree} or {@link org.gradle.api.file.DirectoryTree}. The contents of the tree are included in the returned collection.</li>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/deadness_analysis.cc

    #include "tensorflow/compiler/jit/deadness_analysis.h"
    
    #include "absl/algorithm/container.h"
    #include "absl/container/flat_hash_map.h"
    #include "absl/container/flat_hash_set.h"
    #include "absl/strings/str_join.h"
    #include "absl/strings/string_view.h"
    #include "tensorflow/compiler/jit/deadness_analysis_internal.h"
    #include "tensorflow/compiler/jit/xla_cluster_util.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

         * All dependencies that this project has, including transitive ones. Contents are lazily populated, so depending on
         * what phases have run dependencies in some scopes won't be included. e.g. if only compile phase has run,
         * dependencies with scope test won't be included.
         *
         * @return {@link Set} &lt; {@link Artifact} &gt;
         * @see #getDependencyArtifacts() to get only direct dependencies
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 17:18:13 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  8. src/go/build/build.go

    type fileEmbed struct {
    	pattern string
    	pos     token.Position
    }
    
    // matchFile determines whether the file with the given name in the given directory
    // should be included in the package being constructed.
    // If the file should be included, matchFile returns a non-nil *fileInfo (and a nil error).
    // Non-nil errors are reserved for unexpected problems.
    //
    // If name denotes a Go program, matchFile reads until the end of the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

            given:
            createDir("plugins") {
                file("settings.gradle.kts") << """
                    include("service-plugin")
                    include("convention-kotlin-plugin")
                    include("convention-groovy-plugin")
                """
                file("service-plugin/build.gradle.kts") << """
                    plugins {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

    include "mlir/Interfaces/InferTypeOpInterface.td"
    include "mlir/Interfaces/LoopLikeInterface.td"
    include "mlir/Interfaces/SideEffectInterfaces.td"
    include "mlir/IR/OpAsmInterface.td"
    include "mlir/IR/OpBase.td"
    include "mlir/IR/SymbolInterfaces.td"
    
    class TF_TensorListInitOp<string mnemonic> : TF_Op<mnemonic, [Pure]> {
      let results = (outs
        TF_VariantTensor:$handle
      );
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
Back to top