Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 603 for Requirements (0.22 sec)

  1. platforms/core-execution/workers/src/main/java/org/gradle/workers/WorkerExecutor.java

         *
         * @since 5.6
         */
        WorkQueue noIsolation(Action<? super WorkerSpec> action);
    
        /**
         * Creates a {@link WorkQueue} to submit work for asynchronous execution with an isolated classloader and the requirements specified in the supplied {@link ClassLoaderWorkerSpec}.
         *
         * @since 5.6
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 4K bytes
    - Viewed (0)
  2. ci/official/requirements_updater/updater.sh

    # limitations under the License.
    # ==============================================================================
    
    # script to run pip-compile for each requirement.
    # if there is a change in requirements.in then all lock files will be updated
    # accordingly
    
    # All commands run relative to this directory
    cd "$(dirname "${BASH_SOURCE[0]}")"
    
    mv BUILD.bazel BUILD
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 15 15:05:45 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/toolchain/DefaultToolchain.java

            provides.put(type, matcher);
        }
    
        @Override
        public boolean matchesRequirements(Map<String, String> requirements) {
            for (Map.Entry<String, String> requirement : requirements.entrySet()) {
                String key = requirement.getKey();
    
                RequirementMatcher matcher = provides.get(key);
    
                if (matcher == null) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Sep 22 09:07:17 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  4. .github/bot_config.yml

         * If error still persists then, apparently your CPU model does not support AVX instruction sets.
           * Refer [hardware requirements](https://www.tensorflow.org/install/pip#hardware-requirements).
       
       -----------------------------------------------------------------------------------------------
       
       **2. Installing **TensorFlow** (TF) CPU prebuilt binaries**
       
       
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 03 04:55:57 UTC 2024
    - 4K bytes
    - Viewed (0)
  5. src/sort/slice.go

    //
    // The sort is not guaranteed to be stable: equal elements
    // may be reversed from their original order.
    // For a stable sort, use [SliceStable].
    //
    // The less function must satisfy the same requirements as
    // the Interface type's Less method.
    //
    // Note: in many situations, the newer [slices.SortFunc] function is more
    // ergonomic and runs faster.
    func Slice(x any, less func(i, j int) bool) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 16:40:32 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/internal/modes/encode.go

    		Sort: cbor.SortBytewiseLexical,
    
    		// CBOR supports distinct types for IEEE-754 float16, float32, and float64. Store
    		// floats in the smallest width that preserves value so that equivalent float32 and
    		// float64 values encode to identical bytes, as they do in a JSON
    		// encoding. Satisfies one of the "Core Deterministic Encoding Requirements".
    		ShortestFloat: cbor.ShortestFloat16,
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 15 15:31:10 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/integTest/groovy/org/gradle/jvm/toolchain/JavaToolchainDownloadSpiKotlinIntegrationTest.groovy

                   .assertHasCause("Failed to calculate the value of task ':compileJava' property 'javaCompiler'.")
                   .assertHasCause("Cannot find a Java installation on your machine matching this tasks requirements: {languageVersion=99, vendor=matching('exotic'), implementation=vendor-specific} for")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 10:53:57 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  8. platforms/core-execution/workers/src/main/java/org/gradle/workers/ClassLoaderWorkerSpec.java

     * limitations under the License.
     */
    
    package org.gradle.workers;
    
    import org.gradle.api.file.ConfigurableFileCollection;
    
    /**
     * A worker spec providing the requirements of an isolated classpath.
     *
     * @since 5.6
     */
    public interface ClassLoaderWorkerSpec extends WorkerSpec {
        /**
         * Gets the classpath associated with the worker.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 1K bytes
    - Viewed (0)
  9. src/README.vendor

    This is necessary to avoid compiler and linker conflicts. Adding
    a "vendor/" prefix also maintains the invariant that standard
    library packages begin with a dotless path element.
    
    The module requirements of std and cmd do not influence version
    selection in other modules. They are only considered when running
    module commands like 'go get' and 'go mod vendor' from a directory
    in GOROOT/src.
    
    Maintaining vendor directories
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  10. .teamcity/src/main/kotlin/promotion/SanityCheck.kt

            }
        }
    
        triggers {
            vcs {
                branchFilter = ""
                enabled = VersionedSettingsBranch.fromDslContext().enableVcsTriggers
            }
        }
    
        requirements {
            requiresOs(Os.LINUX)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 05 00:08:14 UTC 2023
    - 977 bytes
    - Viewed (0)
Back to top