Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 92 for DEC (0.02 sec)

  1. src/internal/fuzz/worker.go

    // responses.
    func (ws *workerServer) serve(ctx context.Context) error {
    	enc := json.NewEncoder(ws.fuzzOut)
    	dec := json.NewDecoder(&contextReader{ctx: ctx, r: ws.fuzzIn})
    	for {
    		var c call
    		if err := dec.Decode(&c); err != nil {
    			if err == io.EOF || err == ctx.Err() {
    				return nil
    			} else {
    				return err
    			}
    		}
    
    		var resp any
    		switch {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  2. src/runtime/mgc.go

    		dlink = d.link
    		d.link = nil
    	}
    	sched.deferpool = nil
    	unlock(&sched.deferlock)
    }
    
    // Timing
    
    // itoaDiv formats val/(10**dec) into buf.
    func itoaDiv(buf []byte, val uint64, dec int) []byte {
    	i := len(buf) - 1
    	idec := i - dec
    	for val >= 10 || i >= idec {
    		buf[i] = byte(val%10 + '0')
    		i--
    		if i == idec {
    			buf[i] = '.'
    			i--
    		}
    		val /= 10
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/Cookie.kt

      @Suppress("NAME_SHADOWING")
      companion object {
        private val YEAR_PATTERN = Pattern.compile("(\\d{2,4})[^\\d]*")
        private val MONTH_PATTERN =
          Pattern.compile("(?i)(jan|feb|mar|apr|may|jun|jul|aug|sep|oct|nov|dec).*")
        private val DAY_OF_MONTH_PATTERN = Pattern.compile("(\\d{1,2})[^\\d]*")
        private val TIME_PATTERN = Pattern.compile("(\\d{1,2}):(\\d{1,2}):(\\d{1,2})[^\\d]*")
    
        private fun domainMatch(
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:12:05 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  4. src/crypto/aes/asm_ppc64x.s

    #define XXBRD_ON_LE(VA, VT)
    #endif // defined(GOARCH_ppc64le)
    
    // func setEncryptKeyAsm(nr int, key *byte, enc *uint32, dec *uint32)
    TEXT ·expandKeyAsm(SB), NOSPLIT|NOFRAME, $0
    	// Load the arguments inside the registers
    	MOVD	nr+0(FP), ROUNDS
    	MOVD	key+8(FP), INP
    	MOVD	enc+16(FP), OUTENC
    	MOVD	dec+24(FP), OUTDEC
    
    #ifdef NEEDS_ESPERM
    	MOVD	$·rcon(SB), PTR // PTR points to rcon addr
    	LVX	(PTR), ESPERM
    	ADD	$0x10, PTR
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:05:32 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  5. cmd/peer-rest-client.go

    	if err != nil {
    		return nil, err
    	}
    	dec := gob.NewDecoder(respBody)
    	ch := make(chan madmin.ReplicationMRF)
    	go func(ch chan madmin.ReplicationMRF) {
    		defer func() {
    			xhttp.DrainBody(respBody)
    			close(ch)
    		}()
    		for {
    			var entry madmin.ReplicationMRF
    			if err := dec.Decode(&entry); err != nil {
    				return
    			}
    			select {
    			case <-ctx.Done():
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  6. docs/debugging/xl-meta/main.go

    				})
    				if err != nil {
    					return nil, err
    				}
    			}
    			if ndjson {
    				return buf.Bytes(), nil
    			}
    			var msi map[string]interface{}
    			dec := json.NewDecoder(buf)
    			// Use number to preserve integers.
    			dec.UseNumber()
    			err = dec.Decode(&msi)
    			if err != nil {
    				return nil, err
    			}
    			b, err = json.MarshalIndent(msi, "", "  ")
    			if err != nil {
    				return nil, err
    			}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 31 14:49:23 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  7. src/archive/tar/writer_test.go

    		// the behavior is verified by researching the source code.
    		//
    		//	$ bsdtar -tvf pax-global-records.tar
    		//	----------  0 0      0           0 Dec 31  1969 file1
    		//	----------  0 0      0           0 Dec 31  1969 file2
    		//	----------  0 0      0           0 Dec 31  1969 file3
    		//	----------  0 0      0           0 May 13  2014 file4
    		//
    		// GNU tar v1.27.1 applies global headers to subsequent records,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 38.7K bytes
    - Viewed (0)
  8. src/encoding/json/decode.go

    				if rr < 0 {
    					return
    				}
    				r += 6
    				if utf16.IsSurrogate(rr) {
    					rr1 := getu4(s[r:])
    					if dec := utf16.DecodeRune(rr, rr1); dec != unicode.ReplacementChar {
    						// A valid pair; consume.
    						r += 6
    						w += utf8.EncodeRune(b[w:], dec)
    						break
    					}
    					// Invalid surrogate; fall back to replacement rune.
    					rr = unicode.ReplacementChar
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/tests/tfl_while_outline.mlir

    // RUN: diff %t1 %t2
    
    // CHECK-LABEL: func @while
    func.func @while() -> tensor<1xf32>
        attributes {tf.entry_function = {outputs = "result"}} {
      %cst = arith.constant dense<1> : tensor<i32> loc("dec")
      %cst0 = arith.constant dense<5> : tensor<i32> loc("N")
      %cst1 = arith.constant dense<3.0> : tensor<1xf32> loc("val")
      %0:2 = "tfl.while"(%cst0, %cst1) ({
        ^bb0(%arg2: tensor<*xi32>, %arg3: tensor<*xf32>):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  10. src/time/time_test.go

    	{2011, 12, -12, 7, 56, 35, 0, Local, 1321631795},                // Dec -21 7:56:35
    	{2012, 1, -43, 7, 56, 35, 0, Local, 1321631795},                 // Jan -52 7:56:35 2012
    	{2012, int(January - 2), 18, 7, 56, 35, 0, Local, 1321631795},   // (Jan-2) 18 7:56:35 2012
    	{2010, int(December + 11), 18, 7, 56, 35, 0, Local, 1321631795}, // (Dec+11) 18 7:56:35 2010
    }
    
    func TestDate(t *testing.T) {
    	for _, tt := range dateTests {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
Back to top