Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,935 for parsable (0.37 sec)

  1. test/loopbce.go

    		x += a[i] // ERROR "(\([0-9]+\) )?Proved IsInBounds$"
    	}
    	return x
    }
    
    func f4(a [10]int) int {
    	x := 0
    	for i := 0; i < len(a); i += 2 { // ERROR "Induction variable: limits \[0,8\], increment 2$"
    		x += a[i] // ERROR "(\([0-9]+\) )?Proved IsInBounds$"
    	}
    	return x
    }
    
    func f5(a [10]int) int {
    	x := 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/xla_device_ops.cc

          errors::InvalidArgument(
              "Trying to assign variable with wrong dtype. Expected ",
              DataTypeString(variable->tensor()->dtype()), " got ",
              DataTypeString(dtype_)));
      variable->is_initialized = true;
      *variable->tensor() = value;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. test/fixedbugs/issue26616.go

    package p
    
    var x int = three() // ERROR "assignment mismatch: 1 variable but three returns 3 values|multiple-value function call in single-value context|multiple-value "
    
    func f() {
    	var _ int = three() // ERROR "assignment mismatch: 1 variable but three returns 3 values|multiple-value function call in single-value context|multiple-value "
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 23 19:41:41 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  4. pkg/test/env/istio.go

    	"strings"
    
    	"istio.io/istio/pkg/log"
    )
    
    var (
    	// TARGET_OUT environment variable
    	// nolint: revive, stylecheck
    	TARGET_OUT Variable = "TARGET_OUT"
    
    	// LOCAL_OUT environment variable
    	// nolint: revive, stylecheck
    	LOCAL_OUT Variable = "LOCAL_OUT"
    
    	// REPO_ROOT environment variable
    	// nolint: revive, stylecheck
    	REPO_ROOT Variable = "REPO_ROOT"
    
    	// HUB is the Docker hub to be used for images.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 16:24:40 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/variable_info_util.cc

      });
    
      mutex* prev = nullptr;
      for (int i : lock_order) {
        Var* variable = variables[i]->var();
        if (variable == nullptr) {
          // All empty VariableInfo instances are at the end of the order
          // so we're done.
          break;
        }
        mutex* mu = variable->mu();
        if (prev == mu) {
          // It is an error to pass the same variable handle twice to the same XLA
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 7K bytes
    - Viewed (0)
  6. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/idea/model/PathFactory.java

            Variable match = null;
            for (Variable variable : variables) {
                if (file.getAbsolutePath().equals(variable.getDir().getAbsolutePath())) {
                    match = variable;
                    break;
                }
                if (file.getAbsolutePath().startsWith(variable.getPrefix())) {
                    if (match == null || variable.getPrefix().startsWith(match.getPrefix())) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/promise/interface.go

    limitations under the License.
    */
    
    package promise
    
    // WriteOnce represents a variable that is initially not set and can
    // be set once and is readable.  This is the common meaning for
    // "promise".
    type WriteOnce interface {
    	// Get reads the current value of this variable.  If this
    	// variable is not set yet then this call blocks until this
    	// variable gets a value.
    	Get() interface{}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 10 14:37:53 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/test_fuzz_setenv.txt

      if s := os.Getenv("TEST_FUZZ_SETENV_A"); isWorker() && s == "" {
        f.Fatal("environment variable not set")
      } else if !isWorker() && s != "" {
        f.Fatal("environment variable already set")
      }
      f.Setenv("TEST_FUZZ_SETENV_A", "A")
      if os.Getenv("TEST_FUZZ_SETENV_A") == "" {
        f.Fatal("Setenv did not set environment variable")
      }
      f.Fuzz(func(*testing.T, []byte) {})
    }
    
    func FuzzB(f *testing.F) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 943 bytes
    - Viewed (0)
  9. src/internal/types/testdata/spec/range.go

    	// but there is no gofmt-friendly way to write the error pattern in the right place.
    	m1 := T.M
    	for range m1 /* ERROR "cannot range over m1 (variable of type func(T)): func must be func(yield func(...) bool): argument is not func" */ {
    	}
    	m2 := (*T).PM
    	for range m2 /* ERROR "cannot range over m2 (variable of type func(*T)): func must be func(yield func(...) bool): argument is not func" */ {
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 04:31:42 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  10. tensorflow/c/experimental/saved_model/core/ops/variable_ops_test.cc

      ImmediateTensorHandlePtr variable;
      TF_EXPECT_OK(internal::CreateUninitializedResourceVariable(
          context(), DT_FLOAT, {}, nullptr, &variable));
    
      // Create a Scalar float TensorHandle with value 42, and assign it to
      // the variable.
      ImmediateTensorHandlePtr my_value = CreateScalarTensorHandle(context(), 42.0);
      TF_EXPECT_OK(internal::AssignVariable(context(), variable.get(), DT_FLOAT,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 21 19:26:54 UTC 2020
    - 3.8K bytes
    - Viewed (0)
Back to top