Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 122 for notifiers (0.36 sec)

  1. okhttp-testing-support/src/main/kotlin/okhttp3/internal/concurrent/TaskFaker.kt

              nanos: Long,
            ) {
              taskRunner.assertThreadHoldsLock()
              check(waitingCoordinatorTask == null)
              if (nanos == 0L) return
    
              // Yield until notified, interrupted, or the duration elapses.
              val waitUntil = nanoTime + nanos
              val self = currentTask
              waitingCoordinatorTask = self
              waitingCoordinatorNotified = false
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 29 00:33:04 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/artifacts/dsl/DependencyCollectorDslIntegrationTest.groovy

            outputContains("the action must be tested")
            if (testExcludes) {
                outputContains("${BAZ_GROUP}:${BAZ_NAME}")
            }
    
            where:
            // Keeping it simpler here, since modifiers are all the same, and multi-string + named args are also the same
            expression                                                     | testExcludes
            singleString(FOO_GROUP, FOO_NAME, FOO_VERSION)                 | true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 16:23:38 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/testng/TestNGTestResultProcessorAdapter.java

            TestClassInfo classInfo;
            synchronized (lock) {
                if (!failedConfigurations.add(testResult)) {
                    // workaround for bug in TestNG 6.2 (apparently fixed in some 6.3.x): listener is notified twice per event
                    return;
                }
                classInfo = this.testClassInfo.get(testClass);
            }
            // Synthesise a test for the broken configuration method
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/options/serving_test.go

    			if err != nil {
    				t.Fatalf("failed creating the server: %v", err)
    			}
    
    			// add poststart hook to know when the server is up.
    			startedCh := make(chan struct{})
    			s.AddPostStartHookOrDie("test-notifier", func(context server.PostStartHookContext) error {
    				close(startedCh)
    				return nil
    			})
    			preparedServer := s.PrepareRun()
    			preparedServerErrors := make(chan error)
    			go func() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 15:52:39 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  5. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/testUtils.kt

    import org.jetbrains.kotlin.analysis.api.impl.base.KaMapBackedSubstitutor
    import org.jetbrains.kotlin.analysis.api.renderer.declarations.impl.KaDeclarationRendererForSource
    import org.jetbrains.kotlin.analysis.api.renderer.declarations.modifiers.renderers.KaRendererKeywordFilter
    import org.jetbrains.kotlin.analysis.api.resolution.KaApplicableCallCandidateInfo
    import org.jetbrains.kotlin.analysis.api.resolution.KaCall
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/provider/KotlinScriptEvaluator.kt

                }
    
            @Synchronized
            override fun onReuse() {
                scope?.let {
                    // Recreate the script scope and ClassLoader, so that things that use scopes are notified that the scope exists
                    it.onReuse()
                    require(loadedClass!!.classLoader == it.localClassLoader)
                }
            }
    
            private
            fun prepareClassLoaderScope() =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 10:23:24 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  7. cmd/batch-rotate.go

    	Prefix     string                      `yaml:"prefix" json:"prefix"`
    	Encryption BatchJobKeyRotateEncryption `yaml:"encryption" json:"encryption"`
    }
    
    // Notify notifies notification endpoint if configured regarding job failure or success.
    func (r BatchJobKeyRotateV1) Notify(ctx context.Context, ri *batchJobInfo) error {
    	return notifyEndpoint(ctx, ri, r.Flags.Notify.Endpoint, r.Flags.Notify.Token)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  8. platforms/core-configuration/input-tracking/src/test/groovy/org/gradle/internal/configuration/inputs/AccessTrackingPropertiesTest.groovy

            2 * onAccess.accept('existing', 'existingValue')
            then:
            1 * onChange.accept('existing', 'newValue')
            then:
            0 * onChange._
        }
    
        def "method clear() notifies listener and changes map"() {
            def map = getMapUnderTestToWrite()
            when:
            map.clear()
    
            then:
            map.isEmpty()
            1 * onClear.run()
            0 * onAccess._
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Nov 11 00:37:04 UTC 2023
    - 23.1K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/invocation/Gradle.java

         */
        @Deprecated
        void buildFinished(Action<? super BuildResult> action);
    
        /**
         * Adds a {@link BuildListener} to this Build instance.
         *
         * The listener is notified of events which occur during the execution of the build.
         *
         * @param buildListener The listener to add.
         */
        void addBuildListener(BuildListener buildListener);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 22:53:34 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  10. platforms/software/build-init/src/test/groovy/org/gradle/buildinit/plugins/internal/BuildScriptBuilderGroovyTest.groovy

    import org.gradle.api.internal.DocumentationRegistry
    import org.gradle.jvm.toolchain.JavaLanguageVersion
    import org.gradle.test.fixtures.file.TestFile
    
    import static org.gradle.buildinit.plugins.internal.modifiers.BuildInitDsl.GROOVY
    
    class BuildScriptBuilderGroovyTest extends AbstractBuildScriptBuilderTest {
        def builder = new BuildScriptBuilderFactory(new DocumentationRegistry()).scriptForNewProjectsWithoutVersionCatalog(GROOVY,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 18 14:16:33 UTC 2023
    - 16.2K bytes
    - Viewed (0)
Back to top