Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for c1k1 (0.39 sec)

  1. src/context/x_test.go

    	c0 := Background()
    	check(c0, "c0", "", "", "")
    
    	c1 := WithValue(Background(), k1, "c1k1")
    	check(c1, "c1", "c1k1", "", "")
    
    	if got, want := fmt.Sprint(c1), `context.Background.WithValue(context_test.key1, c1k1)`; got != want {
    		t.Errorf("c.String() = %q want %q", got, want)
    	}
    
    	c2 := WithValue(c1, k2, "c2k2")
    	check(c2, "c2", "c1k1", "c2k2", "")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/support/WalkReproduciblyTest.kt

                    withFile("root-f2")
                    "b" {
                        withFile("b-f1")
                    }
                    "c" {
                        "c1" {
                            "c11" {
                                withFile("c11-f1")
                            }
                        }
                    }
                    "a" {
                        "a2" {
                            withFile("a2-f2")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/resources/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/uikit-icons.min.js

    L5.9,5.5 C5.9,4.92 5.56,4.7 5,4.7 L5,4 L8.95,4 C12.6,4 13.7,5.37 13.7,6.9 C13.7,7.87 13.14,9.17 10.86,9.59 L10.86,9.7 C13.25,9.86 14.29,11.28 14.3,12.54 C14.3,14.47 12.94,16 9,16 L5,16 L5,15.3 Z M9,9.3 C11.19,9.3 11.8,8.5 11.85,7 C11.85,5.65 11.3,4.8 9,4.8 L7.67,4.8 L7.67,9.3 L9,9.3 Z M9.185,15.22 C11.97,15 12.39,14 12.4,12.58 C12.4,11.15 11.39,10 9,10 L7.67,10 L7.67,15 L9.18,15 Z"/></svg>',bolt:'<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path d="M4.74,20 L7.73,12...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 62.5K bytes
    - Viewed (0)
  4. src/internal/types/testdata/check/expr0.go

    	c1 complex128 = c0
    	c2 = +1
    	c3 = +c0
    	c4 complex128 = +1
    	c5 complex128 = +c4
    	c6 = -1
    	c7 = -c0
    	c8 complex128 = -1
    	c9 complex128 = -c4
    	c10 = !c0 /* ERROR "not defined" */
    	c11 = ^1
    	c12 = ^i0
    	c13 complex128 = ^1
    	c14 complex128 = ^c4 /* ERROR "not defined" */
    	c15 = *c0 /* ERROR "cannot indirect" */
    	c16 = &c0
    	c17 = *u16
    	c18 = <-u16 /* ERROR "cannot receive" */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 16:11:16 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  5. test/codegen/comparisons.go

    	}
    	// arm64:`CMN`,-`CMP`
    	if a*c+b != 0 {
    		c9 = 1
    	}
    	// arm64:`CMP`,-`CMN`
    	if b*c-a == 0 {
    		c10 = 1
    	}
    	// arm64:`CMP`,-`CMN`
    	if a*d-b != 0 {
    		c11 = 1
    	}
    	return c1 + c2 + c3 + c4 + c5 + c6 + c7 + c8 + c9 + c10 + c11
    }
    
    func cmpToCmnLessThan(a, b, c, d int) int {
    	var c1, c2, c3, c4 int
    	// arm64:`CMN`,`CSET\tMI`,-`CMP`
    	if a+1 < 0 {
    		c1 = 1
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 19 16:31:02 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  6. src/debug/elf/file_test.go

    		[]relocationTestEntry{
    			{
    				entry: &dwarf.Entry{
    					Offset:   0xb,
    					Tag:      dwarf.TagCompileUnit,
    					Children: true,
    					Field: []dwarf.Field{
    						{Attr: dwarf.AttrProducer, Val: "GNU C11 5.0.0 20150116 (experimental) -Asystem=linux -Asystem=unix -Asystem=posix -g", Class: dwarf.ClassString},
    						{Attr: dwarf.AttrLanguage, Val: int64(12), Class: dwarf.ClassConstant},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 60.1K bytes
    - Viewed (0)
  7. src/runtime/crash_cgo_test.go

    	}
    	if runtime.GOOS == "windows" {
    		t.Skipf("skipping: test requires pthread support")
    		// TODO: Can this test be rewritten to use the C11 thread API instead?
    	}
    
    	testenv.MustHaveGoRun(t)
    
    	// This test requires building various packages with -race, so
    	// it's somewhat slow.
    	if testing.Short() {
    		t.Skip("skipping test in -short mode")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 16:44:47 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  8. tensorflow/c/BUILD

            "//tensorflow/core:session_options",
            "//tensorflow/core:test",
        ],
    )
    
    tf_cc_test(
        name = "c_test",
        srcs = ["c_test.c"],
        extra_copts = ["-std=c11"],
        deps = [
            ":c_api",
            ":c_api_experimental",
            ":env",
            ":kernels",
        ],
    )
    
    tf_cuda_cc_test(
        name = "c_api_test",
        size = "medium",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  9. src/runtime/race.go

    // sections of code).
    // RaceAcquire establishes a happens-before relation with the preceding
    // RaceReleaseMerge on addr up to and including the last RaceRelease on addr.
    // In terms of the C memory model (C11 §5.1.2.4, §7.17.3),
    // RaceAcquire is equivalent to atomic_load(memory_order_acquire).
    //
    //go:nosplit
    func RaceAcquire(addr unsafe.Pointer) {
    	raceacquire(addr)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

      // CHECK: %[[SHAPE0:.*]] = shape.shape_of %arg0 : tensor<?x?xf16> -> tensor<2xindex>
      // CHECK-DAG: %[[C1_1:.*]] = arith.constant 1 : index
      // CHECK-DAG: %[[C1_2:.*]] = arith.constant 1 : index
      // CHECK: %[[REDUCED_DIM:.*]] = tensor.extract %[[SHAPE0]][%[[C1_2]]] : tensor<2xindex>
      // CHECK: %[[MUL:.*]] = arith.muli %[[C1_1]], %[[REDUCED_DIM]] : index
      // CHECK: %[[INDEX_CAST:.*]] = arith.index_cast %[[MUL]] : index to i64
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
Back to top