Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 640 for corerest (0.31 sec)

  1. 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)
  2. 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)
  3. pkg/api/v1/persistentvolume/util_test.go

    	}
    	if extraPaths := secretPaths.Difference(expectedSecretPaths); len(extraPaths) > 0 {
    		t.Logf("Extra secret paths:\n%s", strings.Join(sets.List[string](extraPaths), "\n"))
    		t.Error("Extra fields with 'secret' in the name found. Verify VisitPVSecretNames() is including these fields if appropriate, then correct expectedSecretPaths")
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 25 11:04:08 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/registry/rest/update.go

    	// For example: `spec.imagePullSecrets[0].name: invalid empty name ""`
    	//
    	// Use warning messages to describe problems the client making the API request should correct or be aware of.
    	// For example:
    	// - use of deprecated fields/labels/annotations that will stop working in a future release
    	// - use of obsolete fields/labels/annotations that are non-functional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 27 11:48:28 UTC 2022
    - 11.8K 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. src/cmd/compile/internal/ssa/loopreschedchecks.go

    		//    if sp < g.limit { goto sched }
    		//    goto join
    		// sched:
    		//    mem1 := call resched (mem0)
    		//    goto join
    		// join:
    		//    mem2 := phi(mem0, mem1)
    		//    goto h
    		//
    		// and correct arg i of headerMemPhi and headerCtrPhi
    		//
    		// EXCEPT: join block containing only phi functions is bad
    		// for the register allocator.  Therefore, there is no
    		// join, and branches targeting join must instead target
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 21:17:10 UTC 2023
    - 16K bytes
    - Viewed (0)
  8. tensorflow/c/experimental/saved_model/internal/BUILD

            "//tensorflow/c/experimental/saved_model/public:signature_def_param_list",
            "//tensorflow/c/experimental/saved_model/public:tensor_spec",
            "//tensorflow/core:lib",
            "//tensorflow/core:test",
            "//tensorflow/core:test_main",
        ],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 01 20:19:06 UTC 2024
    - 11K bytes
    - Viewed (0)
  9. 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)
  10. tensorflow/compiler/mlir/tensorflow/ir/tf_device_ops.td

        must provide correct control dependencies between regions to guarantee
        correctness. Regions in ParallelExecute may include Resource ops.
    
        In the case where different regions include ops access the same resource,
        the users of the ParallelExecute op must provide mechanism (via send/recvs
        or via control dependencies) to guarantee correct ordering. Sequential
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 23:53:20 UTC 2024
    - 14.8K bytes
    - Viewed (0)
Back to top