Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 181 for unqualified (0.34 sec)

  1. pkg/controlplane/apiserver/apis.go

    	// The order here is preserved in discovery.
    	// If resources with identical names exist in more than one of these groups (e.g. "deployments.apps"" and "deployments.extensions"),
    	// the order of this list determines which group an unqualified resource name (e.g. "deployments") should prefer.
    	// This priority order is used for local discovery, but it ends up aggregated in `k8s.io/kubernetes/cmd/kube-apiserver/app/aggregator.go
    	// with specific priorities.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:50:04 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  2. src/os/exec/dot_test.go

    		// Set PATH to include an explicit directory that contains a completely
    		// independent executable that happens to have the same name as an
    		// executable in ".". If "." is included implicitly, looking up the
    		// (unqualified) executable name will return ErrDot; otherwise, the
    		// executable in "." should have no effect and the lookup should
    		// unambiguously resolve to the directory in PATH.
    
    		dir := t.TempDir()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 18:19:21 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/Version.java

         * e.g. 1.2.3-beta-4 returns 1.2.3, or 7.0.12beta5 returns 7.0.12.
         */
        Version getBaseVersion();
    
        /**
         * Returns true if this version is qualified in any way. For example, 1.2.3 is not qualified, 1.2-beta-3 is.
         */
        boolean isQualified();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/validation/DefaultPluginId.java

            this.value = value;
        }
    
        private boolean isQualified() {
            return value.contains(SEPARATOR);
        }
    
        @Nullable
        public String getNamespace() {
            return isQualified() ? value.substring(0, value.lastIndexOf(SEPARATOR)) : null;
        }
    
        public String getName() {
            return isQualified() ? value.substring(value.lastIndexOf(SEPARATOR) + 1) : value;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/TestSpec.java

         * <p>
         * The target class should be selected with its fully-qualified name.
         *
         * @param cls The fully-qualified name of the target class.
         * @return this
         */
        TestSpec includeClass(String cls);
    
        /**
         * Adds the target test classes to the test execution.
         *
         * @see #includeClass(String)
         * @param classes The fully-qualified name of the target classes.
         * @return this
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/configuration/ImportsReader.java

         * provides a direct mapping from each simple name to the qualified name of the class to use.
         */
        String[] getImportPackages();
    
        /**
         * Returns a mapping from simple to qualified class name, derived from
         * the packages returned by {@link #getImportPackages()}. For historical reasons,
         * some simple name match multiple qualified names. In those cases the first match
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/CompilationOutputsFixture.groovy

            assert deleted == asSet(classNames)
        }
    
        private Set<String> getChangedFileNames(boolean qualified = false) {
            // Get all of the files that do not have a zero last modified timestamp
            return getFiles(qualified) { it.lastModified() > 0 }
        }
    
        private Set<String> getFiles(boolean qualified = false, Predicate<File> criteria) {
            // Get all of the files that do not have a zero last modified timestamp
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/aot/embedded_protocol_buffers.h

      // or DSO the generated object file will be linked into.
      string symbol_prefix;
    
      // `qualified_cpp_protobuf_name` is a qualified ("qualified" as in C++
      // namespace qualified) protocol buffer name.  This is only used in
      // CPPShim::expression so relatively qualified names are fine as long as
      // they're valid wherever CPPShim::expression is emitted.
      string qualified_cpp_protobuf_name;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 10 18:19:50 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/VersionParserTest.groovy

        def "base version includes the first . separated parts"() {
            expect:
            def version = parse(versionStr)
            version.baseVersion == parse(baseStr)
            version.qualified == qualified
    
            where:
            versionStr        | baseStr     | qualified
            "1.2.3"           | "1.2.3"     | false
            "1.2-3"           | "1.2"       | true
            "1.2-beta_3+0000" | "1.2"       | true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/cel/mutation/typeprovider.go

    // to its underlying type provider.
    func (p *TypeProvider) EnumValue(enumName string) ref.Val {
    	return p.underlyingTypeProvider.EnumValue(enumName)
    }
    
    // FindIdent takes a qualified identifier name and returns a ref.ObjectVal if one exists.
    // This TypeProvider does not have special handling for FindIdent and thus directly delegate
    // to its underlying type provider.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 21:02:36 UTC 2024
    - 3.7K bytes
    - Viewed (0)
Back to top