Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 418 for corerest (0.14 sec)

  1. 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)
  2. src/runtime/stkframe.go

    	//   and this is the return PC (just after the CALL
    	//   instruction). In this case, pc-1 reflects the CALL
    	//   instruction itself and is the correct source of symbolic
    	//   information.
    	//
    	// - If this frame "called" sigpanic, then pc is the
    	//   instruction that panicked, and pc is the correct address
    	//   to use for symbolic information.
    	//
    	// - If this is the innermost frame, then PC is where
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/GradleKotlinDslIntegrationTest.kt

            )
        }
    
        @Test
        fun `given a buildscript block compilation error, it reports correct error location`() {
    
            assertCorrectLocationIsReportedForErrorIn("buildscript")
        }
    
        @Test
        fun `given a plugins block compilation error, it reports correct error location`() {
    
            assertCorrectLocationIsReportedForErrorIn("plugins")
        }
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 18:26:28 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. src/cmd/compile/internal/types2/initorder.go

    			M[obj] = &graphNode{obj: obj}
    		}
    	}
    
    	// compute edges for graph M
    	// (We need to include all nodes, even isolated ones, because they still need
    	// to be scheduled for initialization in correct order relative to other nodes.)
    	for obj, n := range M {
    		// for each dependency obj -> d (= deps[i]), create graph edges n->s and s->n
    		for d := range objMap[obj].deps {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 22:06:51 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  7. src/go/types/initorder.go

    			M[obj] = &graphNode{obj: obj}
    		}
    	}
    
    	// compute edges for graph M
    	// (We need to include all nodes, even isolated ones, because they still need
    	// to be scheduled for initialization in correct order relative to other nodes.)
    	for obj, n := range M {
    		// for each dependency obj -> d (= deps[i]), create graph edges n->s and s->n
    		for d := range objMap[obj].deps {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/encapsulate_xla_computations_pass.cc

      // Sorts the retvals by name so the order is deterministic.
      std::sort(retvals.begin(), retvals.end(),
                [](Node* a, Node* b) { return a->name() < b->name(); });
    
      // Computes the permutation to produce the correct argument order, and update
      // the argument indices.
      int variable_start_index = num_args;
      for (int i = 0; i < num_args; ++i) {
        int index;
        TF_RETURN_IF_ERROR(GetIndexAttr(*args[i], num_args, &index));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top