Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for tid1 (0.04 sec)

  1. pkg/test/framework/suite_test.go

    	}
    
    	var exit2Called bool
    	var errCode2 int
    	exitFn2 := func(errCode int) {
    		exit2Called = true
    		errCode2 = errCode
    	}
    
    	s := newTestSuite("tid1", runFn1, exitFn1, defaultSettingsFn)
    
    	s2 := newTestSuite("tid2", runFn2, exitFn2, defaultSettingsFn)
    
    	go s.Run()
    	waitForRun1.Wait()
    
    	s2.Run()
    	waitForTestCompletion.Done()
    	waitForExit1Call.Wait()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  2. src/syscall/exec_linux.go

    	CLONE_PARENT_SETTID  = 0x00100000 // set the TID in the parent
    	CLONE_CHILD_CLEARTID = 0x00200000 // clear the TID in the child
    	CLONE_DETACHED       = 0x00400000 // Unused, ignored
    	CLONE_UNTRACED       = 0x00800000 // set if the tracing process can't force CLONE_PTRACE on this clone
    	CLONE_CHILD_SETTID   = 0x01000000 // set the TID in the child
    	CLONE_NEWCGROUP      = 0x02000000 // New cgroup namespace
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 23K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/tainttoleration/taint_toleration_test.go

    				}},
    			oldObj: &v1.Pod{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:      "pod-2",
    					Namespace: "ns-1",
    					UID:       "uid1",
    				}},
    			newObj: &v1.Pod{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:      "pod-2",
    					Namespace: "ns-1",
    					UID:       "uid1",
    				},
    				Spec: v1.PodSpec{
    					Tolerations: []v1.Toleration{
    						{
    							Key:    "foo",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modfetch/fetch.go

    		}
    		f := strings.Fields(string(line))
    		if len(f) == 0 {
    			// blank line; skip it
    			continue
    		}
    		if len(f) != 3 {
    			if cfg.CmdName == "mod tidy" {
    				// ignore malformed line so that go mod tidy can fix go.sum
    				continue
    			} else {
    				base.Fatalf("malformed go.sum:\n%s:%d: wrong number of fields %v\n", file, lineno, len(f))
    			}
    		}
    		if f[2] == emptyGoModHash {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
Back to top