Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 88 for told (0.05 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.go

    func Renameat(fromfd int, from string, tofd int, to string) (err error) {
    	var _p0 *byte
    	_p0, err = BytePtrFromString(from)
    	if err != nil {
    		return
    	}
    	var _p1 *byte
    	_p1, err = BytePtrFromString(to)
    	if err != nil {
    		return
    	}
    	_, _, e1 := syscall_syscall6(libc_renameat_trampoline_addr, uintptr(fromfd), uintptr(unsafe.Pointer(_p0)), uintptr(tofd), uintptr(unsafe.Pointer(_p1)), 0, 0)
    	if e1 != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 66.7K bytes
    - Viewed (0)
  2. tensorflow/c/eager/c_api_test.cc

      CHECK_EQ(TF_OK, TF_GetCode(status)) << TF_Message(status);
      TF_DeleteStatus(status);
    }
    BENCHMARK(BM_ReadVariable);
    
    TEST(CAPI, StringAttributes) {
      // Test that TFE_OpSetAttrString doesn't hold on to the value after it
      // returns.
      TF_Status* status = TF_NewStatus();
      TFE_ContextOptions* opts = TFE_NewContextOptions();
      TFE_Context* ctx = TFE_NewContext(opts, status);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 03 20:50:20 UTC 2023
    - 94.6K bytes
    - Viewed (0)
  3. cmd/erasure-server-pool.go

    	// Remove entries that are above.
    	for i, z := range p {
    		if z.Available > 0 && z.MaxUsedPct < max {
    			continue
    		}
    		p[i].Available = 0
    	}
    }
    
    // getAvailablePoolIdx will return an index that can hold size bytes.
    // -1 is returned if no serverPools have available space for the size given.
    func (z *erasureServerPools) getAvailablePoolIdx(ctx context.Context, bucket, object string, size int64) int {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
  4. src/testing/testing.go

    // was the entry point into the test and the test is not a subtest.
    // This function must be called with c.mu held.
    func (c *common) frameSkip(skip int) runtime.Frame {
    	// If the search continues into the parent test, we'll have to hold
    	// its mu temporarily. If we then return, we need to unlock it.
    	shouldUnlock := false
    	defer func() {
    		if shouldUnlock {
    			c.mu.Unlock()
    		}
    	}()
    	var pc [maxStackLen]uintptr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/rewrite.go

    					if a.Op != OpCopy {
    						continue
    					}
    					aa := copySource(a)
    					v.SetArg(i, aa)
    					// If a, a copy, has a line boundary indicator, attempt to find a new value
    					// to hold it.  The first candidate is the value that will replace a (aa),
    					// if it shares the same block and line and is eligible.
    					// The second option is v, which has a as an input.  Because aa is earlier in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  6. hack/local-up-cluster.sh

        ETCD_PID=
      fi
    }
    
    function print_color {
      message=$1
      prefix=${2:+$2: } # add colon only if defined
      color=${3:-1}     # default is red
      echo -n "$(tput bold)$(tput setaf "${color}")"
      echo "${prefix}${message}"
      echo -n "$(tput sgr0)"
    }
    
    function warning_log {
      print_color "$1" "W$(date "+%m%d %H:%M:%S")]" 1
    }
    
    function start_etcd {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

                std::unique_ptr<Graph>* subgraph,
                std::vector<int>* input_permutation,
                std::vector<int>* output_permutation, NodeDef* node) {
            // Optimize the subgraph.
            // Do not constant fold nodes that output DT_VARIANT type tensors.
            // XLA does not support Const nodes of Variant type since it needs
            // to know the original ops to be able to compile them to the relevant
            // XLA form.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

      func::FuncOp lifted_callee;
      // Mapping from old resource outputs to their aliasing output inputs.
      llvm::SmallDenseMap<int64_t, int64_t> old_outputs_aliasing_old_inputs;
      // Mapping from old to new output indices in case any output is removed.
      llvm::SmallVector<int64_t, 4> old_to_new_output_indices;
      // ResourceArgUseInfo for each old resource argument.
      llvm::SmallDenseMap<int64_t, ResourceArgUseInfo> use_info;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/route/route.go

    				action.RegexRewrite = &matcher.RegexMatchAndSubstitute{
    					Pattern: &matcher.RegexMatcher{
    						Regex: fmt.Sprintf(`^%s(/?)(.*)`, regexp.QuoteMeta(out.Match.GetPathSeparatedPrefix())),
    					},
    					// hold `/` in case the entire path is removed
    					Substitution: `/\2`,
    				}
    			} else {
    				action.PrefixRewrite = uri
    			}
    		}
    		if in.Rewrite.GetAuthority() != "" {
    			authority = in.Rewrite.GetAuthority()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler.go

    }
    
    // removeStorage_locked removes the cached storage with the given uid as key from the storage map. This function
    // updates r.customStorage with the cleaned-up storageMap and tears down the old storage.
    // NOTE: Caller MUST hold r.customStorageLock to write r.customStorage thread-safely.
    func (r *crdHandler) removeStorage_locked(uid types.UID) {
    	storageMap := r.customStorage.Load().(crdStorageMap)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 52.9K bytes
    - Viewed (0)
Back to top