Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 478 for prefers (0.43 sec)

  1. staging/src/k8s.io/apimachinery/pkg/runtime/scheme_test.go

    			out: &runtimetesting.ExternalTestType1{MyWeirdCustomEmbeddedVersionKindField: runtimetesting.MyWeirdCustomEmbeddedVersionKindField{APIVersion: "custom/v1", ObjectKind: "TestType3"}, A: "test"},
    		},
    		// prefers the best match
    		{
    			scheme: GetTestScheme(),
    			in:     &runtimetesting.ExternalTestType1{A: "test"},
    			gv:     schema.GroupVersions{{Version: runtime.APIVersionInternal}, {Version: "v1"}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 38.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/cli-runtime/pkg/resource/builder.go

    // of resource.
    func (b *Builder) SingleResourceType() *Builder {
    	b.singleResourceType = true
    	return b
    }
    
    // mappingFor returns the RESTMapping for the Kind given, or the Kind referenced by the resource.
    // Prefers a fully specified GroupVersionResource match. If one is not found, we match on a fully
    // specified GroupVersionKind, or fallback to a match on GroupKind.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 03 10:17:56 UTC 2023
    - 37.2K bytes
    - Viewed (0)
  3. src/regexp/regexp.go

    //
    // In the template, a variable is denoted by a substring of the form
    // $name or ${name}, where name is a non-empty sequence of letters,
    // digits, and underscores. A purely numeric name like $1 refers to
    // the submatch with the corresponding index; other names refer to
    // capturing parentheses named with the (?P<name>...) syntax. A
    // reference to an out of range or unmatched index or a name that is not
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:50:01 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/declaring_repositories.adoc

    Instead, Gradle will dynamically generate a module descriptor (without any dependency information) based on the presence of artifacts.
    
    [NOTE]
    ====
    As Gradle prefers to use modules whose descriptor has been created from real meta-data rather than being generated, flat directory repositories cannot be used to override artifacts with real meta-data from other repositories declared in the build.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 43.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/rulegen.go

    		if argPos != "" {
    			// Keep the argument in preference to the parent, as the
    			// argument is normally earlier in program flow.
    			// Keep the argument in preference to an earlier argument,
    			// as that prefers the memory argument which is also earlier
    			// in the program flow.
    			pos = argPos
    		}
    	}
    
    	return pos, checkOp
    }
    
    func genResult(rr *RuleRewrite, arch arch, result, pos string) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 02 22:09:21 UTC 2023
    - 48.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_5.adoc

    Plugins that extend these types and override methods from the base class may no longer behave the same way.
    Internally, `AbstractArchiveTask` prefers the new properties and methods like `getArchiveName()` are façades over the new properties.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 47.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf-prefer-tf2xla.mlir

    // RUN: tf-opt "-xla-legalize-tf=device-type=XLA_CPU_JIT legalize-chlo=false use-tf2xla-fallback=true prefer-tf2xla=true" %s | FileCheck %s
    // RUN: tf-opt "-xla-legalize-tf=device-type=XLA_CPU_JIT legalize-chlo=false prefer-tf2xla=true" %s | FileCheck --check-prefix NOFALLBACK %s
    
    module attributes {tf.versions = {bad_consumers = [], min_consumer = 0 : i32, producer = 268 : i32}} {
    
    // CHECK-LABEL: @abs
    func.func @abs(%arg0: tensor<2xf32>) -> tensor<2xf32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 15:32:52 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  8. docs/en/docs/tutorial/dependencies/classes-as-dependencies.md

        ```
    
    === "Python 3.10+ non-Annotated"
    
        !!! tip
            Prefer to use the `Annotated` version if possible.
    
        ```Python hl_lines="7"
        {!> ../../../docs_src/dependencies/tutorial001_py310.py!}
        ```
    
    === "Python 3.8+ non-Annotated"
    
        !!! tip
            Prefer to use the `Annotated` version if possible.
    
        ```Python hl_lines="11"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/resolve/scenarios/VersionRangeResolveTestScenarios.groovy

        public static final PREFER_11 = prefer(11)
        public static final PREFER_12 = prefer(12)
        public static final PREFER_13 = prefer(13)
        public static final PREFER_7_8 = prefer(7, 8)
        public static final PREFER_10_11 = prefer(10, 11)
        public static final PREFER_10_12 = prefer(10, 12)
        public static final PREFER_10_14 = prefer(10, 14)
        public static final PREFER_14_16 = prefer(14, 16)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 27.8K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/catalog/parser/TomlCatalogFileParser.java

                require = richVersion.require;
                prefer = richVersion.prefer;
                strictly = richVersion.strictly;
            } else if (version instanceof TomlTable) {
                TomlTable versionTable = (TomlTable) version;
                require = notEmpty(versionTable.getString("require"), "required version", alias);
                prefer = notEmpty(versionTable.getString("prefer"), "preferred version", alias);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:05 UTC 2024
    - 29.4K bytes
    - Viewed (0)
Back to top