Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 206 for includes_ (0.16 sec)

  1. src/cmd/go/internal/modload/load.go

    // 	- the package is in the main module and the "all" pattern is requested
    // 	  (because the "all" pattern includes the dependencies of tests in the main
    // 	  module), or
    // 	- the package is in "all" and the definition of "all" we are using includes
    // 	  dependencies of tests (as is the case in Go ≤1.15).
    //
    // After all available packages have been loaded, we examine the results to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  2. pkg/kubelet/eviction/helpers.go

    	// then we assume it is just a separate imagefs
    	if withImageFs && !imageContainerSplitFs {
    		// with an imagefs, nodefs pod rank func for eviction only includes logs and local volumes
    		signalToRankFunc[evictionapi.SignalNodeFsAvailable] = rankDiskPressureFunc([]fsStatsType{fsStatsLogs, fsStatsLocalVolumeSource}, v1.ResourceEphemeralStorage)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 53.6K 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. 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)
  5. 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)
  6. 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)
  7. src/cmd/link/internal/ld/elf.go

     * $FreeBSD: src/sys/alpha/include/elf.h,v 1.14 2003/09/25 01:10:22 peter Exp $
     * $FreeBSD: src/sys/amd64/include/elf.h,v 1.18 2004/08/03 08:21:48 dfr Exp $
     * $FreeBSD: src/sys/arm/include/elf.h,v 1.5.2.1 2006/06/30 21:42:52 cognet Exp $
     * $FreeBSD: src/sys/i386/include/elf.h,v 1.16 2004/08/02 19:12:17 dfr Exp $
     * $FreeBSD: src/sys/powerpc/include/elf.h,v 1.7 2004/11/02 09:47:01 ssouhlal Exp $
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  8. 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)
  9. pilot/pkg/networking/core/httproute_test.go

    		},
    
    		{
    			name:                  "sidecar config with allow any and virtual service includes non existing service",
    			routeName:             "80",
    			sidecarConfig:         sidecarConfigWithAllowAny,
    			virtualServiceConfigs: []*config.Config{&virtualService6},
    			expectedHosts: map[string]map[string]bool{
    				// does not include `match-no-service`
    				"test-private.com:80": {
    					"test-private.com": true, "9.9.9.9": true,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  10. 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)
Back to top