Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 26 of 26 for redirection (0.49 sec)

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

    		{name: "FlagConstant", aux: "FlagConstant"},
    
    		// (InvertFlags (CMP a b)) == (CMP b a)
    		// InvertFlags is a pseudo-op which can't appear in assembly output.
    		{name: "InvertFlags", argLength: 1}, // reverse direction of arg0
    
    		// atomic loads.
    		// load from arg0. arg1=mem. auxint must be zero.
    		// returns <value,memory> so they can be properly ordered with other loads.
    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. src/runtime/mgcscavenge.go

    // that memory limit. For that, we look at total memory that has been committed
    // (memstats.mappedReady) and try to bring that down below the limit. In this case,
    // we want to give buffer space in the *opposite* direction. When the application
    // is close to the limit, we want to make sure we push harder to keep it under, so
    // if we target below the memory limit, we ensure that the background scavenger is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  3. src/text/template/exec_test.go

    	}
    	err = tmpl.Execute(io.Discard, B{})
    	// We expect an error, not a panic.
    	if err == nil {
    		t.Fatal("did not get error for nil embedded struct")
    	}
    	if !strings.Contains(err.Error(), "reflect: indirection through nil pointer to embedded struct field A") {
    		t.Fatal(err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

      // The vector of TestInfos in their original order.  It owns the
      // elements in the vector.
      std::vector<TestInfo*> test_info_list_;
      // Provides a level of indirection for the test list to allow easy
      // shuffling and restoring the test order.  The i-th element in this
      // vector is the index of the i-th test in the shuffled test list.
      std::vector<int> test_indices_;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

      // The vector of TestInfos in their original order.  It owns the
      // elements in the vector.
      std::vector<TestInfo*> test_info_list_;
      // Provides a level of indirection for the test list to allow easy
      // shuffling and restoring the test order.  The i-th element in this
      // vector is the index of the i-th test in the shuffled test list.
      std::vector<int> test_indices_;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    ```
    ### `-tf-move-transposes`
    
    _Move transposes pass._
    
    
    #### Options
    ```
    -fold-transpose-in-ops : Whether to fold transposes in ops which can support folding.
    -direction             : Move transposes to the beginning or the end of the block where they are defined.
    ```
    ### `-tf-name-anonymous-iterators`
    
    _Converts anonymous iterators to named iterators_
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
Back to top