Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for NotExist (0.18 sec)

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

    stdout 'Go Gopher'
    
    env GOPROXY=direct
    
    ! go mod download
    stderr '^go: github\.com/golang/notexist/subdir@v0.1.0: reading github\.com/golang/notexist/subdir/go\.mod at revision subdir/v0\.1\.0: '
    
    -- go.mod --
    module test
    
    go 1.18
    
    require github.com/golang/notexist/subdir v0.1.0
    
    -- $WORK/home/gopher/.gitconfig --
    [user]
    	name = Go Gopher
    	email = ******@****.***
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 16:37:00 UTC 2023
    - 749 bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. src/internal/trace/resources.go

    //
    // The format of the returned string is for debugging purposes and is subject to change.
    func (s GoState) String() string {
    	switch s {
    	case GoUndetermined:
    		return "Undetermined"
    	case GoNotExist:
    		return "NotExist"
    	case GoRunnable:
    		return "Runnable"
    	case GoRunning:
    		return "Running"
    	case GoWaiting:
    		return "Waiting"
    	case GoSyscall:
    		return "Syscall"
    	}
    	return "Bad"
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 8K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r34/NoSourceTaskOutcomeCrossVersionSpec.groovy

    class NoSourceTaskOutcomeCrossVersionSpec extends ToolingApiSpecification {
        def setup() {
            buildFile << """
                task noSourceTask(type:Copy) {
                    from("notexist")
                    into("notexisteither")
                }"""
        }
    
        @TargetGradleVersion('>=3.4')
        def "tasks with no source is reported as NO-SOURCE"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  7. pkg/routes/logs.go

    	http.ServeFile(resp.ResponseWriter, req.Request, logdir)
    }
    
    // logFileNameIsTooLong checks filename length, returns true if it's longer than 255.
    // cause http.ServeFile returns default error code 500 except for NotExist and Forbidden, but we need to separate the real 500 from oversize filename here.
    func logFileNameIsTooLong(filePath string) bool {
    	_, err := os.Stat(filePath)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 21 16:25:48 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  8. src/cmd/go/internal/cache/cache_test.go

    }
    
    func TestBasic(t *testing.T) {
    	dir, err := os.MkdirTemp("", "cachetest-")
    	if err != nil {
    		t.Fatal(err)
    	}
    	defer os.RemoveAll(dir)
    	_, err = Open(filepath.Join(dir, "notexist"))
    	if err == nil {
    		t.Fatal(`Open("tmp/notexist") succeeded, want failure`)
    	}
    
    	cdir := filepath.Join(dir, "c1")
    	if err := os.Mkdir(cdir, 0777); err != nil {
    		t.Fatal(err)
    	}
    
    	c1, err := Open(cdir)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:49:37 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  9. cmd/os-reliable.go

    		if err = osMkdirAll(dirPath, mode, baseDir); err != nil {
    			// Retry only for the first retryable error.
    			if osIsNotExist(err) && i == 0 {
    				i++
    				// Determine if os.NotExist error is because of
    				// baseDir's parent being present, retry it once such
    				// that the MkdirAll is retried once for the parent
    				// of dirPath.
    				// Because it is worth a retry to skip a different
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Apr 22 17:49:30 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  10. pkg/scheduler/testing/wrappers.go

    		Key:      k,
    		Operator: metav1.LabelSelectorOpExists,
    	}
    	s.MatchExpressions = append(s.MatchExpressions, expression)
    	return s
    }
    
    // NotExist injects a matchExpression (with an operator NotExist) to the inner labelSelector.
    func (s *LabelSelectorWrapper) NotExist(k string) *LabelSelectorWrapper {
    	expression := metav1.LabelSelectorRequirement{
    		Key:      k,
    		Operator: metav1.LabelSelectorOpDoesNotExist,
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 42.1K bytes
    - Viewed (0)
Back to top