Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 133 for nonexistent1 (0.36 sec)

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

    package v3
    import _ "x.localhost/v3"
    
    -- v3/go.mod --
    module x.localhost/v3
    -- v3/x.go --
    package x
    
    -- w/go.mod --
    module w.localhost
    -- w/skip/skip.go --
    // Package skip is nested below nonexistent package w.
    package skip
    
    -- y/go.mod --
    module y.localhost
    -- y/z/w/w.go --
    package w
    
    -- v12/go.mod --
    module v.localhost
    -- v12/v.go --
    package v
    
    -- v11/go.mod --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_get_replaced.txt

    cp go.mod go.mod.orig
    
    env oldGOPROXY=$GOPROXY
    
    # If a wildcard replacement exists for an otherwise-nonexistent module,
    # 'go get' should resolve it to the minimum valid pseudo-version.
    
    go mod edit -replace=example.com/x=./x
    go get example.com/x
    
    go list -m example.com/x
    stdout '^example.com/x v0.0.0-00010101000000-000000000000 '
    
    # If specific-version replacements exist, the highest matching version should be used.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 15 16:24:01 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_query_empty.txt

    go list -m example.com/join/...
    ! stdout 'example.com/join/subpkg'
    stdout 'example.com/join v1.1.0'
    
    # If @v/list includes a version that the proxy does not actually serve,
    # that version is treated as nonexistent.
    env GOPROXY=file:///$WORK/notfound
    cp go.mod.orig go.mod
    go get example.com/join/subpkg
    go list -m example.com/join/...
    ! stdout 'example.com/join/subpkg'
    stdout 'example.com/join v1.1.0'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 2.7K bytes
    - Viewed (0)
  4. hack/lib/init.sh

    #     echo readlinkdashf $1: expected "$X", got "$Y"
    #   fi
    # }
    # testone /
    # testone /tmp
    # testone $T
    # testone $T/file
    # testone $T/dir
    # testone $T/linkfile
    # testone $T/linkdir
    # testone $T/nonexistant
    # testone $T/linkdir/file
    # testone $T/linkdir/dir
    # testone $T/linkdir/linkfile
    # testone $T/linkdir/linkdir
    function kube::readlinkdashf {
      # run in a subshell for simpler 'cd'
      (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:18:38 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  5. src/net/dnsconfig_unix_test.go

    	origGetHostname := getHostname
    	defer func() { getHostname = origGetHostname }()
    	getHostname = func() (string, error) { return "host.domain.local", nil }
    
    	conf := dnsReadConfig("a-nonexistent-file")
    	if !os.IsNotExist(conf.err) {
    		t.Errorf("missing resolv.conf:\ngot: %v\nwant: %v", conf.err, fs.ErrNotExist)
    	}
    	conf.err = nil
    	want := &dnsConfig{
    		servers:  defaultNS,
    		ndots:    1,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 03 17:41:32 UTC 2022
    - 7.1K bytes
    - Viewed (0)
  6. cmd/bucket-lifecycle_test.go

    		{
    			// non-existent storage-class
    			xml:         []byte(`<LifecycleConfiguration xmlns="http://s3.amazonaws.com/doc/2006-03-01/"><Rule><ID>rule</ID><Prefix /><Status>Enabled</Status><Transition><Days>1</Days><StorageClass>"NONEXISTENT"</StorageClass></Transition></Rule></LifecycleConfiguration>`),
    			expectedErr: errInvalidStorageClass,
    		},
    		{
    			// no transition rule
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 31 09:57:57 UTC 2022
    - 7K bytes
    - Viewed (0)
  7. pkg/controller/storageversionmigrator/resourceversion.go

    	fakeSVMNamespaceName          string = "@fake:svm_ns!"
    	ResourceVersionControllerName string = "resource-version-controller"
    )
    
    // ResourceVersionController adds the resource version obtained from a randomly nonexistent namespace
    // to the SVM status before the migration is initiated. This resource version is utilized for checking
    // freshness of GC cache before the migration is initiated.
    type ResourceVersionController struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/phases/certs/certlist_test.go

    		t.Run(test.name, func(t *testing.T) {
    
    			certMap := test.certs.AsMap()
    
    			for _, cert := range test.certs {
    				if cert.CAName != "" && certMap[cert.CAName] == nil {
    					t.Errorf("Certificate %q references nonexistent CA %q", cert.Name, cert.CAName)
    				}
    			}
    		})
    	}
    }
    
    func TestMakeCertTree(t *testing.T) {
    	rootCert := &KubeadmCert{
    		Name: "root",
    	}
    	leaf0 := &KubeadmCert{
    		Name:   "leaf0",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/CUError.h

      CUE_FOPEN_FAILED      = 40,  /**< An error occurred opening a file. */
      CUE_FCLOSE_FAILED     = 41,  /**< An error occurred closing a file. */
      CUE_BAD_FILENAME      = 42,  /**< A bad filename was requested (NULL, empty, nonexistent, etc.). */
      CUE_WRITE_ERROR       = 43   /**< An error occurred during a write to a file. */
    } CU_ErrorCode;
    
    /*------------------------------------------------------------------------*/
    /** CUnit error action codes.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  10. src/os/example_test.go

    		fmt.Println("directory")
    	case mode&fs.ModeSymlink != 0:
    		fmt.Println("symbolic link")
    	case mode&fs.ModeNamedPipe != 0:
    		fmt.Println("named pipe")
    	}
    }
    
    func ExampleErrNotExist() {
    	filename := "a-nonexistent-file"
    	if _, err := os.Stat(filename); errors.Is(err, fs.ErrNotExist) {
    		fmt.Println("file does not exist")
    	}
    	// Output:
    	// file does not exist
    }
    
    func ExampleExpand() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 17:35:49 UTC 2024
    - 8.4K bytes
    - Viewed (0)
Back to top