Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for rob (0.01 sec)

  1. src/encoding/csv/example_test.go

    	in := `first_name,last_name,username
    "Rob","Pike",rob
    Ken,Thompson,ken
    "Robert","Griesemer","gri"
    `
    	r := csv.NewReader(strings.NewReader(in))
    
    	for {
    		record, err := r.Read()
    		if err == io.EOF {
    			break
    		}
    		if err != nil {
    			log.Fatal(err)
    		}
    
    		fmt.Println(record)
    	}
    	// Output:
    	// [first_name last_name username]
    	// [Rob Pike rob]
    	// [Ken Thompson ken]
    	// [Robert Griesemer gri]
    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. LICENSES/vendor/github.com/robfig/cron/v3/LICENSE

    = vendor/github.com/robfig/cron/v3 licensed under: =
    
    Copyright (C) 2012 Rob Figueiredo
    All Rights Reserved.
    
    MIT LICENSE
    
    Permission is hereby granted, free of charge, to any person obtaining a copy of
    this software and associated documentation files (the "Software"), to deal in
    the Software without restriction, including without limitation the rights to
    use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 14 23:03:03 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  3. src/path/path.go

    //
    // The returned path ends in a slash only if it is the root "/".
    //
    // If the result of this process is an empty string, Clean
    // returns the string ".".
    //
    // See also Rob Pike, “Lexical File Names in Plan 9 or
    // Getting Dot-Dot Right,”
    // https://9p.io/sys/doc/lexnames.html
    func Clean(path string) string {
    	if path == "" {
    		return "."
    	}
    
    	rooted := path[0] == '/'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 23 17:33:57 UTC 2023
    - 5.9K bytes
    - Viewed (0)
Back to top