Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 48 for tid1 (0.11 sec)

  1. tests/fuzz/oss_fuzz_build.sh

    # This is a small hack to install this dependency, since it is not used anywhere,
    # and Go would therefore remove it from go.mod once we run "go mod tidy && go mod vendor".
    printf "package main\nimport _ \"github.com/AdamKorcz/go-118-fuzz-build/testing\"\n" > register.go
    go mod tidy
    
    # Find all native fuzzers and compile them
    # shellcheck disable=SC2016
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 15:50:05 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/buildlist.go

    					roots = append(roots, m)
    					pathIsRoot[m.Path] = true
    				}
    			}
    		}
    
    		if len(roots) > len(tidy.rootModules) {
    			gover.ModSort(roots)
    			tidy = newRequirements(pruned, roots, tidy.direct)
    		}
    	}
    
    	roots = tidy.rootModules
    	_, err := tidy.Graph(ctx)
    	if err != nil {
    		return nil, err
    	}
    
    	// We try to avoid adding explicit requirements for test-only dependencies of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  3. bin/update_deps.sh

    }
    
    make update-common
    
    export GO111MODULE=on
    go get -u "istio.io/api@${UPDATE_BRANCH}"
    go get -u "istio.io/client-go@${UPDATE_BRANCH}"
    go mod tidy
    
    sed -i "s/^BUILDER_SHA=.*\$/BUILDER_SHA=$(getSha release-builder)/" prow/release-commit.sh
    chmod +x prow/release-commit.sh
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 00:17:51 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  4. 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)
  5. src/cmd/go/internal/modload/init.go

    		return fmt.Sprintf("updates to go.mod needed, disabled by -mod=%v; to update it:\n\tgo mod tidy", cfg.BuildMod)
    	}
    	if cfg.BuildModReason != "" {
    		return fmt.Sprintf("updates to go.mod needed, disabled by -mod=%s\n\t(%s)\n\tto update it:\n\tgo mod tidy", cfg.BuildMod, cfg.BuildModReason)
    	}
    	return "updates to go.mod needed; to update it:\n\tgo mod tidy"
    }
    
    var errGoModDirty error = goModDirtyError{}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  6. doc/next/3-tools.md

    those settings whose effective value differs from the default value
    that would be obtained in an empty environment with no prior uses of the `-w` flag.
    
    <!-- go.dev/issue/27005, CL 585401 -->
    The new `go` `mod` `tidy` `-diff` flag causes the command not to modify
    the files but instead print the necessary changes as a unified diff.
    It exits with a non-zero code if updates are needed.
    
    <!-- go.dev/issue/52792, CL 562775 -->
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 19:06:07 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. src/cmd/go/internal/test/test.go

    	if err != nil {
    		return
    	}
    	if c.id1 != (cache.ActionID{}) {
    		if cache.DebugTest {
    			fmt.Fprintf(os.Stderr, "testcache: %s: save test ID %x => input ID %x => %x\n", a.Package.ImportPath, c.id1, testInputsID, testAndInputKey(c.id1, testInputsID))
    		}
    		cache.PutNoVerify(cache.Default(), c.id1, bytes.NewReader(testlog))
    		cache.PutNoVerify(cache.Default(), testAndInputKey(c.id1, testInputsID), bytes.NewReader(a.TestOutput.Bytes()))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  10. src/cmd/go/alldocs.go

    // to go.sum and removes any unnecessary ones.
    //
    // The -v flag causes tidy to print information about removed modules
    // to standard error.
    //
    // The -e flag causes tidy to attempt to proceed despite errors
    // encountered while loading packages.
    //
    // The -diff flag causes tidy not to modify go.mod or go.sum but
    // instead print the necessary changes as a unified diff. It exits
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
Back to top