Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 113 for Implementation (0.56 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

    // included by any test program that uses Google Test.
    //
    // IMPORTANT NOTE: Due to limitation of the C++ language, we have to
    // leave some internal implementation details in this header file.
    // They are clearly marked by comments like this:
    //
    //   // INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM.
    //
    // Such code is NOT meant to be used by a user directly, and is subject
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

        id("java-library")
    }
    
    dependencies {
        implementation(files("bar.txt"))
        implementation(project(":foo"))
    }
    
    tasks.register("resolveDeprecated") {
        // Wire build dependencies (calls getBuildDependencies)
        dependsOn(configurations["implementation"].dependencies.toSet())
    
        // Resolve dependencies
        doLast {
            configurations["implementation"].dependencies.withType<FileCollectionDependency>() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

    import java.util.concurrent.locks.LockSupport;
    import java.util.logging.Level;
    import javax.annotation.CheckForNull;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * An abstract implementation of {@link ListenableFuture}, intended for advanced users only. More
     * common ways to create a {@code ListenableFuture} include instantiating a {@link SettableFuture},
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (0)
  4. guava/src/com/google/common/util/concurrent/AbstractFuture.java

    import java.util.concurrent.locks.LockSupport;
    import java.util.logging.Level;
    import javax.annotation.CheckForNull;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * An abstract implementation of {@link ListenableFuture}, intended for advanced users only. More
     * common ways to create a {@code ListenableFuture} include instantiating a {@link SettableFuture},
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (0)
  5. guava/src/com/google/common/cache/CacheBuilder.java

       * CacheLoader#reload}.
       *
       * <p>As the default implementation of {@link CacheLoader#reload} is synchronous, it is
       * recommended that users of this method override {@link CacheLoader#reload} with an asynchronous
       * implementation; otherwise refreshes will be performed during unrelated cache read and write
       * operations.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    --
    For tracking the implementation of tasks, task actions and nested inputs, Gradle uses the class name and an identifier for the classpath which contains the implementation.
    There are some situations when Gradle is not able to track the implementation precisely:
    
    Unknown classloader::
    When the classloader which loaded the implementation has not been created by Gradle, the classpath cannot be determined.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/Sets.java

       * concurrency, and performance characteristics as the backing map. In essence, this factory
       * method provides a {@link Set} implementation corresponding to any {@link Map} implementation.
       * There is no need to use this method on a {@link Map} implementation that already has a
       * corresponding {@link Set} implementation (such as {@link java.util.HashMap} or {@link
       * java.util.TreeMap}).
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/suppliers/DynamicRevisionRemoteResolveWithMetadataSupplierIntegrationTest.groovy

            supplierInteractions = withPerVersionStatusSupplier(metadataFile, true, "println 'Alternate implementation'")
            run 'checkDeps'
    
            then:
            outputContains("Providing metadata for group:projectB:2.2")
            outputContains("Providing metadata for group:projectB:1.1")
            outputContains("Alternate implementation")
    
        }
    
        @ToBeFixedForConfigurationCache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 11:46:17 UTC 2024
    - 49K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/project/DefaultProject.java

            configuration.execute(getComponents());
        }
    
        /**
         * This is an implementation of the {@link groovy.lang.GroovyObject}'s corresponding method.
         * The interface itself is mixed-in at runtime, but we want to keep this implementation as it
         * properly handles the dynamicLookupRoutine.
         *
         * @see AsmBackedClassGenerator.ClassBuilderImpl#addDynamicMethods
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/Sets.java

       * concurrency, and performance characteristics as the backing map. In essence, this factory
       * method provides a {@link Set} implementation corresponding to any {@link Map} implementation.
       * There is no need to use this method on a {@link Map} implementation that already has a
       * corresponding {@link Set} implementation (such as {@link java.util.HashMap} or {@link
       * java.util.TreeMap}).
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 78.8K bytes
    - Viewed (0)
Back to top