Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 266 for tid1 (0.05 sec)

  1. src/cmd/go/testdata/script/mod_get_prefer_incompatible.txt

    # Verifies golang.org/issue/37574.
    
    # If we are already using an +incompatible version, we shouldn't look up
    # a lower compatible version when upgrading.
    cp go.mod go.mod.orig
    go mod tidy
    cmp go.mod.orig go.mod
    grep '^example.com/incompatiblewithsub v2\.0\.0\+incompatible' go.sum
    ! grep '^example.com/incompatiblewithsub v1.0.0' go.sum
    
    go get example.com/incompatiblewithsub/sub
    cmp go.mod.orig go.mod
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 895 bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/internal/id/ConfigurationCacheableIdFactoryTest.groovy

        }
    
        def "creating ids again after loading is not allowed"() {
            def factory = new ConfigurationCacheableIdFactory()
    
            when:
            def id1 = factory.createId()
            def id2 = factory.createId()
            then:
            id1 != id2
    
            when:
            factory.idRecreated()
            factory.idRecreated()
            then:
            noExceptionThrown()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 23 15:27:22 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  3. subprojects/composite-builds/src/main/java/org/gradle/composite/internal/DefaultBuildControllers.java

        public void close() {
            CompositeStoppable.stoppable(controllers.values()).stop();
        }
    
        private static Comparator<BuildIdentifier> idComparator() {
            return (id1, id2) -> {
                // Root is always last
                if (id1.equals(DefaultBuildIdentifier.ROOT)) {
                    if (id2.equals(DefaultBuildIdentifier.ROOT)) {
                        return 0;
                    } else {
                        return 1;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 23 10:37:35 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_indirect_tidy.txt

    # golang.org/issue/31248: loading the build list must not add explicit entries
    # for indirect dependencies already implied by older-than-selected versions
    # already in the build list.
    
    cp go.mod.orig go.mod
    go mod tidy
    cmp go.mod go.mod.orig
    
    cp go.mod.orig go.mod
    go list -m all
    cmp go.mod go.mod.orig
    
    -- go.mod.orig --
    module main
    
    go 1.13
    
    require a v0.0.0
    
    replace (
    	a v0.0.0 => ./a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 18 19:43:01 UTC 2019
    - 804 bytes
    - Viewed (0)
  5. src/main/resources/fess_indices/fess/gl/stopwords.txt

    pola
    polas
    polo
    polos
    por
    que
    se
    senón
    ser
    seu
    seus
    sexa
    sido
    sobre
    súa
    súas
    tamén
    tan
    te
    ten
    teñen
    teño
    ter
    teu
    teus
    ti
    tido
    tiña
    tiven
    túa
    túas
    un
    unha
    unhas
    uns
    vos
    vosa
    vosas
    voso
    vosos
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Jul 19 06:31:02 UTC 2018
    - 932 bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_goline_old.txt

    env TESTGO_VERSION=go1.24
    
    go list -f '{{.Module.GoVersion}}'
    stdout 1.15
    
    go mod tidy
    go list -f '{{.Module.GoVersion}}'
    stdout 1.15
    
    go get example.com/a@v1.0.1
    go list -f '{{.Module.GoVersion}}'
    stdout 1.15
    
    go get example.com/a@v1.0.1 go@1.16
    go list -f '{{.Module.GoVersion}}'
    stdout 1.16
    
    -- go.mod --
    module m
    go 1.15
    
    require (
    	example.com/a v1.0.0
    	example.com/b v1.0.0
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 17:51:28 UTC 2023
    - 1011 bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_vendor_build.txt

    env GO111MODULE=on
    [short] skip
    
    # Populate go.mod and go.sum.
    go mod tidy
    
    # initial conditions: using sampler v1.3.0, not listed in go.mod.
    go list -deps
    stdout rsc.io/sampler
    ! grep 'rsc.io/sampler v1.3.0' go.mod
    
    # update to v1.3.1, now indirect in go.mod.
    go get rsc.io/sampler@v1.3.1
    grep 'rsc.io/sampler v1.3.1 // indirect' go.mod
    cp go.mod go.mod.good
    
    # vendoring can but should not need to make changes.
    go mod vendor
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 931 bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_import_issue41113.txt

    # split-incompatible v2.0.0+incompatible, which we cannot use (because it would
    # be an implicit downgrade), and split-incompatible/subpkg v0.1.0, which we
    # *should* use.
    
    go mod tidy
    
    go list -m all
    stdout '^example.com/split-incompatible/subpkg v0\.1\.0$'
    ! stdout '^example.com/split-incompatible .*'
    
    -- go.mod --
    module golang.org/issue/41113
    
    go 1.16
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 22 20:45:27 UTC 2020
    - 932 bytes
    - Viewed (0)
  9. src/crypto/aes/block.go

    	for r := 0; r < nr; r++ {
    		t0 = xk[k+0] ^ td0[uint8(s0>>24)] ^ td1[uint8(s3>>16)] ^ td2[uint8(s2>>8)] ^ td3[uint8(s1)]
    		t1 = xk[k+1] ^ td0[uint8(s1>>24)] ^ td1[uint8(s0>>16)] ^ td2[uint8(s3>>8)] ^ td3[uint8(s2)]
    		t2 = xk[k+2] ^ td0[uint8(s2>>24)] ^ td1[uint8(s1>>16)] ^ td2[uint8(s0>>8)] ^ td3[uint8(s3)]
    		t3 = xk[k+3] ^ td0[uint8(s3>>24)] ^ td1[uint8(s2>>16)] ^ td2[uint8(s1>>8)] ^ td3[uint8(s0)]
    		k += 4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  10. src/cmd/internal/moddeps/moddeps_test.go

    				t.Logf("(Run 'go mod tidy' in %s to ensure that no extraneous dependencies were added, or 'go mod vendor' to copy in imported packages.)", m.Dir)
    			}
    		})
    	}
    
    	// We now get to the slow, but more thorough part of the test.
    	// Only run it in long test mode.
    	if testing.Short() {
    		return
    	}
    
    	// Ensure that all modules within GOROOT are tidy, vendored, and bundled.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 18.6K bytes
    - Viewed (0)
Back to top