Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for hexarchy (0.16 sec)

  1. android/guava/src/com/google/common/reflect/TypeToken.java

      /**
       * Constructs a new type token of {@code T}.
       *
       * <p>Clients create an empty anonymous subclass. Doing so embeds the type parameter in the
       * anonymous class's type hierarchy so we can reconstitute it at runtime despite erasure.
       *
       * <p>For example:
       *
       * <pre>{@code
       * TypeToken<List<String>> t = new TypeToken<List<String>>() {};
       * }</pre>
       */
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Jun 26 21:02:13 GMT 2023
    - 53.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbFile.java

         *
         * @return The parent directory of this SMB resource or
         *         <code>smb://</code> if the resource refers to the root of the URL
         *         hierarchy which incidentally is also <code>smb://</code>.
         */
        public String getParent () {
            return this.fileLocator.getParent();
        }
    
    
        /**
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 81.6K bytes
    - Viewed (0)
  3. cmd/xl-storage_test.go

    		expectedBuf []byte
    		expectedErr error
    	}{
    		// Successful read at offset 0 and proper buffer size. - 1
    		{
    			volume, "myobject", 0, 5,
    			[]byte("hello"), nil,
    		},
    		// Success read at hierarchy. - 2
    		{
    			volume, "path/to/my/object", 0, 5,
    			[]byte("hello"), nil,
    		},
    		// Object is a directory. - 3
    		{
    			volume, "object-as-dir",
    			0, 5, nil, errIsNotRegular,
    		},
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Thu Apr 11 17:45:28 GMT 2024
    - 66.7K bytes
    - Viewed (0)
Back to top