Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 65 for noExist (0.21 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenPomRelocationIntegrationTest.groovy

        def "fails to resolve module if published artifact does not exist with relocated coordinates"() {
            given:
            def original = publishPomWithRelocation('groupA', 'artifactA', 'notExist', 'notExist')
            def newModule = mavenHttpRepo.module("notExist", "notExist", "1.0")
    
            and:
            createBuildFileWithDependency('groupA', 'artifactA')
    
            and:
            original.pom.expectGet()
            newModule.pom.expectGet()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_download_private_vcs.txt

    env GIT_CONFIG_GLOBAL=$WORK${/}home${/}gopher${/}.gitconfig
    env HOME=$WORK${/}home${/}gopher
    exec git config --global --show-origin user.name
    stdout 'Go Gopher'
    
    ! go mod download github.com/golang/nonexist@latest
    stderr 'Confirm the import path was entered correctly.'
    stderr 'If this is a private repository, see https://golang.org/doc/faq#git_https for additional information.'
    ! stdout .
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 16:37:00 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_fs_patterns.txt

    ! stdout vendor/
    stdout ^m/y$
    ! stdout ^m/y/z
    
    # non-existent directory should not prompt lookups
    ! go build -mod=readonly example.com/nonexist
    stderr 'import lookup disabled'
    
    ! go build -mod=readonly ./nonexist
    ! stderr 'import lookup disabled'
    stderr '^stat '$GOPATH'[/\\]src[/\\]x[/\\]nonexist: directory not found'
    
    ! go build -mod=readonly ./go.mod
    ! stderr 'import lookup disabled'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 18:09:53 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/reuse_git.txt

    stdout '"Hash": "fc3a09f3dc5cfe0d7a743ea18f1f5226e68b3777"'
    ! stdout 'RepoSum'
    
    # go mod download vcstest/hello@nonexist should fail, still print origin info
    ! go mod download -x -json vcs-test.golang.org/git/hello.git@nonexist
    cp stdout hellononexist.json
    stdout '"Version": "nonexist"'
    stdout '"Error":.*unknown revision nonexist'
    stdout '"RepoSum": "r1:c0/9JCZ25lxoBiK3[+]3BhACU4giH49flcJmBynJ[+]Jvmc="'
    ! stdout '"(TagPrefix|TagSum|Ref|Hash)"'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 22:10:38 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  5. clause/expression_test.go

    		Vars:         []interface{}{sql.Named("name1", "jinzhu"), sql.Named("name2", "jinzhu2")},
    		Result:       "@@test AND name1 = ? AND name2 = ? AND name3 = ? @notexist",
    		ExpectedVars: []interface{}{"jinzhu", "jinzhu2", "jinzhu"},
    	}, {
    		SQL:          "@@test AND name1 = @Name1 AND name2 = @Name2 AND name3 = @Name1 @notexist",
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Thu Aug 10 05:34:33 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/testerrors/testdata/err1.go

    // Copyright 2013 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    /*
    #cgo LDFLAGS: -L/nonexist
    
    void test() {
    	xxx;		// ERROR HERE
    }
    
    // Issue 8442.  Cgo output unhelpful error messages for
    // invalid C preambles.
    void issue8442foo(UNDEF*); // ERROR HERE
    */
    import "C"
    
    func main() {
    	C.test()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 404 bytes
    - Viewed (0)
  7. src/run.rc

    rfork e
    
    if(! test -f ../bin/go){
    	echo 'run.rc must be run from $GOROOT/src after installing cmd/go' >[1=2]
    	exit wrongdir
    }
    
    GOENV=off
    eval `{../bin/go tool dist env}
    
    GOPATH=/nonexist-gopath
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 17 20:19:28 UTC 2022
    - 406 bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_getmode_vendor.txt

    env GO111MODULE=on
    
    go get rsc.io/quote@v1.5.1
    go mod vendor
    env GOPATH=$WORK/empty
    env GOPROXY=file:///nonexist
    
    go list -mod=vendor
    go list -mod=vendor -f '{{with .Module}}{{.Path}} {{.Version}}{{end}} {{.Dir}}' all
    stdout '^rsc.io/quote v1.5.1 .*vendor[\\/]rsc.io[\\/]quote$'
    stdout '^golang.org/x/text v0.0.0.* .*vendor[\\/]golang.org[\\/]x[\\/]text[\\/]language$'
    
    ! go list -mod=vendor -m rsc.io/quote@latest
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_edit_no_modcache.txt

    # It does not otherwise depend on the module cache, so it should not
    # fail if the module cache directory cannot be created.
    
    [root] skip
    
    mkdir $WORK/readonly
    chmod 0555 $WORK/readonly
    env GOPATH=$WORK/readonly/nonexist
    
    go mod edit -go=1.17
    
    -- go.mod --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 21 14:10:22 UTC 2021
    - 419 bytes
    - Viewed (0)
  10. src/cmd/cgo/internal/testerrors/testdata/issue28721.go

    	int i;
    } a;
    void fn(void) {}
    */
    import "C"
    
    type B _Ctype_struct_a // ERROR HERE
    
    var a _Ctype_struct_a // ERROR HERE
    
    type A struct {
    	a *_Ctype_struct_a // ERROR HERE
    }
    
    var notExist _Ctype_NotExist // ERROR HERE
    
    func main() {
    	_Cfunc_fn() // ERROR HERE
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 506 bytes
    - Viewed (0)
Back to top