Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 521 for corerest (0.26 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. .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)
  8. tensorflow/compiler/mlir/tensorflow/transforms/passes.h

    // attached as an attribute.
    std::unique_ptr<OperationPass<func::FuncOp>>
    CreateMaterializePassthroughOpPass();
    
    // Replicates the TensorList init op by undoing some CSE needed for correct
    // shape assignment in shape_inference.
    std::unique_ptr<OperationPass<func::FuncOp>>
    CreateReplicateTensorListInitOpsPass();
    
    // Performs Shape Inference on the TensorFlow dialect using the global registry.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  9. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/CalculatedValueContainerCodec.kt

            return decodePreservingSharedIdentity {
                val available = readBoolean()
                if (available) {
                    val value = read()
                    // TODO - restore the correct display name when the container is attached to its owner (rather than writing the display name to the cache)
                    calculatedValueContainerFactory.create(Describables.of("unknown value"), value as Any)
                } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/ProducerTaskCommandLineOrderIntegrationTest.groovy

        // Currently flaky with CC enabled
        def "producer task followed by a destroyer task followed by a producer with a dependency on the first producer are run in the correct order"() {
            def foo = subproject(':foo')
            def bar = subproject(':bar')
    
            def cleanFooLocal = foo.task('cleanFooLocalState').destroys('build/foo-local')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:34 UTC 2024
    - 19.4K bytes
    - Viewed (0)
Back to top