Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 288 for conditional (0.17 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

       // Start step i
       N_i = non_tpu(args_i)
       F_i = forward(args_i, N_i)
    
       // Conditional update
       args_ip1 = update_args(args_i, N_i)  // T_i is lagged.
       C_ip1 = cond(args_ip1)
    
       return (...)
    }
    // Note: the tf.while conditional is based on Ci which is initially C2. The
    // tf.while op returns the inputs unmodified if the initial conditional is
    // false. Thus, the following special cases hold for N <= 2:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  2. src/html/template/escape_test.go

    		},
    		{
    			"conditional valueless attr name",
    			`<input{{if .T}} checked{{end}} name=n>`,
    			`<input checked name=n>`,
    		},
    		{
    			"conditional dynamic valueless attr name 1",
    			`<input{{if .T}} {{"checked"}}{{end}} name=n>`,
    			`<input checked name=n>`,
    		},
    		{
    			"conditional dynamic valueless attr name 2",
    			`<input {{if .T}}{{"checked"}} {{end}}name=n>`,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 56.2K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/loong64/asm.go

    				rescan = true
    			}
    
    			// very large conditional branches
    			//
    			// if any procedure is large enough to generate a large SBRA branch, then
    			// generate extra passes putting branches around jmps to fix. this is rare.
    			if o.type_ == 6 && p.To.Target() != nil {
    				otxt := p.To.Target().Pc - pc
    
    				// On loong64, the immediate value field of the conditional branch instructions
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 61.8K bytes
    - Viewed (0)
  4. guava/src/com/google/common/base/Preconditions.java

     *
     * <p>It is of course possible to use the methods of this class to check for invalid conditions
     * which are <i>not the caller's fault</i>. Doing so is <b>not recommended</b> because it is
     * misleading to future readers of the code and of stack traces. See <a
     * href="https://github.com/google/guava/wiki/ConditionalFailuresExplained">Conditional failures
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 11:52:14 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/riscv/obj.go

    			switch p.To.Name {
    			case obj.NAME_EXTERN, obj.NAME_STATIC:
    				p.Mark |= NEED_PCREL_STYPE_RELOC
    			}
    		}
    	}
    }
    
    // InvertBranch inverts the condition of a conditional branch.
    func InvertBranch(as obj.As) obj.As {
    	switch as {
    	case ABEQ:
    		return ABNE
    	case ABEQZ:
    		return ABNEZ
    	case ABGE:
    		return ABLT
    	case ABGEU:
    		return ABLTU
    	case ABGEZ:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/base/Preconditions.java

     *
     * <p>It is of course possible to use the methods of this class to check for invalid conditions
     * which are <i>not the caller's fault</i>. Doing so is <b>not recommended</b> because it is
     * misleading to future readers of the code and of stack traces. See <a
     * href="https://github.com/google/guava/wiki/ConditionalFailuresExplained">Conditional failures
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 11:52:14 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    // Lowering calls
    (StaticCall ...) => (CALLstatic ...)
    (ClosureCall ...) => (CALLclosure ...)
    (InterCall ...) => (CALLinter ...)
    (TailCall ...) => (CALLtail ...)
    
    // Lowering conditional moves
    // If the condition is a SETxx, we can just run a CMOV from the comparison that was
    // setting the flags.
    // Legend: HI=unsigned ABOVE, CS=unsigned BELOW, CC=unsigned ABOVE EQUAL, LS=unsigned BELOW EQUAL
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top