Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,067 for determin (0.15 sec)

  1. platforms/jvm/scala/src/main/java/org/gradle/api/tasks/ScalaRuntime.java

        }
    
        /**
         * Determines the version of a Scala Jar file (scala-compiler, scala-library,
         * scala-jdbc, etc.). If the version cannot be determined, or the file is not a Scala
         * Jar file, {@code null} is returned.
         *
         * <p>Implementation note: The version is determined by parsing the file name, which
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/cli-runtime/pkg/resource/fallback_query_param_verifier.go

    	}
    }
    
    // HasSupport returns an error if the passed GVK does not support the
    // query param (fieldValidation), as determined by the primary and
    // secondary OpenAPI endpoints. The primary endoint is checked first,
    // but if there is an error retrieving the OpenAPI V3 document, the
    // secondary attempts to determine support. If the GVK supports the query param,
    // nil is returned.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 10 19:13:54 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  3. src/cmd/internal/pkgpath/pkgpath.go

    // different gccgo/GoLLVM versions, which is why this returns a function
    // that does the conversion appropriate for the compiler in use.
    func ToSymbolFunc(cmd, tmpdir string) (func(string) string, error) {
    	// To determine the scheme used by cmd, we compile a small
    	// file and examine the assembly code. Older versions of gccgo
    	// use a simple mangling scheme where there can be collisions
    	// between packages whose paths are different but mangle to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 20 02:13:02 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/samples/build-organization/composite-builds/declared-substitution/README.adoc

    == Declaring the dependencies substituted by an included build
    
    By default, Gradle will configure each included build in order to determine the dependencies it can provide. The algorithm for doing this is very simple: Gradle will inspect the `group` and `name` for the projects in the included build, and substitute project dependencies for any matching external dependency.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  5. pkg/volume/util/fsquota/common/quota_common_linux.go

    	// directory, determined by the implementation's quota-based
    	// mechanism.  If it is unable to do so using that mechanism,
    	// it should return an error and allow higher layers to
    	// enumerate the directory.
    	GetConsumption(path string, id QuotaID) (int64, error)
    
    	// GetInodes returns the number of inodes used by the
    	// directory, determined by the implementation's quota-based
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 28 06:09:31 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  6. platforms/software/antlr/src/main/java/org/gradle/api/plugins/antlr/internal/antlr2/MetadataExtracter.java

            }
    
            // now, do our processing using the antlr preprocessor results whenever possible.
            XRef xref = new XRef(hierarchy);
            for (File grammarFileFile : sources) {
    
                // determine the package name :(
                String grammarPackageName = getPackageName(grammarFileFile);
    
                final String grammarFilePath = grammarFileFile.getPath();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 14:52:10 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  7. pkg/bootstrap/platform/platform.go

    	// instance, structured as a map for label name to values.
    	Labels() map[string]string
    
    	// IsKubernetes determines if running on Kubernetes
    	IsKubernetes() bool
    }
    
    // Unknown provides a default platform environment for cases in which the platform
    // on which the bootstrapping is taking place cannot be determined.
    type Unknown struct{}
    
    // Metadata returns an empty map.
    func (*Unknown) Metadata() map[string]string {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 07 20:19:01 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtPsiTypeProvider.kt

         *
         * Note: [PsiType] is JVM conception, so this method will return `null` for non-JVM platforms.
         *
         * @receiver type to convert
         *
         * @param useSitePosition is used to determine if the given [KaType] needs to be approximated.
         * For instance, if the given type is local yet available in the same scope of use site,
         * we can still use such a local type.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/endpoints/groupversion.go

    	MetaGroupVersion *schema.GroupVersion
    
    	// RootScopedKinds are the root scoped kinds for the primary GroupVersion
    	RootScopedKinds sets.String
    
    	// Serializer is used to determine how to convert responses from API methods into bytes to send over
    	// the wire.
    	Serializer     runtime.NegotiatedSerializer
    	ParameterCodec runtime.ParameterCodec
    
    	Typer                 runtime.ObjectTyper
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  10. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/profile/JdkVersionProfileActivator.java

            if (version == null || version.isEmpty()) {
                problems.add(
                        BuilderProblem.Severity.ERROR,
                        ModelProblem.Version.BASE,
                        "Failed to determine Java version for profile " + profile.getId(),
                        activation.getLocation("jdk"));
                return false;
            }
            try {
                return isJavaVersionCompatible(jdk, version);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 06 16:51:39 UTC 2024
    - 6.6K bytes
    - Viewed (0)
Back to top