Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 493 for winter (0.33 sec)

  1. src/go/printer/testdata/declarations.golden

    	pkgPath		= flag.String("path", "", "additional package directories (colon-separated)")
    	filter		= flag.String("filter", "", "filter file containing permitted package directory paths")
    	filterMin	= flag.Int("filter_minutes", 0, "filter file update interval in minutes; disabled if <= 0")
    	filterDelay	delayTime	// actual filter update interval in minutes; usually filterDelay == filterMin, but filterDelay may back off exponentially
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 13 22:24:31 UTC 2021
    - 16.2K bytes
    - Viewed (0)
  2. src/go/printer/testdata/declarations.input

    	pkgPath = flag.String("path", "", "additional package directories (colon-separated)")
    	filter = flag.String("filter", "", "filter file containing permitted package directory paths")
    	filterMin = flag.Int("filter_minutes", 0, "filter file update interval in minutes; disabled if <= 0")
    	filterDelay delayTime // actual filter update interval in minutes; usually filterDelay == filterMin, but filterDelay may back off exponentially
    )
    
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 13 22:24:31 UTC 2021
    - 16.5K bytes
    - Viewed (0)
  3. test/named1.go

    	asBool(!b)
    	asBool(true)
    	asBool(*&b)
    	asBool(Bool(true))
    	asBool(1 != 2) // ok now
    	asBool(i < j)  // ok now
    
    	_, b = m[2] // ok now
    
    	var inter interface{}
    	_, b = inter.(Map) // ok now
    	_ = b
    
    	var minter interface {
    		M()
    	}
    	_, b = minter.(Map) // ok now
    	_ = b
    
    	_, bb := <-c
    	asBool(bb) // ERROR "cannot use.*type bool.*as type Bool|cannot use bb"
    	_, b = <-c // ok now
    	_ = b
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 04 21:22:23 UTC 2020
    - 984 bytes
    - Viewed (0)
  4. fess-crawler-es/src/main/resources/mapping/filter.json

    Shinsuke Sugaya <******@****.***> 1550973969 +0900
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sun Feb 24 02:06:09 UTC 2019
    - 192 bytes
    - Viewed (0)
  5. src/go/internal/gccgoimporter/testdata/pointer.gox

    v1;
    package pointer;
    pkgpath pointer;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 17 23:03:13 UTC 2015
    - 83 bytes
    - Viewed (0)
  6. src/image/png/writer.go

    	if e.err != nil {
    		return 0, e.err
    	}
    	return len(b), nil
    }
    
    // Chooses the filter to use for encoding the current row, and applies it.
    // The return value is the index of the filter and also of the row in cr that has had it applied.
    func filter(cr *[nFilter][]byte, pr []byte, bpp int) int {
    	// We try all five filter types, and pick the one that minimizes the sum of absolute differences.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 17:08:05 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  7. src/image/jpeg/writer.go

    		theHuffmanLUT[i].init(s)
    	}
    }
    
    // writer is a buffered writer.
    type writer interface {
    	Flush() error
    	io.Writer
    	io.ByteWriter
    }
    
    // encoder encodes an image to the JPEG format.
    type encoder struct {
    	// w is the writer to write to. err is the first error encountered during
    	// writing. All attempted writes after the first error become no-ops.
    	w   writer
    	err error
    	// buf is a scratch buffer.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  8. src/net/textproto/writer.go

    package textproto
    
    import (
    	"bufio"
    	"fmt"
    	"io"
    )
    
    // A Writer implements convenience methods for writing
    // requests or responses to a text protocol network connection.
    type Writer struct {
    	W   *bufio.Writer
    	dot *dotWriter
    }
    
    // NewWriter returns a new [Writer] writing to w.
    func NewWriter(w *bufio.Writer) *Writer {
    	return &Writer{W: w}
    }
    
    var crnl = []byte{'\r', '\n'}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  9. src/testing/iotest/writer.go

    // license that can be found in the LICENSE file.
    
    package iotest
    
    import "io"
    
    // TruncateWriter returns a Writer that writes to w
    // but stops silently after n bytes.
    func TruncateWriter(w io.Writer, n int64) io.Writer {
    	return &truncateWriter{w, n}
    }
    
    type truncateWriter struct {
    	w io.Writer
    	n int64
    }
    
    func (t *truncateWriter) Write(p []byte) (n int, err error) {
    	if t.n <= 0 {
    		return len(p), nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 674 bytes
    - Viewed (0)
  10. src/go/types/pointer.go

    // Elem returns the element type for the given pointer p.
    func (p *Pointer) Elem() Type { return p.base }
    
    func (p *Pointer) Underlying() Type { return p }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 761 bytes
    - Viewed (0)
Back to top