Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 165 for beginning (0.12 sec)

  1. src/encoding/csv/example_test.go

    }
    
    // This example shows how csv.Reader can be configured to handle other
    // types of CSV files.
    func ExampleReader_options() {
    	in := `first_name;last_name;username
    "Rob";"Pike";rob
    # lines beginning with a # character are ignored
    Ken;Thompson;ken
    "Robert";"Griesemer";"gri"
    `
    	r := csv.NewReader(strings.NewReader(in))
    	r.Comma = ';'
    	r.Comment = '#'
    
    	records, err := r.ReadAll()
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 22 11:11:37 UTC 2015
    - 2.6K bytes
    - Viewed (0)
  2. src/runtime/testdata/testprogcgo/lockosthread.go

    		// Lock the OS thread now so main runs on the main thread.
    		runtime.LockOSThread()
    	})
    	register("LockOSThreadAlt", LockOSThreadAlt)
    }
    
    func LockOSThreadMain() {
    	// This requires GOMAXPROCS=1 from the beginning to reliably
    	// start a goroutine on the main thread.
    	if runtime.GOMAXPROCS(-1) != 1 {
    		println("requires GOMAXPROCS=1")
    		os.Exit(1)
    	}
    
    	ready := make(chan bool, 1)
    	go func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 02 20:21:33 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/secretbox/secretbox.go

    	"k8s.io/apiserver/pkg/storage/value"
    )
    
    // secretbox implements at rest encryption of the provided values given a 32 byte secret key.
    // Uses a standard 24 byte nonce (placed at the beginning of the cipher text) generated
    // from crypto/rand. Does not perform authentication of the data at rest.
    type secretboxTransformer struct {
    	key [32]byte
    }
    
    const nonceSize = 24
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 17 16:31:31 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  4. common/scripts/gobuild.sh

    GCFLAGS=${GCFLAGS:-}
    export CGO_ENABLED=${CGO_ENABLED:-0}
    
    if [[ "${STATIC}" !=  "1" ]];then
        LDFLAGS=""
    fi
    
    # gather buildinfo if not already provided
    # For a release build BUILDINFO should be produced
    # at the beginning of the build and used throughout
    if [[ -z ${BUILDINFO} ]];then
        BUILDINFO=$(mktemp)
        "${SCRIPTPATH}/report_build_info.sh" > "${BUILDINFO}"
    fi
    
    # BUILD LD_EXTRAFLAGS
    LD_EXTRAFLAGS=""
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 21 14:08:46 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/normalization/RuntimeClasspathNormalization.java

     * automatically appended.</p>
     *
     * <p>Examples:</p>
     *
     * <pre>
     * all files ending with '.json' (including files in subdirectories)
     *    &#42;&#42;&#47;&#42;.json
     * </pre>
     *
     * <pre>
     * all files beginning with 'build-' in the level1/level2 directory
     *    level1/level2/build-&#42;
     * </pre>
     *
     * <pre>
     * all files (including subdirectories) beneath config/build-data
     *   config/build-data/
     * </pre>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 19 12:43:32 UTC 2021
    - 2.8K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/internal/component/local/model/TransformedComponentFileArtifactIdentifier.java

     * as artifact transformations may result in multiple artifacts with the same file name.
     *
     * <p>The original file name should refer to the name of the artifact at the beginning of the transform chain.</p>
     */
    public class TransformedComponentFileArtifactIdentifier implements ComponentArtifactIdentifier, DisplayName {
        private final ComponentIdentifier componentId;
        private final String fileName;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 21 18:43:44 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  7. src/net/textproto/writer.go

    		w.dot.Close() // sets w.dot = nil
    	}
    }
    
    type dotWriter struct {
    	w     *Writer
    	state int
    }
    
    const (
    	wstateBegin     = iota // initial state; must be zero
    	wstateBeginLine        // beginning of line
    	wstateCR               // wrote \r (possibly at end of line)
    	wstateData             // writing data in middle of line
    )
    
    func (d *dotWriter) Write(b []byte) (n int, err error) {
    	bw := d.w.W
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/debug/debug_options.proto

    //
    // Next ID: 9
    message DebugOptions {
      // If not empty, dumps MLIR to the specified directory. The initial state of
      // the MLIR after import will be dumped at the beginning of each pass manager
      // run. Additionally, MLIR will be dumped before and after each pass
      // depending on pass names and functions matched using the
      // `ir_dump_pass_regex` and `ir_dump_func_regex` values.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 10 02:44:52 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/syntax/testing.go

    // preceding the comment and the Error message is the comment text,
    // with all comments that are on the same line collected in a slice, in
    // source order. If there is no preceding token (the matching comment
    // appears at the beginning of the file), then the recorded position
    // is unknown (line, col = 0, 0). If there are no matching comments,
    // the result is nil.
    func CommentMap(src io.Reader, rx *regexp.Regexp) (res map[uint][]Error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:53:18 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  10. src/debug/elf/reader.go

    		return 0, os.ErrInvalid
    
    	case newOffset == 0:
    		r.r = nil
    
    	case newOffset == r.size:
    		r.r = errorReader{io.EOF}
    
    	default:
    		if newOffset < r.offset {
    			// Restart at the beginning.
    			r.start()
    		}
    		// Read until we reach offset.
    		var buf [512]byte
    		for r.offset < newOffset {
    			b := buf[:]
    			if newOffset-r.offset < int64(len(buf)) {
    				b = buf[:newOffset-r.offset]
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:06:17 UTC 2023
    - 2.1K bytes
    - Viewed (0)
Back to top