Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 318 for conditional (0.18 sec)

  1. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		{name: "FRINTND", argLength: 1, reg: fp11, asm: "FRINTND"},
    		{name: "FRINTPD", argLength: 1, reg: fp11, asm: "FRINTPD"},
    		{name: "FRINTZD", argLength: 1, reg: fp11, asm: "FRINTZD"},
    
    		// conditional instructions; auxint is
    		// one of the arm64 comparison pseudo-ops (LessThan, LessThanU, etc.)
    		{name: "CSEL", argLength: 3, reg: gp2flags1, asm: "CSEL", aux: "CCop"},   // auxint(flags) ? arg0 : arg1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    .Skipping the unit tests based on a project property
    ====
    include::sample[dir="snippets/java/basic/kotlin",files="build.gradle.kts[tags=skip-tests-condition]"]
    include::sample[dir="snippets/java/basic/groovy",files="build.gradle[tags=skip-tests-condition]"]
    ====
    
    In this case, Gradle will mark the skipped tests as "SKIPPED" rather than exclude them from the build.
    
    [[sec:forcing_java_tests_to_run]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    // GTEST_CHECK_ is an all-mode assert. It aborts the program if the condition
    // is not satisfied.
    //  Synopsys:
    //    GTEST_CHECK_(boolean_condition);
    //     or
    //    GTEST_CHECK_(boolean_condition) << "Additional message";
    //
    //    This checks the condition and if the condition is not satisfied
    //    it prints message about the condition violation, including the
    //    condition itself, plus additional message streamed into it, if any,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    // GTEST_CHECK_ is an all-mode assert. It aborts the program if the condition
    // is not satisfied.
    //  Synopsys:
    //    GTEST_CHECK_(boolean_condition);
    //     or
    //    GTEST_CHECK_(boolean_condition) << "Additional message";
    //
    //    This checks the condition and if the condition is not satisfied
    //    it prints message about the condition violation, including the
    //    condition itself, plus additional message streamed into it, if any,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/mips/asm0.go

    	var otxt int64
    	var q *obj.Prog
    	for bflag != 0 {
    		bflag = 0
    		pc = 0
    		for p = c.cursym.Func().Text.Link; p != nil; p = p.Link {
    			p.Pc = pc
    			o = c.oplook(p)
    
    			// very large conditional branches
    			if o.type_ == 6 && p.To.Target() != nil {
    				otxt = p.To.Target().Pc - pc
    				if otxt < -(1<<17)+10 || otxt >= (1<<17)-10 {
    					q = c.newprog()
    					q.Link = p.Link
    					p.Link = q
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 53.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

    For example:
    
    ```python
    # 'condition' tensor is [[True,  False]
    #                        [False, True]]
    # 't' is [[1, 2],
    #         [3, 4]]
    # 'e' is [[5, 6],
    #         [7, 8]]
    select(condition, t, e)  # => [[1, 6], [7, 4]]
    
    
    # 'condition' tensor is [True, False]
    # 't' is [[1, 2],
    #         [3, 4]]
    # 'e' is [[5, 6],
    #         [7, 8]]
    select(condition, t, e) ==> [[1, 2],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  7. src/cmd/asm/internal/asm/testdata/arm64.s

    	VMOV	V9.H[0], V12.H[1]     // 2c05066e
    	VMOV	V8.B[0], V12.B[1]     // 0c05036e
    	VMOV	V8.B[7], V4.B[8]      // 043d116e
    
    // CBZ
    again:
    	CBZ	R1, again // CBZ R1
    
    // conditional operations
    	CSET	GT, R1	        // e1d79f9a
    	CSETW	HI, R2	        // e2979f1a
    	CSEL	LT, R1, R2, ZR	// 3fb0829a
    	CSELW	LT, R2, R3, R4	// 44b0831a
    	CSINC	GT, R1, ZR, R3	// 23c49f9a
    	CSNEG	MI, R1, R2, R3	// 234482da
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 03:28:17 UTC 2023
    - 94.9K bytes
    - Viewed (0)
  8. src/runtime/pprof/pprof_test.go

    	recursionChainBottom(x, pcs)
    }
    
    func recursionChainBottom(x int, pcs []uintptr) {
    	// This will be called each time, we only care about the last. We
    	// can't make this conditional or this function won't be inlined.
    	dumpCallers(pcs)
    
    	recursionChainTop(x-1, pcs)
    }
    
    func parseProfile(t *testing.T, valBytes []byte, f func(uintptr, []*profile.Location, map[string][]string)) *profile.Profile {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/rewrite.go

    	}
    	// Note: leave v.Block intact.  The Block field is used after clobberIfDead.
    	return true
    }
    
    // noteRule is an easy way to track if a rule is matched when writing
    // new ones.  Make the rule of interest also conditional on
    //
    //	noteRule("note to self: rule of interest matched")
    //
    // and that message will print when the rule matches.
    func noteRule(s string) bool {
    	fmt.Println(s)
    	return true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/S390X.rules

    (CLIJ {s390x.LessOrGreater} (LOCGR {d} (MOVDconst [0]) (MOVDconst [x]) cmp) [0] yes no)
      && int32(x) != 0
      => (BRC {d} cmp yes no)
    
    // Canonicalize BRC condition code mask by removing impossible conditions.
    // Integer comparisons cannot generate the unordered condition.
    (BRC {c} x:((CMP|CMPW|CMPU|CMPWU)    _ _) yes no) && c&s390x.Unordered != 0 => (BRC {c&^s390x.Unordered} x yes no)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
Back to top