Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of about 10,000 for conditional (0.18 sec)

  1. src/compress/bzip2/huffman.go

    			// Use ReadBits to retrieve a single bit
    			// from the underling io.ByteReader.
    			bit = uint16(br.ReadBits(1))
    		}
    
    		// Trick a compiler into generating conditional move instead of branch,
    		// by making both loads unconditional.
    		l, r := node.left, node.right
    
    		if bit == 1 {
    			nodeIndex = l
    		} else {
    			nodeIndex = r
    		}
    
    		if nodeIndex == invalidNodeValue {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:44:37 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. guava-testlib/src/com/google/common/collect/testing/google/AbstractMultisetSetCountTester.java

    /**
     * Common superclass for {@link MultisetSetCountUnconditionallyTester} and {@link
     * MultisetSetCountConditionallyTester}. It is used by those testers to test calls to the
     * unconditional {@code setCount()} method and calls to the conditional {@code setCount()} method
     * when the expected present count is correct.
     *
     * @author Chris Povirk
     */
    @GwtCompatible(emulated = true)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/riscv/asm_test.go

    package riscv
    
    import (
    	"bytes"
    	"fmt"
    	"internal/testenv"
    	"os"
    	"os/exec"
    	"path/filepath"
    	"runtime"
    	"strings"
    	"testing"
    )
    
    // TestLargeBranch generates a large function with a very far conditional
    // branch, in order to ensure that it assembles successfully.
    func TestLargeBranch(t *testing.T) {
    	if testing.Short() {
    		t.Skip("Skipping test in short mode")
    	}
    	testenv.MustHaveGoBuild(t)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 22 01:50:18 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  4. android/guava-testlib/src/com/google/common/collect/testing/google/AbstractMultisetSetCountTester.java

    /**
     * Common superclass for {@link MultisetSetCountUnconditionallyTester} and {@link
     * MultisetSetCountConditionallyTester}. It is used by those testers to test calls to the
     * unconditional {@code setCount()} method and calls to the conditional {@code setCount()} method
     * when the expected present count is correct.
     *
     * @author Chris Povirk
     */
    @GwtCompatible(emulated = true)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/internal/cache/CacheStrategy.kt

    /**
     * Given a request and cached response, this figures out whether to use the network, the cache, or
     * both.
     *
     * Selecting a cache strategy may add conditions to the request (like the "If-Modified-Since" header
     * for conditional GETs) or warnings to the cached response (if the cached data is potentially
     * stale).
     */
    class CacheStrategy internal constructor(
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 13:24:48 UTC 2024
    - 12K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/telemetry/internal/crashmonitor/monitor.go

    	// even validation of an environment variable, and we really
    	// want to steer users aware from any logic before Start. The
    	// flags and arguments will be wrong in the child process, and
    	// every extra conditional branch creates a risk that the
    	// recursively executed child program will behave not like the
    	// monitor but like the application. If the child process
    	// exits before calling Start, then the parent application
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top