Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for Kate (0.2 sec)

  1. src/archive/zip/reader_test.go

    				Content:  []byte("foo \r\n"),
    				Modified: time.Date(2011, 12, 8, 10, 4, 50, 0, time.UTC),
    				Mode:     0666,
    			},
    			{
    				Name:     "dir/empty/",
    				Content:  []byte{},
    				Modified: time.Date(2011, 12, 8, 10, 8, 6, 0, time.UTC),
    				Mode:     fs.ModeDir | 0777,
    			},
    			{
    				Name:     "readonly",
    				Content:  []byte("important \r\n"),
    				Modified: time.Date(2011, 12, 8, 10, 6, 8, 0, time.UTC),
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Mar 27 18:23:49 GMT 2024
    - 55.3K bytes
    - Viewed (0)
  2. misc/wasm/wasm_exec.js

    				const saddr = getInt64(addr + 0);
    				const len = getInt64(addr + 8);
    				return decoder.decode(new DataView(this._inst.exports.mem.buffer, saddr, len));
    			}
    
    			const timeOrigin = Date.now() - performance.now();
    			this.importObject = {
    				_gotest: {
    					add: (a, b) => a + b,
    				},
    				gojs: {
    JavaScript
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Mon May 22 17:47:47 GMT 2023
    - 16.3K bytes
    - Viewed (1)
  3. src/bytes/buffer.go

    	// we allocate buffers rounded up to the closest size class.
    	c := len(b) + n // ensure enough space for n elements
    	if c < 2*cap(b) {
    		// The growth rate has historically always been 2x. In the future,
    		// we could rely purely on append to determine the growth rate.
    		c = 2 * cap(b)
    	}
    	b2 := append([]byte(nil), make([]byte, c)...)
    	copy(b2, b)
    	return b2[:len(b)]
    }
    
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Oct 13 17:10:31 GMT 2023
    - 15.7K bytes
    - Viewed (0)
  4. src/archive/zip/writer_test.go

    		}
    	}
    }
    
    func TestWriterTime(t *testing.T) {
    	var buf bytes.Buffer
    	h := &FileHeader{
    		Name:     "test.txt",
    		Modified: time.Date(2017, 10, 31, 21, 11, 57, 0, timeZone(-7*time.Hour)),
    	}
    	w := NewWriter(&buf)
    	if _, err := w.CreateHeader(h); err != nil {
    		t.Fatalf("unexpected CreateHeader error: %v", err)
    	}
    	if err := w.Close(); err != nil {
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Sep 15 19:04:06 GMT 2023
    - 14.1K bytes
    - Viewed (0)
  5. src/cmd/cgo/gcc.go

        kCFTaggedObjectID_Integer = (3 << 1) + 1,
        kCFTaggedObjectID_DateTS = (4 << 1) + 1,
        kCFTaggedObjectID_ManagedObjectID = (5 << 1) + 1, // Core Data
        kCFTaggedObjectID_Date = (6 << 1) + 1,
        kCFTaggedObjectID_Undefined7 = (7 << 1) + 1,
    };
    */
    
    func (c *typeConv) badJNI(dt *dwarf.TypedefType) bool {
    	// In Dalvik and ART, the jobject type in the JNI interface of the JVM has the
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Nov 02 16:43:23 GMT 2023
    - 97K bytes
    - Viewed (0)
  6. api/go1.txt

    pkg net/mail, func ReadMessage(io.Reader) (*Message, error)
    pkg net/mail, method (*Address) String() string
    pkg net/mail, method (Header) AddressList(string) ([]*Address, error)
    pkg net/mail, method (Header) Date() (time.Time, error)
    pkg net/mail, method (Header) Get(string) string
    pkg net/mail, type Address struct
    pkg net/mail, type Address struct, Address string
    pkg net/mail, type Address struct, Name string
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
  7. PATENTS

    implementation of Go constitutes direct or contributory patent
    infringement, or inducement of patent infringement, then any patent
    rights granted to you under this License for this implementation of Go
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Mon Dec 06 21:31:59 GMT 2010
    - 1.3K bytes
    - Viewed (0)
  8. src/archive/zip/zip_test.go

    		want := fmt.Sprintf("%d.dat", i)
    		if zr.File[i].Name != want {
    			t.Fatalf("File(%d) = %q, want %q", i, zr.File[i].Name, want)
    		}
    	}
    }
    
    func TestModTime(t *testing.T) {
    	var testTime = time.Date(2009, time.November, 10, 23, 45, 58, 0, time.UTC)
    	fh := new(FileHeader)
    	fh.SetModTime(testTime)
    	outTime := fh.ModTime()
    	if !outTime.Equal(testTime) {
    		t.Errorf("times don't match: got %s, want %s", outTime, testTime)
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Mar 27 18:23:49 GMT 2024
    - 19.5K bytes
    - Viewed (0)
  9. api/go1.1.txt

    pkg syscall (linux-386), const PR_MCE_KILL_DEFAULT = 2
    pkg syscall (linux-386), const PR_MCE_KILL_EARLY = 1
    pkg syscall (linux-386), const PR_MCE_KILL_GET = 34
    pkg syscall (linux-386), const PR_MCE_KILL_LATE = 0
    pkg syscall (linux-386), const PR_MCE_KILL_SET = 1
    pkg syscall (linux-386), const PR_SET_DUMPABLE = 4
    pkg syscall (linux-386), const PR_SET_ENDIAN = 20
    pkg syscall (linux-386), const PR_SET_FPEMU = 10
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Mar 31 20:37:15 GMT 2022
    - 2.6M bytes
    - Viewed (0)
  10. api/go1.2.txt

    pkg syscall (linux-arm-cgo), const PR_MCE_KILL_EARLY ideal-int
    pkg syscall (linux-arm-cgo), const PR_MCE_KILL_GET ideal-int
    pkg syscall (linux-arm-cgo), const PR_MCE_KILL_LATE ideal-int
    pkg syscall (linux-arm-cgo), const PR_MCE_KILL_SET ideal-int
    pkg syscall (linux-arm-cgo), const PR_SECCOMP_FILTER_EVENT ideal-int
    pkg syscall (linux-arm-cgo), const PR_SECCOMP_FILTER_SYSCALL ideal-int
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Oct 18 04:36:59 GMT 2013
    - 1.9M bytes
    - Viewed (2)
Back to top