Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 111 for corerest (0.28 sec)

  1. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/dom/DomResolutionTest.kt

        }
    
        @Test
        fun `maps resolution errors to document errors`() {
            val resolver = tracingCodeResolver()
    
            val topLevelBlock = parseAsTopLevelBlock(
                """
                addAndConfigure("correct") { }
                addAndConfigure("lambda missing")
                addAndConfigure("incorrect signature", 1) {
                    number = 123
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:09 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  2. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/declarations/KotlinForwardDeclarationProviderFactory.kt

     * The special provider is necessary because forward declarations are mere qualified names by themselves.
     * It is a responsibility of the implementor to make the source representation correct.
     * Symbol's properties are not affected by its source representation.
     *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/util/concurrent/AbstractFutureFallbackAtomicHelperTest.java

        // set it as the name of the test.  Then in runTest we can reflectively load and invoke the
        // corresponding method on AbstractFutureTest in the correct classloader.
        TestSuite suite = new TestSuite(AbstractFutureFallbackAtomicHelperTest.class.getName());
        for (Method method : AbstractFutureTest.class.getDeclaredMethods()) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/util/concurrent/AbstractFutureFallbackAtomicHelperTest.java

        // set it as the name of the test.  Then in runTest we can reflectively load and invoke the
        // corresponding method on AbstractFutureTest in the correct classloader.
        TestSuite suite = new TestSuite(AbstractFutureFallbackAtomicHelperTest.class.getName());
        for (Method method : AbstractFutureTest.class.getDeclaredMethods()) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  5. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/DevelocityPluginBuildStateIntegrationTest.groovy

        def setup() {
            settingsFile << plugin.pluginManagement() << plugin.plugins()
            plugin.publishDummyPlugin(executer)
        }
    
        def "provided build state is correct"() {
            given:
            buildFile << """
                def serviceRef = gradle.extensions.serviceRef
                task check {
                    doLast {
                        def service = serviceRef.get()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 10:49:16 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  6. src/internal/trace/testdata/generators/go122-syscall-steal-proc-ambiguous.go

    // a ProcSteal applies to is ambiguous. This only happens in
    // practice when the events aren't already properly ordered
    // by timestamp, since the ProcSteal won't be seen until after
    // the correct GoSyscallBegin appears on the frontier.
    
    package main
    
    import (
    	"internal/trace"
    	"internal/trace/event/go122"
    	testgen "internal/trace/internal/testgen/go122"
    )
    
    func main() {
    	testgen.Main(gen)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  7. src/net/lookup_windows_test.go

    		if err != nil {
    			// The DNSError type stores the error as a string, so it cannot wrap the
    			// original error code and we cannot check for it here. However, we can at
    			// least use its error string to identify the correct localized text for
    			// the error to skip.
    			var DNS_ERROR_RCODE_SERVER_FAILURE syscall.Errno = 9002
    			if strings.HasSuffix(err.Error(), DNS_ERROR_RCODE_SERVER_FAILURE.Error()) {
    				testenv.SkipFlaky(t, 38111)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  8. tests/integration/ambient/cacert_rotation_test.go

    	if err != nil {
    		t.Errorf("failed to decode intermediate certificate: %v", err)
    	}
    	intermediateX509 := parseCert(t, intermediateCert)
    	// verify the correct intermediate cert is in the certificate chain
    	if intermediateX509.SerialNumber.String() != caX590.SerialNumber.String() {
    		return fmt.Errorf("intermediate certificate serial numbers do not match: got %v, wanted %v",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 03:28:36 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_list_direct_work.txt

        return sampler.Hello()
    }
    -- b/go.mod --
    module example.com/b
    
    go 1.23
    
    // The indrect comment below is inaccurate. Its purpose
    // is to test that it is corrected when enough packages
    // are loaded to correct it.
    
    require example.com/c v1.0.0 // indirect
    
    replace example.com/c => ../c
    -- b/b.go --
    package b
    
    import "example.com/c"
    
    func B() {
        c.C()
    }
    -- c/go.mod --
    module example.com/c
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. .github/workflows/mint/nginx-4-node.conf

                proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
                proxy_set_header X-Forwarded-Proto $scheme;
                proxy_set_header X-NginX-Proxy true;
    
                # This is necessary to pass the correct IP to be hashed
                real_ip_header X-Real-IP;
    
                proxy_connect_timeout 300;
                
                # To support websocket
                proxy_http_version 1.1;
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 16:52:29 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top