Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 5,268 for because1 (0.25 sec)

  1. pkg/probe/grpc/grpc_test.go

    	t.Run("Should: failed but return nil error because cant find host", func(t *testing.T) {
    		s := New()
    		p, o, err := s.Probe("", "", 32, time.Second)
    		assert.Equal(t, probe.Failure, p)
    		assert.Equal(t, nil, err)
    		assert.Equal(t, "timeout: failed to connect service \":32\" within 1s: context deadline exceeded", o)
    	})
    	t.Run("Should: return nil error because connection closed", func(t *testing.T) {
    		s := New()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Nov 20 00:23:53 UTC 2021
    - 5.7K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/DaemonRegistryUpdater.java

            try {
                daemonRegistry.markState(connectorAddress, Busy);
            } catch (DaemonRegistry.EmptyRegistryException e) {
                LOGGER.warn("Cannot mark daemon as busy because the registry is empty.");
            }
        }
    
        public void onCompleteActivity() {
            LOGGER.info("Marking the daemon as idle, address: {}", connectorAddress);
            try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 4K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/TestInputAnnotationFailuresIntegrationTest.groovy

                'validation_problems', 'unsupported_value_type')
            expectThatExecutionOptimizationDisabledWarningIsDisplayed(executer,
                "Type 'TaskWithInput' property 'nestedInput.nested' has @Input annotation used on type 'java.net.URL' or a property of this type. " +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/JavaExecWithLongCommandLineIntegrationTest.groovy

            failure.assertHasNoCause("could not be started because the command line exceed operating system limits.")
    
            where:
            method                    | taskName
            'project.javaexec'        | 'runWithJavaExec'
            'ExecOperations.javaexec' | 'runWithExecOperations'
            // The test does not work with the JavaExec task because the task resolves the executable prior to starting the process.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  5. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/Flaky.groovy

     * For JUnit Jupiter tests, because it's a <a href="https://junit.org/junit5/docs/current/user-guide/#writing-tests-meta-annotations">Meta-Annotation</a>,
     *   tests annotated by this is handled by `JUnitPlatformOptions.includeTags/excludeTags`.
     * For JUnit 4 tests, because we run them in Vintage engine, we have to annotate the tests with `@Category(Flaky.class)` so it can be transparently
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  6. test/fixedbugs/issue13799.go

    	// occurs.
    
    	var fn func() // ERROR "moved to heap: fn$"
    	i := 0        // ERROR "moved to heap: i$"
    	for ; i < maxI; i++ {
    		// var fn func() // this makes it work, because fn stays off heap
    		j := 0        // ERROR "moved to heap: j$"
    		fn = func() { // ERROR "func literal escapes to heap$"
    			m[i] = append(m[i], 0)
    			if j < 25 {
    				j++
    				fn()
    			}
    		}
    		fn()
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 18:50:24 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheGradlePropertiesIntegrationTest.groovy

            when:
            configurationCacheRun "help", "-D${SYSTEM_PROJECT_PROPERTIES_PREFIX}gradleProp=2"
    
            then:
            outputContains '2!'
            outputContains "because the set of system properties prefixed by '${SYSTEM_PROJECT_PROPERTIES_PREFIX}' has changed."
            configurationCache.assertStateStored()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  8. src/cmd/go/internal/gover/mod_test.go

    	{"go", "1.2", "1.3", -1},
    	{"go", "v1.2", "v1.3", 0}, // equal because invalid
    	{"go", "1.2", "1.2", 0},
    	{"toolchain", "go1.2", "go1.3", -1},
    	{"toolchain", "go1.2", "go1.2", 0},
    	{"toolchain", "1.2", "1.3", -1},  // accepted but non-standard
    	{"toolchain", "v1.2", "v1.3", 0}, // equal because invalid
    	{"rsc.io/quote", "v1.2", "v1.3", -1},
    	{"rsc.io/quote", "1.2", "1.3", 0}, // equal because invalid
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 17:51:28 UTC 2023
    - 2K bytes
    - Viewed (0)
  9. src/runtime/os2_aix.go

    	gp := getg()
    
    	// Check the validity of g because without a g during
    	// newosproc0.
    	if gp != nil {
    		syscall1(&libc_exit, uintptr(code))
    		return
    	}
    	exit1(code)
    }
    
    func write2(fd, p uintptr, n int32) int32
    
    //go:nosplit
    func write1(fd uintptr, p unsafe.Pointer, n int32) int32 {
    	gp := getg()
    
    	// Check the validity of g because without a g during
    	// newosproc0.
    	if gp != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  10. testing/performance/build.gradle.kts

        performanceTestRuntimeOnly(libs.jetty)
    
        performanceTestDistributionRuntimeOnly(project(":distributions-full")) {
            because("All Gradle features have to be available.")
        }
        performanceTestLocalRepository(project(":tooling-api")) {
            because("IDE tests use the Tooling API.")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top