Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of about 10,000 for tile (0.08 sec)

  1. src/go/build/testdata/other/file/file.go

    // Test data - not compiled.
    
    package file
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 56 bytes
    - Viewed (0)
  2. src/os/file.go

    // A zero value for t means I/O operations will not time out.
    func (f *File) SetDeadline(t time.Time) error {
    	return f.setDeadline(t)
    }
    
    // SetReadDeadline sets the deadline for future Read calls and any
    // currently-blocked Read call.
    // A zero value for t means Read will not time out.
    // Not all files support setting deadlines; see SetDeadline.
    func (f *File) SetReadDeadline(t time.Time) error {
    	return f.setReadDeadline(t)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:37 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  3. src/debug/macho/file.go

    	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],
    // Close has no effect.
    func (f *File) Close() error {
    	var err error
    	if f.closer != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  4. pkg/test/util/yml/file.go

    			return make([]string, 0), nil
    		}
    	}
    
    	filesToApply := make([]string, 0, len(docs))
    	for _, doc := range docs {
    		tfile, err := doc.toTempFile(workDir, filenamePrefix)
    		if err != nil {
    			return nil, err
    		}
    		filesToApply = append(filesToApply, tfile)
    	}
    	return filesToApply, nil
    }
    
    type yamlDoc struct {
    	content string
    	docType docType
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 07 14:33:54 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/time.go

    	}
    	return false
    }
    
    // Unix returns the local time corresponding to the given Unix time
    // by wrapping time.Unix.
    func Unix(sec int64, nsec int64) Time {
    	return Time{time.Unix(sec, nsec)}
    }
    
    // Rfc3339Copy returns a copy of the Time at second-level precision.
    func (t Time) Rfc3339Copy() Time {
    	copied, _ := time.Parse(time.RFC3339, t.Format(time.RFC3339))
    	return Time{copied}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:09 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  6. src/debug/elf/file.go

    /*
     * Internal ELF representation
     */
    
    // A FileHeader represents an ELF file header.
    type FileHeader struct {
    	Class      Class
    	Data       Data
    	Version    Version
    	OSABI      OSABI
    	ABIVersion uint8
    	ByteOrder  binary.ByteOrder
    	Type       Type
    	Machine    Machine
    	Entry      uint64
    }
    
    // A File represents an open ELF file.
    type File struct {
    	FileHeader
    	Sections  []*Section
    	Progs     []*Prog
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 16:49:58 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  7. src/runtime/time.go

    	return true
    }
    
    // A timeTimer is a runtime-allocated time.Timer or time.Ticker
    // with the additional runtime state following it.
    // The runtime state is inaccessible to package time.
    type timeTimer struct {
    	c    unsafe.Pointer // <-chan time.Time
    	init bool
    	timer
    }
    
    // newTimer allocates and returns a new time.Timer or time.Ticker (same layout)
    // with the given parameters.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 14:36:24 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/discovery/file/file.go

    		// We should ensure that all the authentication info is embedded in config file, so everything will work also when
    		// the kubeconfig file will be stored in /etc/kubernetes/boostrap-kubelet.conf
    		if err := kubeconfigutil.EnsureAuthenticationInfoAreEmbedded(config); err != nil {
    			return nil, err
    		}
    	} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 13:07:55 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  9. src/time/time.go

    // that the methods [Time.GobDecode], [Time.UnmarshalBinary], [Time.UnmarshalJSON] and
    // [Time.UnmarshalText] are not concurrency-safe.
    //
    // Time instants can be compared using the [Time.Before], [Time.After], and [Time.Equal] methods.
    // The [Time.Sub] method subtracts two instants, producing a [Duration].
    // The [Time.Add] method adds a Time and a Duration, producing a Time.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  10. src/net/file.go

    // It is the caller's responsibility to close ln when finished.
    // Closing ln does not affect f, and closing f does not affect ln.
    func FileListener(f *os.File) (ln Listener, err error) {
    	ln, err = fileListener(f)
    	if err != nil {
    		err = &OpError{Op: "file", Net: "file+net", Source: nil, Addr: fileAddr(f.Name()), Err: err}
    	}
    	return
    }
    
    // FilePacketConn returns a copy of the packet network connection
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 09 06:14:44 UTC 2019
    - 1.7K bytes
    - Viewed (0)
Back to top