Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 391 for prior (0.1 sec)

  1. test/fixedbugs/issue55889.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Prior to Go 1.18, ineffectual //go:linkname directives were treated
    // as noops. Ensure that modules that contain these directives (e.g.,
    // x/sys prior to go.dev/cl/274573) continue to compile.
    
    package p
    
    import _ "unsafe"
    
    //go:linkname nonexistent nonexistent
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 03 20:35:31 UTC 2022
    - 562 bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/junit4/JUnit4TestTaskIntegrationTest.groovy

    @TargetCoverage({ JUNIT4_CATEGORIES })
    class JUnit4TestTaskIntegrationTest extends AbstractJUnit4TestTaskIntegrationTest implements JUnit4MultiVersionTest {
        def "options can be set prior to setting same test framework for the default test task"() {
            given:
            file('src/test/java/MyTest.java') << standaloneTestClass
            file("src/test/java/Slow.java") << """public interface Slow {}"""
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/work/Synchronizer.java

         */
        void withLock(Runnable action);
    
        /**
         * Runs the given action while holding the associated resource lock, blocking until the lock can be acquired.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/build/BuildLifecycleController.java

         */
        void resetModel();
    
        /**
         * Runs whatever work is required prior to discarding the model for this build. This is called prior to calling {@link #resetModel()}.
         */
        ExecutionResult<Void> beforeModelReset();
    
        /**
         * Runs whatever work is required prior to discarding the model for this build. This is called at the end of the build, after {@link #finishBuild(Throwable)}.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 23 19:05:29 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/internal/build/BuildState.java

        /**
         * Runs whatever work is required prior to discarding the model for this build. Called prior to {@link #resetModel()}.
         */
        ExecutionResult<Void> beforeModelReset();
    
        /**
         * Restarts the lifecycle of the model of this build, discarding all current model state.
         */
        void resetModel();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 15 17:48:01 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  6. platforms/core-runtime/functional/src/main/java/org/gradle/internal/time/TimestampSuppliers.java

     *
     * @since 8.0
     */
    public class TimestampSuppliers {
        /**
         * Returns a supplier that calculates a timestamp exactly the given amount of time
         * prior to the current time, or 0 if the amount of time extends beyond the epoch.
         */
        public static Supplier<Long> inThePast(int value, TimeUnit timeUnit) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:22:02 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/artifact/ArtifactVisitor.java

     */
    public interface ArtifactVisitor {
        /**
         * Called prior to scheduling resolution of a set of artifacts. Should be called in result order.
         */
        default FileCollectionStructureVisitor.VisitType prepareForVisit(FileCollectionInternal.Source source) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/component/AdhocComponentWithVariants.java

         *
         * @param outgoingConfiguration the configuration corresponding to the variant to use as source of dependencies and artifacts
         * @param action action executed to configure the variant prior to publishing
         */
        void addVariantsFromConfiguration(Configuration outgoingConfiguration, Action<? super ConfigurationVariantDetails> action);
    
        /**
         * Further configure previously declared variants.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 19 14:20:53 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  9. maven-core/src/test/resources/apiv4-repo/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4-javadoc-resources.jar.lastUpdated

    #NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
    #Thu Sep 24 16:40:08 CEST 2020
    https\://repo.maven.apache.org/maven2/.lastUpdated=1600958408640
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 19 19:08:55 UTC 2023
    - 252 bytes
    - Viewed (0)
  10. cluster/skeleton/util.sh

    # Delete a kubernetes cluster
    function kube-down {
    	echo "Skeleton Provider: kube-down not implemented" 1>&2
    }
    
    # Execute prior to running tests to build a release if required for env
    function test-build-release {
    	echo "Skeleton Provider: test-build-release not implemented" 1>&2
    }
    
    # Execute prior to running tests to initialize required structure
    function test-setup {
    	echo "Skeleton Provider: test-setup not implemented" 1>&2
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Oct 13 00:54:20 UTC 2018
    - 2.4K bytes
    - Viewed (0)
Back to top