Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 3,172 for conditional (0.28 sec)

  1. src/cmd/internal/obj/riscv/cpu.go

    	// 7.1: Multiplication Operations
    	AMUL
    	AMULH
    	AMULHU
    	AMULHSU
    	AMULW
    	ADIV
    	ADIVU
    	AREM
    	AREMU
    	ADIVW
    	ADIVUW
    	AREMW
    	AREMUW
    
    	// 8.2: Load-Reserved/Store-Conditional Instructions
    	ALRD
    	ASCD
    	ALRW
    	ASCW
    
    	// 8.3: Atomic Memory Operations
    	AAMOSWAPD
    	AAMOADDD
    	AAMOANDD
    	AAMOORD
    	AAMOXORD
    	AAMOMAXD
    	AAMOMAXUD
    	AAMOMIND
    	AAMOMINUD
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 14:19:33 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. src/runtime/defer_test.go

    import (
    	"reflect"
    	"runtime"
    	"testing"
    )
    
    // Make sure open-coded defer exit code is not lost, even when there is an
    // unconditional panic (hence no return from the function)
    func TestUnconditionalPanic(t *testing.T) {
    	defer func() {
    		if recover() != "testUnconditional" {
    			t.Fatal("expected unconditional panic")
    		}
    	}()
    	panic("testUnconditional")
    }
    
    var glob int = 3
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 18:57:24 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  3. pkg/test/framework/components/echo/echotest/run.go

    			t.fromEachWorkloadCluster(ctx, from, func(ctx framework.TestContext, from echo.Instance) {
    				filteredDst := t.applyCombinationFilters(from, to)
    				if len(filteredDst) == 0 {
    					// this only happens due to conditional filters and when an entire deployment is filtered we should be noisy
    					ctx.Skipf("cases from %s in %s with %s as destination are removed by filters ",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 27 22:08:42 UTC 2023
    - 13K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/Response.kt

       * should not be read.
       */
      @get:JvmName("networkResponse") val networkResponse: Response?,
      /**
       * Returns the raw response received from the cache. Will be null if this response didn't use
       * the cache. For conditional get requests the cache response and network response may both be
       * non-null. The body of the returned response should not be read.
       */
      @get:JvmName("cacheResponse") val cacheResponse: Response?,
      /**
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 23 14:31:42 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  5. platforms/jvm/java-compiler-plugin/src/test/groovy/com/gradle/internal/compiler/java/listeners/ConstantsCollectorTest.groovy

            "String"     | "\"hello\""   | "+ \"world\""
            "int"        | "1"           | "+ 2"
            "boolean"    | "true"        | "& false"
        }
    
        def "collect all from conditional expressions"() {
            given:
            String clazz = """
    class A {
        private void method() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:06:26 UTC 2023
    - 22.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/transforms/legalization_op_config.cc

          // the bug. b/195583695 describes the motivation of this change.
          // See b/216355804 how to reproduce the bug regarding tf.RandomUniform Op
    
          // Conditional ops
          TypeID::get<TF::IfRegionOp>(),
          TypeID::get<TF::WhileRegionOp>(),
          TypeID::get<TF::CaseRegionOp>(),
          TypeID::get<TF::YieldOp>(),
      };
      return *ops;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  7. src/cmd/asm/internal/asm/testdata/riscv64.s

    	REMU	X5, X6, X7				// b3735302
    	DIVW	X5, X6, X7				// bb435302
    	DIVUW	X5, X6, X7				// bb535302
    	REMW	X5, X6, X7				// bb635302
    	REMUW	X5, X6, X7				// bb735302
    
    	// 8.2: Load-Reserved/Store-Conditional
    	LRW	(X5), X6				// 2fa30214
    	LRD	(X5), X6				// 2fb30214
    	SCW	X5, (X6), X7				// af23531a
    	SCD	X5, (X6), X7				// af33531a
    
    	// 8.3: Atomic Memory Operations
    	AMOSWAPW	X5, (X6), X7			// af23530e
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 04:42:21 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  8. doc/go_mem.html

    memory locations accessible to multiple goroutines.
    </p>
    
    <p>
    Not introducing data races into race-free programs means not moving
    writes out of conditional statements in which they appear.
    For example, a compiler must not invert the conditional in this program:
    </p>
    
    <pre>
    *p = 1
    if cond {
    	*p = 2
    }
    </pre>
    
    <p>
    That is, the compiler must not rewrite the program into this one:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 15:54:42 UTC 2024
    - 26.6K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/link.go

    // Usually, not all arguments are present.
    // For example, MOVL R1, R2 encodes using only As=MOVL, From=R1, To=R2.
    // The Scond field holds additional condition bits for systems (like arm)
    // that have generalized conditional execution.
    // (2) form is present for compatibility with older code,
    // to avoid too much changes in a single swing.
    // (1) scheme is enough to express any kind of operand combination.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/stack_ops_decomposition.cc

    LogicalResult DecomposeStackOpsInternal(
        Block*, ModuleOp, llvm::SmallDenseMap<Value, Value>*,
        llvm::StringMap<PartitionedCallStackOpsInfo>*);
    
    // Handles stack usage by a tf.While. It will convert the body and conditional
    // function signatures, and performs stack ops decomposition on them.
    LogicalResult HandleWhileOp(
        TF::WhileOp while_op, ModuleOp module,
        const llvm::SmallDenseMap<Value, Value>& data_var_to_size_var,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 23.8K bytes
    - Viewed (0)
Back to top