Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 945 for prior (0.04 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/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)
  3. 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)
  4. okhttp/src/main/kotlin/okhttp3/EventListener.kt

       * will be handled within the boundaries of a single [callStart] and [callEnd]/[callFailed] pair.
       */
      open fun callStart(call: Call) {
      }
    
      /**
       * Invoked prior to a proxy selection.
       *
       * This will be invoked for route selection regardless of whether the client
       * is configured with a single proxy, a proxy selector, or neither.
       *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/TestOptionsIntegrationSpec.groovy

        @Test
        public void ok1() {
        }
    
        @Test
        public void ok2() {
        }
    }
            """
        }
        // region default test suite
    
        def "can set test framework in default test suite prior to setting options within test task"() {
            given:
            buildFile << """
            // Configure task through suite
            testing {
                suites {
                    test {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 12.5K bytes
    - Viewed (0)
Back to top