Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 108 for nonexistent1 (0.29 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/cmd/go/testdata/script/list_ambiguous_path.txt

    ! go list ./foo.go/b.go
    stderr '^stat .*[/\\]foo\.go[/\\]b\.go: directory not found$'
    
    # Multiple patterns for Go files with a typo. This should
    # treat the wrong pattern as if it were a nonexistent file.
    ! go list ./foo.go/a.go ./foo.go/b.go
    [GOOS:plan9] stderr 'stat ./foo.go/b.go: ''./foo.go/b.go'' does not exist'
    [GOOS:windows] stderr './foo.go/b.go: The system cannot find the file specified'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_download_private_vcs.txt

    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 .
    
    # Fetching a nonexistent commit should return an "unknown revision"
    # error message.
    ! go mod download github.com/golang/term@86186f3aba07ed0212cfb944f3398997d2d07c6b
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 16:37:00 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  9. src/net/interface_unix_test.go

    	if testing.Short() {
    		t.Skip("avoid external network")
    	}
    	if os.Getuid() != 0 {
    		t.Skip("must be root")
    	}
    
    	// Ensure zoneCache is filled:
    	_, _ = Listen("tcp", "[fe80::1%nonexistent]:0")
    
    	ti := &testInterface{local: "fe80::1"}
    	if err := ti.setLinkLocal(0); err != nil {
    		t.Skipf("test requires external command: %v", err)
    	}
    	if err := ti.setup(); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 18 23:51:35 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  10. guava-gwt/src/com/google/common/collect/Collect.gwt.xml

        Our workaround is to tell GWT that util.concurrent and all other packages
        have prod supersource, even if they have none. GWT is happy to ignore us
        when we specify a nonexistent path.
    
        (I hope that this workaround does not cause its own problems in the future.)
    -->
    <super-source path="super"/>
    
    <inherits name="com.google.common.annotations.Annotations" />
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 24 14:08:06 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top