Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 80 for appengine (0.2 sec)

  1. src/os/file_unix.go

    	nonblock    bool                    // whether we set nonblocking mode
    	stdoutOrErr bool                    // whether this is stdout or stderr
    	appendMode  bool                    // whether file is opened for appending
    }
    
    // Fd returns the integer Unix file descriptor referencing the open file.
    // If f is closed, the file descriptor becomes invalid.
    // If f is garbage collected, a finalizer may close the file descriptor,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  2. src/net/http/cookie.go

    	if validCookieExpires(c.Expires) {
    		b.WriteString("; Expires=")
    		b.Write(c.Expires.UTC().AppendFormat(buf[:0], TimeFormat))
    	}
    	if c.MaxAge > 0 {
    		b.WriteString("; Max-Age=")
    		b.Write(strconv.AppendInt(buf[:0], int64(c.MaxAge), 10))
    	} else if c.MaxAge < 0 {
    		b.WriteString("; Max-Age=0")
    	}
    	if c.HttpOnly {
    		b.WriteString("; HttpOnly")
    	}
    	if c.Secure {
    		b.WriteString("; Secure")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:33:05 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  3. src/log/slog/value.go

    // v is formatted as with fmt.Sprint.
    func (v Value) append(dst []byte) []byte {
    	switch v.Kind() {
    	case KindString:
    		return append(dst, v.str()...)
    	case KindInt64:
    		return strconv.AppendInt(dst, int64(v.num), 10)
    	case KindUint64:
    		return strconv.AppendUint(dst, v.num, 10)
    	case KindFloat64:
    		return strconv.AppendFloat(dst, v.float(), 'g', -1, 64)
    	case KindBool:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:12:08 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  4. src/os/file_plan9.go

    type file struct {
    	fdmu       poll.FDMutex
    	fd         int
    	name       string
    	dirinfo    atomic.Pointer[dirInfo] // nil unless directory being read
    	appendMode bool                    // whether file is opened for appending
    }
    
    // Fd returns the integer Plan 9 file descriptor referencing the open file.
    // If f is closed, the file descriptor becomes invalid.
    // If f is garbage collected, a finalizer may close the file descriptor,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:35:30 UTC 2024
    - 16K bytes
    - Viewed (0)
  5. src/fmt/print.go

    		if state.Flag(int(c)) { // The argument is an int for historical reasons.
    			b = append(b, byte(c))
    		}
    	}
    	if w, ok := state.Width(); ok {
    		b = strconv.AppendInt(b, int64(w), 10)
    	}
    	if p, ok := state.Precision(); ok {
    		b = append(b, '.')
    		b = strconv.AppendInt(b, int64(p), 10)
    	}
    	b = utf8.AppendRune(b, verb)
    	return string(b)
    }
    
    // Use simple []byte instead of bytes.Buffer to avoid large dependency.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:22:43 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/walk/expr.go

    	}
    }
    
    // return side-effect free and cheap n, appending side effects to init.
    // result may not be assignable.
    func cheapExpr(n ir.Node, init *ir.Nodes) ir.Node {
    	switch n.Op() {
    	case ir.ONAME, ir.OLITERAL, ir.ONIL:
    		return n
    	}
    
    	return copyExpr(n, n.Type(), init)
    }
    
    // return side effect-free n, appending side effects to init.
    // result is assignable if n is.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:01 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  7. cmd/bucket-replication-metrics_gen.go

    	// map header, size 3
    	// string "Curr"
    	o = append(o, 0x83, 0xa4, 0x43, 0x75, 0x72, 0x72)
    	o = msgp.AppendInt(o, z.Curr)
    	// string "Avg"
    	o = append(o, 0xa3, 0x41, 0x76, 0x67)
    	o = msgp.AppendFloat32(o, z.Avg)
    	// string "Max"
    	o = append(o, 0xa3, 0x4d, 0x61, 0x78)
    	o = msgp.AppendInt(o, z.Max)
    	return
    }
    
    // UnmarshalMsg implements msgp.Unmarshaler
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 21 17:21:35 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  8. src/regexp/exec.go

    	for _, d := range q.dense {
    		if d.t != nil {
    			m.pool = append(m.pool, d.t)
    		}
    	}
    	q.dense = q.dense[:0]
    }
    
    // step executes one step of the machine, running each of the threads
    // on runq and appending new threads to nextq.
    // The step processes the rune c (which may be endOfText),
    // which starts at position pos and ends at nextPos.
    // nextCond gives the setting for the empty-width flags after c.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 04 20:10:54 UTC 2022
    - 12.3K bytes
    - Viewed (0)
  9. tensorflow/c/ops.h

        TF_DimensionHandle* dim_handle);
    
    // Returns the value of the given dimension.
    TF_CAPI_EXPORT extern int64_t TF_DimensionHandleValue(
        TF_DimensionHandle* dim_handle);
    
    // Returns in <*result> the result of appending the dimensions of <second> to
    // those of <first>.
    TF_CAPI_EXPORT extern void TF_ShapeInferenceContextConcatenateShapes(
        TF_ShapeInferenceContext* ctx, TF_ShapeHandle* first,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 27 21:07:00 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  10. src/database/sql/convert.go

    	return fmt.Sprintf("%v", src)
    }
    
    func asBytes(buf []byte, rv reflect.Value) (b []byte, ok bool) {
    	switch rv.Kind() {
    	case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
    		return strconv.AppendInt(buf, rv.Int(), 10), true
    	case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64:
    		return strconv.AppendUint(buf, rv.Uint(), 10), true
    	case reflect.Float32:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 16.2K bytes
    - Viewed (0)
Back to top