Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 619 for corerest (0.26 sec)

  1. src/syscall/js/js_test.go

    	// - makeValue: new(ref)
    	// - makeArgSlices: argVals = make([]Value, size)
    	// - makeArgSlices: argRefs = make([]ref, size)
    	{17, 3},
    	{32, 3},
    	{42, 3},
    }
    
    // TestCallAllocations ensures the correct allocation profile for Value.Call
    func TestCallAllocations(t *testing.T) {
    	for _, test := range allocTests {
    		args := make([]any, test.argLen)
    
    		tmpArray := js.Global().Get("Array").New(0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 19 14:35:26 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  2. src/internal/types/testdata/check/stmt0.go

    		}
    	}
    }
    
    // Test that each case clause uses the correct type of the variable
    // declared by the type switch (issue 5504).
    func typeswitch0() {
    	switch y := interface{}(nil).(type) {
    	case int:
    		func() int { return y + 0 }()
    	case float32:
    		func() float32 { return y }()
    	}
    }
    
    // Test correct scope setup.
    // (no redeclaration errors expected in the type switch)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 19K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/api/v2/BUILD

            "//tensorflow/compiler/tf2xla:xla_compiler",
            "//tensorflow/compiler/tf2xla:xla_helpers",
            "//tensorflow/core:framework",
            "//tensorflow/core:lib",
            "//tensorflow/core:test",
            "//tensorflow/core:test_main",
            "//tensorflow/core/lib/monitoring:cell_reader",
            "//tensorflow/core/protobuf:for_core_protos_cc",
            "//tensorflow/core/protobuf/tpu:compile_metadata_proto_cc",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 23:04:51 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/prepare_composite_functions_tf.cc

      // function attribute prefixed with `"indy_lstm_"`.
      // IndyLSTMs have diagonal recurrent weight matrices and can benefit from
      // more efficent operations in TFLite with the correct conversion (i.e. when
      // the diagonal recurrent weight matrices are provided as vectors).
      if (attr.getValue().starts_with("indy_lstm_")) {
        // Check if the keras lstm can be fused, if not, we just don't do anything.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/validtype.go

    		//           are not valid, the validity check ends prematurely because A
    		//           is considered valid, even though its validity depends on the
    		//           type argument provided to it.
    		//
    		//           A correct optimization is important for pathological cases.
    		//           Keep code around for reference until we found an optimization.
    		//
    		// // Exit early if we already know t is valid.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 13:22:37 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  6. src/go/types/validtype.go

    		//           are not valid, the validity check ends prematurely because A
    		//           is considered valid, even though its validity depends on the
    		//           type argument provided to it.
    		//
    		//           A correct optimization is important for pathological cases.
    		//           Keep code around for reference until we found an optimization.
    		//
    		// // Exit early if we already know t is valid.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/analysis/side_effect_analysis.h

    // - The control dependencies provided by side effect analysis are guaranteed to
    //   be sufficient for correct execution but they are not guaranteed to be
    //   minimal (that means, some control dependencies might not be required for
    //   correct execution).
    class SideEffectAnalysisInfo {
     public:
      SideEffectAnalysisInfo() = default;
    
      // Constructs analysis info by analyzing the given function.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/aggregate/controller_test.go

    	instances := aggregateCtl.GetProxyServiceTargets(&model.Proxy{IPAddresses: []string{mock.HelloInstanceV0}})
    	if len(instances) != 6 {
    		t.Fatalf("Returned GetProxyServiceTargets' amount %d is not correct", len(instances))
    	}
    	for _, inst := range instances {
    		if inst.Service.Hostname != mock.HelloService.Hostname {
    			t.Fatal("Returned Instance is incorrect")
    		}
    	}
    
    	// Get Instances from mockAdapter2
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 06:28:11 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/volumebinding/assume_cache_test.go

    		}
    		if !scenario.shouldSucceed && err == nil {
    			t.Errorf("Test %q failed: Assume() returned success but expected error", name)
    		}
    
    		// Check that GetPV returns correct PV
    		expectedPV := scenario.newPV
    		if !scenario.shouldSucceed {
    			expectedPV = scenario.oldPV
    		}
    		if err := verifyPV(cache, scenario.oldPV.Name, expectedPV); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  10. docs/en/docs/tutorial/dependencies/index.md

    Whenever a new request arrives, **FastAPI** will take care of:
    
    * Calling your dependency ("dependable") function with the correct parameters.
    * Get the result from your function.
    * Assign that result to the parameter in your *path operation function*.
    
    ```mermaid
    graph TB
    
    common_parameters(["common_parameters"])
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 11.6K bytes
    - Viewed (0)
Back to top