Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of about 10,000 for tile (0.17 sec)

  1. subprojects/core/src/integTest/resources/org/gradle/api/tasks/copyTestResources/src/one/ignore/bad.file

    Peter Niederwieser <******@****.***> 1329340464 +0100
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 15 21:14:41 UTC 2012
    - 25 bytes
    - Viewed (0)
  2. platforms/core-runtime/time/src/main/java/org/gradle/internal/time/Time.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.time;
    
    import java.util.concurrent.TimeUnit;
    
    /**
     * Instruments for observing time.
     */
    public abstract class Time {
    
        private static final Clock CLOCK = new MonotonicClock();
    
        /**
         * A clock that is guaranteed not to go backwards.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:20:17 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. src/debug/elf/elf.go

    const ARM_MAGIC_TRAMP_NUMBER = 0x5c000003
    
    // ELF32 File header.
    type Header32 struct {
    	Ident     [EI_NIDENT]byte /* File identification. */
    	Type      uint16          /* File type. */
    	Machine   uint16          /* Machine architecture. */
    	Version   uint32          /* ELF format version. */
    	Entry     uint32          /* Entry point. */
    	Phoff     uint32          /* Program header file offset. */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  4. src/debug/pe/file.go

    	closer io.Closer
    }
    
    // Open opens the named file using [os.Open] and prepares it for use as a PE binary.
    func Open(name string) (*File, error) {
    	f, err := os.Open(name)
    	if err != nil {
    		return nil, err
    	}
    	ff, err := NewFile(f)
    	if err != nil {
    		f.Close()
    		return nil, err
    	}
    	ff.closer = f
    	return ff, nil
    }
    
    // Close closes the [File].
    // If the [File] was created using [NewFile] directly instead of [Open],
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  5. pkg/test/util/file/file.go

    	out, err = homedir.Expand(out)
    	if err != nil {
    		return "", err
    	}
    
    	// Verify that the file exists.
    	if _, err := os.Stat(out); os.IsNotExist(err) {
    		return "", fmt.Errorf("failed normalizing file %s: %v", originalPath, err)
    	}
    
    	return out, nil
    }
    
    // ReadTarFile reads a tar compress file from the embedded
    func ReadTarFile(filePath string) (string, error) {
    	b, err := os.ReadFile(filePath)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 17 02:22:22 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  6. src/go/build/testdata/multi/file.go

    Jens Frederich <******@****.***> 1413343498 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 15 03:24:58 UTC 2014
    - 59 bytes
    - Viewed (0)
  7. src/go/internal/gccgoimporter/testdata/time.gox

    >) <type 2 chan <- <type 3 "Time" <type 4 struct { .time.sec <type -4>; .time.nsec <type -3>; .time.loc <type 5 *<type 6 "Location" <type 7 struct { .time.name <type -16>; .time.zone <type 8 [] <type 9 ".time.zone" <type 10 struct { .time.name <type -16>; .time.offset <type -11>; .time.isDST <type -15>; }>>>; .time.tx <type 11 [] <type 12 ".time.zoneTrans" <type 13 struct { .time.when <type -4>; .time.index <type -5>; .time.isstd <type -15>; .time.isutc <type -15>; }>>>; .time.cacheStart...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 30 21:33:51 UTC 2021
    - 7.3K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/files/archivesChangedBaseName/kotlin/somedir/file.txt

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 19 bytes
    - Viewed (0)
  9. cmd/import-boss/testdata/inverse/allowed/a1/file.go

    Tim Hockin <******@****.***> 1705473522 -0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:36 UTC 2024
    - 25 bytes
    - Viewed (0)
  10. cmd/import-boss/testdata/inverse/allowed/a2/file.go

    Tim Hockin <******@****.***> 1705473522 -0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:36 UTC 2024
    - 25 bytes
    - Viewed (0)
Back to top