Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,647 for conditional (0.25 sec)

  1. src/cmd/internal/obj/s390x/a.out.go

    	ASUBC
    	ASUBV
    	ASUBE
    	ASUBW
    	ANEG
    	ANEGW
    
    	// integer moves
    	AMOVWBR
    	AMOVB
    	AMOVBZ
    	AMOVH
    	AMOVHBR
    	AMOVHZ
    	AMOVW
    	AMOVWZ
    	AMOVD
    	AMOVDBR
    
    	// conditional moves
    	AMOVDEQ
    	AMOVDGE
    	AMOVDGT
    	AMOVDLE
    	AMOVDLT
    	AMOVDNE
    	ALOCR
    	ALOCGR
    
    	// find leftmost one
    	AFLOGR
    
    	// population count
    	APOPCNT
    
    	// integer bitwise
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 16:41:03 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  2. tensorflow/c/while_loop_test.cc

        ASSERT_EQ(sizeof(int32_t), TF_TensorByteSize(out));
        int32_t* data = static_cast<int32_t*>(TF_TensorData(out));
        EXPECT_EQ(expected_value, *data);
      }
    
      // Create a valid conditional graph. Useful for testing unrelated errors.
      void CreateCondGraph() {
        TF_Operation* one = ScalarConst(1, params_->cond_graph, s_);
        TF_Operation* less_than =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 11 06:05:56 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top