Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 640 for corerest (0.22 sec)

  1. pkg/controller/cronjob/utils.go

    //   - value indicating either none missed schedules, a few missed or many missed
    //   - error in an edge case where the schedule specification is grammatically correct,
    //     but logically doesn't make sense (31st day for months with only 30 days, for example).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/BUILD

            "//tensorflow/compiler/mlir/tf2xla/api/v2:legalize_tf",
            "//tensorflow/compiler/tf2xla:xla_helpers",
            "//tensorflow/core:framework",
            "//tensorflow/core:protos_all_cc",
            "//tensorflow/core:test",
            "//tensorflow/core:test_main",
            "//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: Fri May 03 02:59:01 UTC 2024
    - 28.3K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. src/go/printer/testdata/expressions.input

    	_ = "170141183460469231731687303715884105727"  // prime
    )
    
    
    // Correct placement of operators and comments in multi-line expressions
    func _() {
    	_ = a +  // comment
    		b +  // comment
    		c
    	_ = "a"	+
    		"b" +	// comment
    		"c"
    	_ = "ba0408" + "7265717569726564"     // field 71, encoding 2, string "required"
    }
    
    
    // Correct placement of terminating comma/closing parentheses in multi-line calls.
    func _() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 03 16:41:54 UTC 2017
    - 12.1K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top