Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 57 for ptrBase (0.45 sec)

  1. src/syscall/types_freebsd.go

    #include <fcntl.h>
    #include <signal.h>
    #include <termios.h>
    #include <stdio.h>
    #include <unistd.h>
    #include <sys/event.h>
    #include <sys/mman.h>
    #include <sys/mount.h>
    #include <sys/param.h>
    #include <sys/ptrace.h>
    #include <sys/resource.h>
    #include <sys/select.h>
    #include <sys/signal.h>
    #include <sys/socket.h>
    #include <sys/stat.h>
    #include <sys/time.h>
    #include <sys/types.h>
    #include <sys/un.h>
    #include <sys/wait.h>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 6.7K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/mod/rsc.io_quote_v0.0.0-20180214005840-23179ee8a569.txt

    package quote // import "rsc.io/quote"
    
    import "rsc.io/sampler"
    
    // Hello returns a greeting.
    func Hello() string {
    	return sampler.Hello()
    }
    
    // Glass returns a useful phrase for world travelers.
    func Glass() string {
    	// See http://www.oocities.org/nodotus/hbglass.html.
    	return "I can eat glass and it doesn't hurt me."
    }
    
    // Go returns a Go proverb.
    func Go() string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 12 20:46:50 UTC 2018
    - 2K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/mod/rsc.io_quote_v0.0.0-20180709153244-fd906ed3b100.txt

    package quote // import "rsc.io/quote"
    
    import "rsc.io/sampler"
    
    // Hello returns a greeting.
    func HelloV2() string {
    	return sampler.Hello()
    }
    
    // Glass returns a useful phrase for world travelers.
    func GlassV2() string {
    	// See http://www.oocities.org/nodotus/hbglass.html.
    	return "I can eat glass and it doesn't hurt me."
    }
    
    // Go returns a Go proverb.
    func GoV2() string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 12 20:46:50 UTC 2018
    - 2K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/mod/rsc.io_quote_v0.0.0-20180709160352-0d003b9c4bfa.txt

    package quote // import "rsc.io/quote"
    
    import "rsc.io/quote/v2"
    
    // Hello returns a greeting.
    func Hello() string {
    	return quote.HelloV2()
    }
    
    // Glass returns a useful phrase for world travelers.
    func Glass() string {
    	// See http://www.oocities.org/nodotus/hbglass.html.
    	return quote.GlassV2()
    }
    
    // Go returns a Go proverb.
    func Go() string {
    	return quote.GoV2()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 12 20:46:50 UTC 2018
    - 2.2K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/mod/rsc.io_quote_v2_v2.0.1.txt

    package quote // import "rsc.io/quote"
    
    import "rsc.io/sampler"
    
    // Hello returns a greeting.
    func HelloV2() string {
    	return sampler.Hello()
    }
    
    // Glass returns a useful phrase for world travelers.
    func GlassV2() string {
    	// See http://www.oocities.org/nodotus/hbglass.html.
    	return "I can eat glass and it doesn't hurt me."
    }
    
    // Go returns a Go proverb.
    func GoV2() string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 12 20:46:50 UTC 2018
    - 2K bytes
    - Viewed (0)
  6. pkg/util/strcase/camelcase.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package strcase
    
    import (
    	"bytes"
    	"strings"
    )
    
    // CamelCase converts the string into camel case string
    func CamelCase(s string) string {
    	if s == "" {
    		return ""
    	}
    	t := make([]byte, 0, 32)
    	i := 0
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 28 19:48:10 UTC 2020
    - 2.7K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/mod/rsc.io_quote_v1.5.1.txt

    package quote // import "rsc.io/quote"
    
    import "rsc.io/sampler"
    
    // Hello returns a greeting.
    func Hello() string {
    	return sampler.Hello()
    }
    
    // Glass returns a useful phrase for world travelers.
    func Glass() string {
    	// See http://www.oocities.org/nodotus/hbglass.html.
    	return "I can eat glass and it doesn't hurt me."
    }
    
    // Go returns a Go proverb.
    func Go() string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 12 20:46:50 UTC 2018
    - 2K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/mod/rsc.io_quote_v0.0.0-20180628003336-dd9747d19b04.txt

    package quote // import "rsc.io/quote"
    
    import "rsc.io/sampler"
    
    AN EVEN WORSE CHANGE!
    
    // Hello returns a greeting.
    func Hello() string {
    	return sampler.Hello()
    }
    
    // Glass returns a useful phrase for world travelers.
    func Glass() string {
    	// See http://www.oocities.org/nodotus/hbglass.html.
    	return "I can eat glass and it doesn't hurt me."
    }
    
    // Go returns a Go proverb.
    func Go() string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 12 20:46:50 UTC 2018
    - 2.3K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/mod/rsc.io_quote_v0.0.0-20180709162749-b44a0b17b2d1.txt

    package quote // import "rsc.io/quote"
    
    import "rsc.io/quote/v2"
    
    // Hello returns a greeting.
    func Hello() string {
    	return quote.HelloV2()
    }
    
    // Glass returns a useful phrase for world travelers.
    func Glass() string {
    	// See http://www.oocities.org/nodotus/hbglass.html.
    	return quote.GlassV2()
    }
    
    // Go returns a Go proverb.
    func Go() string {
    	return quote.GoV2()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 12 20:46:50 UTC 2018
    - 2.2K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/mod/rsc.io_quote_v0.0.0-20180709162816-fe488b867524.txt

    package quote // import "rsc.io/quote"
    
    import "rsc.io/quote/v2"
    
    // Hello returns a greeting.
    func Hello() string {
    	return quote.HelloV2()
    }
    
    // Glass returns a useful phrase for world travelers.
    func Glass() string {
    	// See http://www.oocities.org/nodotus/hbglass.html.
    	return quote.GlassV2()
    }
    
    // Go returns a Go proverb.
    func Go() string {
    	return quote.GoV2()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 12 20:46:50 UTC 2018
    - 2.2K bytes
    - Viewed (0)
Back to top