Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for run_id (0.14 sec)

  1. src/cmd/internal/testdir/testdir_test.go

    			names = append(names, name)
    		}
    	}
    	sort.Strings(names)
    	return names
    }
    
    type runCmd func(...string) ([]byte, error)
    
    func compileFile(runcmd runCmd, longname string, flags []string) (out []byte, err error) {
    	cmd := []string{goTool, "tool", "compile", "-e", "-p=p", "-importcfg=" + stdlibImportcfgFile()}
    	cmd = append(cmd, flags...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  2. src/runtime/traceback.go

    		throw("traceback stuck")
    	}
    
    	injectedCall := f.funcID == abi.FuncID_sigpanic || f.funcID == abi.FuncID_asyncPreempt || f.funcID == abi.FuncID_debugCallV2
    	if injectedCall {
    		u.flags |= unwindTrap
    	} else {
    		u.flags &^= unwindTrap
    	}
    
    	// Unwind to next frame.
    	u.calleeFuncID = f.funcID
    	frame.fn = flr
    	frame.pc = frame.lr
    	frame.lr = 0
    	frame.sp = frame.fp
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

    }
    
    bool IsInSubgraph(const string& func_id) { return !func_id.empty(); }
    
    Status Encapsulator::CopySubgraphNodes(
        absl::flat_hash_map<const Node*, Node*>* node_images) {
      for (Node* node : graph_in_->op_nodes()) {
        string func_id;
        TF_RETURN_IF_ERROR(GetFunctionNameAttr(node, &func_id));
        if (!IsInSubgraph(func_id)) continue;
    
        Subgraph& subgraph = subgraphs_[func_id];
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  4. internal/bucket/lifecycle/lifecycle_test.go

    		})
    	}
    	lc := Lifecycle{
    		Rules: rules,
    	}
    	if event := lc.NoncurrentVersionsExpirationLimit(ObjectOpts{Name: "obj"}); event.RuleID != "1" || event.NoncurrentDays != 1 || event.NewerNoncurrentVersions != 1 {
    		t.Fatalf("Expected (ruleID, days, lim) to be (\"1\", 1, 1) but got (%s, %d, %d)", event.RuleID, event.NoncurrentDays, event.NewerNoncurrentVersions)
    	}
    }
    
    func TestMaxNoncurrentBackwardCompat(t *testing.T) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 01:12:48 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    func Setgid(gid int) (err error) {
    	return syscall.Setgid(gid)
    }
    
    func Setreuid(ruid, euid int) (err error) {
    	return syscall.Setreuid(ruid, euid)
    }
    
    func Setregid(rgid, egid int) (err error) {
    	return syscall.Setregid(rgid, egid)
    }
    
    func Setresuid(ruid, euid, suid int) (err error) {
    	return syscall.Setresuid(ruid, euid, suid)
    }
    
    func Setresgid(rgid, egid, sgid int) (err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  6. src/runtime/mgcmark.go

    	if _DebugGC > 1 && frame.continpc != 0 {
    		print("scanframe ", funcname(frame.fn), "\n")
    	}
    
    	isAsyncPreempt := frame.fn.valid() && frame.fn.funcID == abi.FuncID_asyncPreempt
    	isDebugCall := frame.fn.valid() && frame.fn.funcID == abi.FuncID_debugCallV2
    	if state.conservative || isAsyncPreempt || isDebugCall {
    		if debugScanConservative {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/deadness_analysis.cc

        VLOG(4) << "Visiting " << curr_node->name();
        order->push_back(curr_node);
    
        for (const Edge* out_edge : curr_node->out_edges()) {
          Node* out = out_edge->dst();
          int out_id = out->id();
          if (IsNextIteration(curr_node) && IsMerge(out)) {
            // Edge NextIteration->Merge has been counted.
            continue;
          }
          ++num_ready_inputs[out->id()];
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_linux.go

    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func getresuid(ruid *_C_int, euid *_C_int, suid *_C_int) {
    	RawSyscallNoError(SYS_GETRESUID, uintptr(unsafe.Pointer(ruid)), uintptr(unsafe.Pointer(euid)), uintptr(unsafe.Pointer(suid)))
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  9. src/cmd/link/internal/loader/loader.go

    	return int((*goobj.FuncInfo)(nil).ReadArgs(fi.data))
    }
    
    func (fi *FuncInfo) Locals() int {
    	return int((*goobj.FuncInfo)(nil).ReadLocals(fi.data))
    }
    
    func (fi *FuncInfo) FuncID() abi.FuncID {
    	return (*goobj.FuncInfo)(nil).ReadFuncID(fi.data)
    }
    
    func (fi *FuncInfo) FuncFlag() abi.FuncFlag {
    	return (*goobj.FuncInfo)(nil).ReadFuncFlag(fi.data)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
Back to top