Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 87 for sub32a (0.22 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/ExclusiveVariantsIntegrationTest.groovy

        }
    
        def "attribute and capability combinations can be repeated across projects without a warning"() {
            given:
            def subADir = createDir("subA")
            subADir.file("build.gradle") << """
                plugins {
                    id 'java'
                }
    
                configurations {
                    sampleA {
                        canBeResolved = false
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 05 20:34:52 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/execution/taskgraph/RuleTaskBridgingIntegrationTest.groovy

            }
    
            project("sub2") {
                evaluationDependsOn ':sub1'
    
                task customTask  {
                    dependsOn project(":sub1").tasks.withType(ClimbTask)
                }
            }
            """
    
            when:
            succeeds('sub2:customTask')
    
            then:
            result.assertTasksExecutedInOrder(':sub1:climbTask', ':sub2:customTask')
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 12:57:53 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  3. src/math/bits/bits_test.go

    		{_M32, _M32, 0, _M32 - 1, 1},
    		{_M32, _M32, 1, _M32, 1},
    	} {
    		test("Add32", Add32, a.x, a.y, a.c, a.z, a.cout)
    		test("Add32 symmetric", Add32, a.y, a.x, a.c, a.z, a.cout)
    		test("Sub32", Sub32, a.z, a.x, a.c, a.y, a.cout)
    		test("Sub32 symmetric", Sub32, a.z, a.y, a.c, a.x, a.cout)
    	}
    }
    
    func TestAddSubUint64(t *testing.T) {
    	test := func(msg string, f func(x, y, c uint64) (z, cout uint64), x, y, c, z, cout uint64) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 22 20:11:06 UTC 2020
    - 32.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/test/float_test.go

    		t.Errorf("float64(i16) != di16")
    	}
    	if float64(i8) != di8 {
    		t.Errorf("float64(i8) != di8")
    	}
    	if float32(u64) != su64 {
    		t.Errorf("float32(u64) != su64")
    	}
    	if float32(u32) != su32 {
    		t.Errorf("float32(u32) != su32")
    	}
    	if float32(u16) != su16 {
    		t.Errorf("float32(u16) != su16")
    	}
    	if float32(u8) != su8 {
    		t.Errorf("float32(u8) != su8")
    	}
    	if float32(i64) != si64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:54:15 UTC 2022
    - 12.5K bytes
    - Viewed (0)
  5. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishIssuesIntegTest.groovy

            given:
            using m2
            def repo = file("maven").createDir()
            settingsFile << """
            include 'sub1'
            include 'sub2'
            """
    
            [file("sub1/build.gradle"), file("sub2/build.gradle")].each { File f ->
                f << """
                apply plugin: "java"
                apply plugin: "maven-publish"
    
                publishing {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 07 19:31:52 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/tests/fake_quant_e2e_xla.mlir

    // CHECK: %[[pad2:.*]] = "tf.PadV2"(%[[quant2]]
    // CHECK: %[[xlaconv2:.*]] = "tf.XlaConvV2"(%[[pad2]]
    // CHECK: %[[sub2:.*]] = "tf.Sub"(%[[xlaconv2]]
    // CHECK: %[[cast2:.*]] = "tf.Cast"(%[[sub2]]) <{Truncate = false}> : (tensor<1x3x2x2xi32>) -> tensor<1x3x2x2xf32>
    // CHECK: %[[rescale2:.*]] = "tf.Mul"(%[[cast2]]
    // CHECK: %[[rescale2_maxclamped:.*]] = "tf.Maximum"(%[[rescale2]]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/rewritegeneric.go

    			return true
    		}
    		break
    	}
    	// match: (Sub32 (Sub32 x y) x)
    	// result: (Neg32 y)
    	for {
    		if v_0.Op != OpSub32 {
    			break
    		}
    		y := v_0.Args[1]
    		x := v_0.Args[0]
    		if x != v_1 {
    			break
    		}
    		v.reset(OpNeg32)
    		v.AddArg(y)
    		return true
    	}
    	// match: (Sub32 x (Add32 x y))
    	// result: (Neg32 y)
    	for {
    		x := v_0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 18:24:47 UTC 2024
    - 812.2K bytes
    - Viewed (0)
  8. src/testing/helper_test.go

        helperfuncs_test.go:56: 4
        --- FAIL: TestTBHelper/sub \([^)]+\)
            helperfuncs_test.go:59: 5
            helperfuncs_test.go:24: 6
            helperfuncs_test.go:58: 7
        --- FAIL: TestTBHelper/sub2 \([^)]+\)
            helperfuncs_test.go:80: 11
        helperfuncs_test.go:84: recover 12
        helperfuncs_test.go:86: GenericFloat64
        helperfuncs_test.go:87: GenericInt
        helper_test.go:22: 8
        helperfuncs_test.go:73: 9
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:24:47 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  9. pkg/kubelet/cm/cpumanager/state/checkpoint.go

    	object = strings.Replace(object, "CPUManagerCheckpointV1", "CPUManagerCheckpoint", 1)
    	cp.Checksum = ck
    
    	hash := fnv.New32a()
    	fmt.Fprintf(hash, "%v", object)
    	if cp.Checksum != checksum.Checksum(hash.Sum32()) {
    		return errors.ErrCorruptCheckpoint
    	}
    
    	return nil
    }
    
    // VerifyChecksum verifies that current checksum of checkpoint is valid in v2 format
    func (cp *CPUManagerCheckpointV2) VerifyChecksum() error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 27 01:24:22 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  10. src/cmd/link/internal/loader/loader_test.go

    	addDummyObjSym(t, ldr, or, "type:uint8")
    	es1 := ldr.LookupOrCreateSym("outer", 0)
    	ldr.MakeSymbolUpdater(es1).SetSize(101)
    	es2 := ldr.LookupOrCreateSym("sub1", 0)
    	es3 := ldr.LookupOrCreateSym("sub2", 0)
    	es4 := ldr.LookupOrCreateSym("sub3", 0)
    	es5 := ldr.LookupOrCreateSym("sub4", 0)
    	es6 := ldr.LookupOrCreateSym("sub5", 0)
    
    	// Should not have an outer sym initially
    	if ldr.OuterSym(es1) != 0 {
    		t.Errorf("es1 outer sym set ")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 19:08:09 UTC 2024
    - 12K bytes
    - Viewed (0)
Back to top