Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 48 for tid1 (0.08 sec)

  1. src/internal/trace/order.go

    	if err := validateCtx(curCtx, event.UserGoReqs); err != nil {
    		return curCtx, false, err
    	}
    	tid := TaskID(ev.args[0])
    	nameID := stringID(ev.args[1])
    	name, ok := evt.strings.get(nameID)
    	if !ok {
    		return curCtx, false, fmt.Errorf("invalid string ID %v for %v event", nameID, ev.typ)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  2. src/cmd/go/internal/cfg/cfg.go

    	BuildWork          bool // -work flag
    	BuildX             bool // -x flag
    
    	ModCacheRW bool   // -modcacherw flag
    	ModFile    string // -modfile flag
    
    	CmdName string // "build", "install", "list", "mod tidy", etc.
    
    	DebugActiongraph  string // -debug-actiongraph flag (undocumented, unstable)
    	DebugTrace        string // -debug-trace flag
    	DebugRuntimeTrace string // -debug-runtime-trace flag (undocumented, unstable)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:51 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  3. Makefile.core.mk

    # If pre-commit script is not used, please run this manually.
    precommit: format lint
    
    format: fmt ## Auto formats all code. This should be run before sending a PR.
    
    fmt: format-go format-python tidy-go
    
    ifeq ($(DEBUG),1)
    # gobuild script uses custom linker flag to set the variables.
    RELEASE_LDFLAGS=''
    else
    RELEASE_LDFLAGS='-extldflags -static -s -w'
    endif
    
    # List of all binaries to build
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 02 19:53:04 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  4. src/syscall/syscall_linux.go

    	return
    }
    
    //sysnb	Getpid() (pid int)
    //sysnb	Getppid() (ppid int)
    //sys	Getpriority(which int, who int) (prio int, err error)
    //sysnb	Getrusage(who int, rusage *Rusage) (err error)
    //sysnb	Gettid() (tid int)
    //sys	Getxattr(path string, attr string, dest []byte) (sz int, err error)
    //sys	InotifyAddWatch(fd int, pathname string, mask uint32) (watchdesc int, err error)
    //sysnb	InotifyInit1(flags int) (fd int, err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

        DefaultValuedOptionalAttr<BoolAttr, "false">:$keep_dims
      );
    
      let results = (outs
        Res<TF_BoolTensor, [{The reduced tensor.}]>:$output
      );
    
      TF_DerivedOperandTypeAttr Tidx = TF_DerivedOperandTypeAttr<1>;
    
      let hasVerifier = 1;
    }
    
    def TF_AllToAllOp : TF_Op<"AllToAll", [Pure, TF_NoConstantFold]> {
      let summary = "An Op to exchange data across TPU replicas.";
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/transforms/legalize_tf.cc

    // MatrixDiagV{2,3} to MatrixDiag, which only takes single-diagonal inputs, we
    // can safely ignore this V3 attribute.
    // We can't pass `rewriter` by reference because clang-tidy will want it to be
    // constant (`const PatternRewriter& rewriter`). If we do that, we won't be able
    // to call `rewriter::replaceOpWihNewOp`, which is not a const member function.
    template <typename MatrixDiagV2OrV3Op>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 20:06:54 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    //sys	isWellKnownSid(sid *SID, sidType WELL_KNOWN_SID_TYPE) (isWellKnown bool) = advapi32.IsWellKnownSid
    //sys	FreeSid(sid *SID) (err error) [failretval!=0] = advapi32.FreeSid
    //sys	EqualSid(sid1 *SID, sid2 *SID) (isEqual bool) = advapi32.EqualSid
    //sys	getSidIdentifierAuthority(sid *SID) (authority *SidIdentifierAuthority) = advapi32.GetSidIdentifierAuthority
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modget/get.go

    				fmt.Fprintf(os.Stderr, "\tnote: expanded dependencies to upgrade to go %s or higher; run 'go mod tidy' to clean up\n", gover.ExplicitIndirectVersion)
    			}
    
    		} else {
    			fmt.Fprintf(os.Stderr, "go: downgraded %s %s => %s\n", c.path, c.old, c.new)
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	shellWindow = HWND(r0)
    	return
    }
    
    func GetWindowThreadProcessId(hwnd HWND, pid *uint32) (tid uint32, err error) {
    	r0, _, e1 := syscall.Syscall(procGetWindowThreadProcessId.Addr(), 2, uintptr(hwnd), uintptr(unsafe.Pointer(pid)), 0)
    	tid = uint32(r0)
    	if tid == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func IsWindow(hwnd HWND) (isWindow bool) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet_test.go

    		} else {
    			cStatuses = append([]*kubecontainer.Status{cStatus}, cStatuses...)
    		}
    		specContainerList = append(specContainerList, v1.Container{Name: containerName})
    	}
    	pod := podWithUIDNameNs("uid1", "foo", "test")
    	pod.Spec = v1.PodSpec{
    		Containers: specContainerList,
    	}
    
    	status := &kubecontainer.PodStatus{
    		ID:                pod.UID,
    		Name:              pod.Name,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
Back to top