Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 133 for nonexistent1 (0.26 sec)

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

    # golang.org/issue/27122: 'go build' of a nonexistent directory should produce
    # a helpful "no Go files" error message, not a generic "unknown import path".
    ! go list ./subdir
    stderr '^no Go files in '$WORK'[/\\]gopath[/\\]src[/\\]dir[/\\]subdir$'
    
    # golang.org/issue/29280: 'go list -e' for a nonexistent directory should
    # report a nonexistent package with an error.
    go list -e -json ./subdir
    stdout '"Incomplete": true'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 30 22:30:03 UTC 2022
    - 4.6K bytes
    - Viewed (0)
  2. subprojects/core/src/testInterceptors/java/org/gradle/internal/classpath/CompositeCallInterceptionTestInterceptorsDeclaration.java

            @ParameterKind.Receiver CompositeInterceptorTestReceiver self,
            String parameter,
            @ParameterKind.CallerClassName String consumer
        ) {
            self.intercepted = "composite.nonExistent(String)-non-existent";
        }
    
        @InterceptGroovyCalls
        @CallableKind.GroovyPropertyGetter
        public static String intercept_testString(
            @ParameterKind.Receiver CompositeInterceptorTestReceiver self,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 11:38:52 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  3. platforms/core-runtime/build-process-services/src/test/groovy/org/gradle/api/internal/classpath/ManifestUtilTest.groovy

        }
    
        def "returns empty classpath list for missing file or directory"() {
            when:
            def nonexistent = new File("does no exist");
            def directory = tmpDir.createDir("new_directory");
    
            then:
            ManifestUtil.parseManifestClasspath(nonexistent) == []
            ManifestUtil.parseManifestClasspath(directory) == []
        }
    
        def "returns empty classpath for non-jar file"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  4. docker/Dockerfile.distroless

    # Modify contents of container
    COPY --from=distroless_source /etc/ /home/etc
    COPY --from=distroless_source /home/nonroot /home/nonroot
    RUN echo istio-proxy:x:1337: >> /home/etc/group
    RUN echo istio-proxy:x:1337:1337:istio-proxy:/nonexistent:/sbin/nologin >> /home/etc/passwd
    
    # Customize distroless with the following:
    # - password file
    # - groups file
    # - /home/nonroot directory
    FROM distroless_source
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 00:17:51 UTC 2024
    - 828 bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_vendor_auto.txt

    -- $WORK/auto/go.mod --
    module example.com/auto
    
    go 1.13
    
    require example.com/printversion v1.0.0
    
    replace (
    	example.com/unused => nonexistent.example.com/unused v1.0.0-whatever
    	example.com/version v1.0.0 => ./replacement-version
    	example.com/version v1.2.0 => nonexistent.example.com/version v1.2.0
    )
    -- $WORK/auto/tools.go --
    // +build tools
    
    package auto
    
    import _ "example.com/printversion"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/gateway/testdata/invalid.yaml.golden

      gateways:
      - istio-system/gateway-istio-autogenerated-k8s-gateway-default
      hosts:
      - third.domain.example
      http:
      - name: default.invalid-backendRef-mixed.0
        route:
        - destination:
            host: nonexistent.default.svc.domain.suffix
            port:
              number: 80
          weight: 1
        - destination:
            host: httpbin.default.svc.domain.suffix
            port:
              number: 80
          weight: 1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 11 20:21:53 UTC 2023
    - 4K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/vcstest/go/missingrepo.txt

    -- missingrepo-git-ssh/index.html --
    <!DOCTYPE html>
    <html>
    <meta name="go-import" content="vcs-test.golang.org/go/missingrepo/missingrepo-git-ssh git ssh://nonexistent.vcs-test.golang.org/git/missingrepo">
    -- missingrepo-git-ssh/notmissing/index.html --
    <!DOCTYPE html>
    <html>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 13:22:22 UTC 2022
    - 832 bytes
    - Viewed (0)
  8. istioctl/pkg/proxyconfig/proxyconfig_test.go

    		},
    		{ // supplying nonexistent deployment name should result in error
    			args:           strings.Split("clusters deployment/random-gibberish", " "),
    			expectedString: `"deployment/random-gibberish" does not refer to a pod`,
    			wantException:  true,
    		},
    		{ // supplying nonexistent deployment name in nonexistent namespace
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 21:51:29 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_insecure_issue63845.txt

    # (vcs-test.golang.org), because the hook for redirecting to that
    # server bypasses the "ping to determine protocol" logic
    # in cmd/go/internal/vcs.
    
    [!net:golang.org] skip
    [!git] skip
    [short] skip 'tries to access a nonexistent external Git repo'
    
    env GOPRIVATE=golang.org
    env CURLOPT_TIMEOUT_MS=100
    env GIT_SSH_COMMAND=false
    
    ! go get -x golang.org/nonexist.git@latest
    stderr '^git ls-remote https://golang.org/nonexist$'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 21:10:03 UTC 2023
    - 908 bytes
    - Viewed (0)
  10. src/cmd/go/internal/web/file_test.go

    	}
    	if string(b) != content {
    		t.Fatalf("after writing %q to %s, GetBytes(%v) read %q", content, f.Name(), u, b)
    	}
    }
    
    func TestGetNonexistentFile(t *testing.T) {
    	path, err := filepath.Abs("nonexistent")
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	u, err := urlFromFilePath(path)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	b, err := GetBytes(u)
    	if !errors.Is(err, fs.ErrNotExist) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 09 19:12:23 UTC 2020
    - 1.1K bytes
    - Viewed (0)
Back to top