Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 264 for corerest (0.24 sec)

  1. src/cmd/compile/internal/types2/instantiate.go

    	case *Alias:
    		// TODO(gri) is this correct?
    		assert(expanding == nil) // Alias instances cannot be reached from Named types
    
    		tparams := orig.TypeParams()
    		// TODO(gri) investigate if this is needed (type argument and parameter count seem to be correct here)
    		if !check.validateTArgLen(pos, orig.String(), tparams.Len(), len(targs)) {
    			return Typ[Invalid]
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  2. common/config/.golangci.yml

        # it's a comma-separated list of prefixes
        local-prefixes: istio.io/
      misspell:
        # Correct spellings using locale preferences for US or UK.
        # Default is to use a neutral variety of English.
        # Setting locale to US will correct the British spelling of 'colour' to 'color'.
        locale: US
        ignore-words:
          - cancelled
      lll:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 20:03:06 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  3. src/index/suffixarray/suffixarray_test.go

    	// Index may not find the results in the same order as find) => in general
    	// we cannot simply check that the res and exp lists are equal
    
    	// check that each result is in fact a correct match and there are no duplicates
    	slices.Sort(res)
    	for i, r := range res {
    		if r < 0 || len(tc.source) <= r {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  4. platforms/native/tooling-native/src/crossVersionTest/groovy/org/gradle/language/cpp/tooling/r410/CppModelCrossVersionSpec.groovy

            project.testComponent.baseName == 'coreTest'
    
            project.testComponent.binaries.size() == 1
            def testBinary = project.testComponent.binaries[0]
            testBinary instanceof CppExecutable
            testBinary.name == 'testExecutable'
            testBinary.variantName == 'debug'
            testBinary.baseName == 'coreTest'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/translate/BUILD

    )
    
    tf_cc_test(
        name = "tf_mlir_translate_registration_test",
        size = "small",
        srcs = ["tf_mlir_translate_registration_test.cc"],
        deps = [
            ":translate_registration",
            "//tensorflow/core:test",
            "//tensorflow/core:test_main",
            "@com_google_absl//absl/strings",
            "@llvm-project//llvm:Support",
            "@llvm-project//mlir:TranslateLib",
        ],
    )
    
    cc_library(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 11K bytes
    - Viewed (0)
  6. tensorflow/cc/experimental/libtf/value.h

        return v;
      }
      /// Destroys TaggedValue. Shared pointers in unions must be explicitly
      /// deleted.
      void destroy() {
        if (type_ != NONE) {
          // Explicitly run the destructor on the correct type.
          visit<void>([](auto& x) {
            using T = typename std::decay<decltype(x)>::type;
            x.~T();
          });
          // Make the type None, whenever we destroy so we always have an
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:23:45 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  7. cmd/metacache-walk.go

    				pop := dirStack[len(dirStack)-1]
    				select {
    				case <-ctx.Done():
    					return ctx.Err()
    				case out <- metaCacheEntry{name: pop}:
    				}
    				if opts.Recursive {
    					// Scan folder we found. Should be in correct sort order where we are.
    					err := scanDir(pop)
    					if err != nil && !IsErrIgnored(err, context.Canceled) {
    						internalLogIf(ctx, err)
    					}
    				}
    				dirStack = dirStack[:len(dirStack)-1]
    			}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Jun 01 05:17:37 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top