Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 587 for corerest (0.23 sec)

  1. platforms/jvm/language-groovy/src/test/groovy/org/gradle/api/internal/tasks/compile/DefaultGroovyJavaJointCompileSpecFactoryTest.groovy

    class DefaultGroovyJavaJointCompileSpecFactoryTest extends Specification {
    
        @Rule
        TestNameTestDirectoryProvider tmpDir = new TestNameTestDirectoryProvider(getClass())
    
        def "produces correct spec type" () {
            CompileOptions options = TestUtil.newInstance(CompileOptions.class, TestUtil.objectFactory())
            options.fork = fork
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  2. test/fixedbugs/bug485.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Gccgo chose the wrong embedded method when the same type appeared
    // at different levels and the correct choice was not the first
    // appearance of the type in a depth-first search.
    
    package main
    
    type embedded string
    
    func (s embedded) val() string {
    	return string(s)
    }
    
    type A struct {
    	embedded
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 624 bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/ops/BUILD

            "//tensorflow/compiler/mlir/quantization/common:test_base",
            "//tensorflow/compiler/mlir/quantization/common/quantization_lib",
            "//tensorflow/compiler/mlir/tensorflow",
            "//tensorflow/core:test",
            "@com_google_absl//absl/strings:string_view",
            "@com_google_googletest//:gtest_main",
            "@llvm-project//mlir:FuncDialect",
            "@llvm-project//mlir:IR",
            "@llvm-project//mlir:Support",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 04 07:19:09 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. src/net/http/httptest/recorder_test.go

    				hdr := w.Header()
    				hdr.Set("Key", "correct")
    				w.WriteHeader(200)
    				hdr.Set("Key", "incorrect")
    			},
    			check(hasHeader("Key", "correct")),
    		},
    		{
    			"Trailer headers are correctly recorded",
    			func(w http.ResponseWriter, r *http.Request) {
    				w.Header().Set("Non-Trailer", "correct")
    				w.Header().Set("Trailer", "Trailer-A, Trailer-B")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 23:17:38 UTC 2022
    - 9.7K bytes
    - Viewed (0)
  5. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/service/ScopedServiceRegistryTest.groovy

            'provider' | { ScopedServiceRegistry it -> it.addProvider(new MultiScopedServiceProvider()) }
        }
    
        def "succeeds when registering a service in the correct scope"() {
            given:
            def registry = scopedRegistry(Scope.BuildTree)
            def service = new BuildTreeScopedService()
    
            when:
            registry.add(service)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfrt/tests/tf_to_corert/func_attributes_multiple_callers.mlir

        // CHECK: tfrt_fallback_async.executeop key({{[0-9]+}}) cost({{.*}}) device("/device:CPU:0") "tf.FlatMapDataset"({{.*}}) {Targuments = [], metadata = "", output_shapes = [#corert.shape<>], output_types = [i64]} {f = "funcB"} : 1
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 17 20:57:36 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/defers/doc.go

    // that this is nearly always a mistake.
    //
    // For example:
    //
    //	start := time.Now()
    //	...
    //	defer recordLatency(time.Since(start)) // error: call to time.Since is not deferred
    //
    // The correct code is:
    //
    //	defer func() { recordLatency(time.Since(start)) }()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 25 20:06:48 UTC 2023
    - 763 bytes
    - Viewed (0)
  8. test/fixedbugs/issue27201.go

    	n := runtime.Stack(buf[:], false)
    	s := string(buf[:n])
    	if strings.Contains(s, "issue27201.go:21 ") {
    		panic("panic at wrong location")
    	}
    	if !strings.Contains(s, "issue27201.go:20 ") {
    		panic("no panic at correct location")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 14 22:41:33 UTC 2019
    - 681 bytes
    - Viewed (0)
  9. test/fixedbugs/issue8183.go

    // errorcheck
    
    // Copyright 2015 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Tests correct reporting of line numbers for errors involving iota,
    // Issue #8183.
    package foo
    
    const (
    	ok = byte(iota + 253)
    	bad
    	barn
    	bard // ERROR "constant 256 overflows byte|integer constant overflow|cannot convert"
    )
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 22 17:50:13 UTC 2020
    - 622 bytes
    - Viewed (0)
  10. test/fixedbugs/issue11369.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test that the half multiply resulting from a division
    // by a constant generates correct code.
    
    package main
    
    func main() {
    	var _ = 7 / "0"[0] // test case from #11369
    	var _ = 1 / "."[0] // test case from #11358
    	var x = 0 / "0"[0]
    	var y = 48 / "0"[0]
    	var z = 5 * 48 / "0"[0]
    	if x != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 26 15:55:22 UTC 2015
    - 567 bytes
    - Viewed (0)
Back to top