Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,711 for mod$ (0.04 sec)

  1. .github/workflows/tests.yml

        - name: Check out code into the Go module directory
          uses: actions/checkout@v4
    
        - name: go mod package cache
          uses: actions/cache@v4
          with:
            path: ~/go/pkg/mod
            key: ${{ runner.os }}-go-${{ matrix.go }}-${{ hashFiles('tests/go.mod') }}
    
        - name: Tests
          run: GITHUB_ACTION=true GORM_DIALECT=sqlite ./tests/tests_all.sh
    
      mysql:
        strategy:
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 09:24:34 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modcmd/tidy.go

    version prior to the one indicated by the 'go' directive in the go.mod
    file.
    
    The -x flag causes tidy to print the commands download executes.
    
    See https://golang.org/ref/mod#go-mod-tidy for more about 'go mod tidy'.
    	`,
    	Run: runTidy,
    }
    
    var (
    	tidyE      bool          // if true, report errors but proceed anyway.
    	tidyDiff   bool          // if true, do not update go.mod or go.sum and show changes. Return corresponding exit code.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 5K bytes
    - Viewed (0)
  3. src/cmd/go/internal/gover/version.go

    // FromGoMod returns the go version from the go.mod file.
    // It returns DefaultGoModVersion if the go.mod file does not contain a go line or if mf is nil.
    func FromGoMod(mf *modfile.File) string {
    	if mf == nil || mf.Go == nil {
    		return DefaultGoModVersion
    	}
    	return mf.Go.Version
    }
    
    // FromGoWork returns the go version from the go.mod file.
    // It returns DefaultGoWorkVersion if the go.mod file does not contain a go line or if wf is nil.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. hack/update-internal-modules.sh

      kube::log::error "Cannot run hack/update-internal-modules.sh with \$GOPROXY=off"
      exit 1
    fi
    
    kube::golang::setup_env
    
    for mod in "${MODULES[@]}"; do
      echo "=== tidying go.mod/go.sum in ${mod}"
      go -C "${KUBE_ROOT}/${mod}" mod edit -fmt
      go -C "${KUBE_ROOT}/${mod}" mod tidy
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 22:38:25 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  5. src/cmd/go/script_test.go

    	"GCCGOTOOLDIR",       // for gccgo testing
    }
    
    // updateSum runs 'go mod tidy', 'go list -mod=mod -m all', or
    // 'go list -mod=mod all' in the test's current directory if a file named
    // "go.mod" is present after the archive has been extracted. updateSum modifies
    // archive and returns true if go.mod or go.sum were changed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  6. hack/pin-dependency.sh

      exit 1
    fi
    
    kube::golang::setup_env
    kube::util::require-jq
    
    # Explicitly set GOFLAGS to ignore vendor, since GOFLAGS=-mod=vendor breaks dependency resolution while rebuilding vendor
    export GOWORK=off
    export GOFLAGS=-mod=mod
    
    dep="${1:-}"
    sha="${2:-}"
    
    # Specifying a different repo is optional.
    replacement=
    case ${dep} in
        *=*)
            # shellcheck disable=SC2001
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 05:44:43 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  7. src/hash/crc32/gen_const_ppc64le.go

    	poly &= mask
    	mod = poly
    	div = 1
    	deg--
    	n--
    	for n > deg {
    		high = (mod >> deg) & 1
    		div = (div << 1) | high
    		mod <<= 1
    		if high != 0 {
    			mod ^= poly
    		}
    		n--
    	}
    	return mod & mask, div
    }
    
    func main() {
    	w := new(bytes.Buffer)
    
    	// Standard: https://go.dev/s/generatedcode
    	fmt.Fprintln(w, `// Code generated by "go run gen_const_ppc64le.go"; DO NOT EDIT.`)
    	fmt.Fprintln(w)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 19 20:44:20 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  8. src/go.sum

    golang.org/x/crypto v0.23.1-0.20240603234054-0b431c7de36a/go.mod h1:CKFgDieR+mRhux2Lsu27y0fO304Db0wZe70UKqHu0v8=
    golang.org/x/net v0.25.1-0.20240603202750-6249541f2a6c h1:CR/7/SLUhIJw6g675eeoDiwggElO2MV9rGkNYjqi8GM=
    golang.org/x/net v0.25.1-0.20240603202750-6249541f2a6c/go.mod h1:JkAGAh7GEvH74S6FOH42FLoXpXbE/aqXSrIQjXgsiwM=
    golang.org/x/sys v0.21.0 h1:rF+pYz3DAGSQAxAu1CbC7catZg4ebC4UIeIhKxBZvws=
    golang.org/x/sys v0.21.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 740 bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/env_gomod_issue61455.txt

    # go env GOMOD should not trigger a toolchain download
    cd $GOPATH/mod
    go env GOMOD
    stdout mod[/\\]go.mod
    ! stderr 'go: toolchain go1.500 invoked to provide go1.700'
    
    # go env GOWORK should not trigger a toolchain download
    cd $GOPATH/work
    go env GOWORK
    stdout work[/\\]go.work
    ! stderr 'go: toolchain go1.500 invoked to provide go1.700'
    
    -- $GOPATH/mod/go.mod --
    module example.com
    
    go 1.700
    
    -- $GOPATH/work/go.work --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 16:05:39 UTC 2024
    - 510 bytes
    - Viewed (0)
  10. src/cmd/go/internal/modload/import.go

    		// command line. Recommend 'go mod download' for the modules that could
    		// provide the package, since that shouldn't change go.mod.
    		if len(e.mods) > 0 {
    			args := make([]string, len(e.mods))
    			for i, mod := range e.mods {
    				args[i] = mod.Path
    			}
    			hint = fmt.Sprintf("; to add:\n\tgo mod download %s", strings.Join(args, " "))
    		}
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 27.7K bytes
    - Viewed (0)
Back to top