Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for Ball (0.28 sec)

  1. doc/next/6-stdlib/1-time.md

    Second, the timer channel associated with a `Timer` or `Ticker` is
    now unbuffered, with capacity 0.
    The main effect of this change is that Go now guarantees
    that for any call to a `Reset` or `Stop` method, no stale values
    prepared before that call will be sent or received after the call.
    Earlier versions of Go used channels with a one-element buffer,
    making it difficult to use `Reset` and `Stop` correctly.
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Apr 12 20:57:18 GMT 2024
    - 1.5K bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/swig/testdata/stdio/main.swig

    /* Copyright 2011 The Go Authors. All rights reserved.
       Use of this source code is governed by a BSD-style
       license that can be found in the LICENSE file.  */
    
    /* A trivial example of wrapping a C library using SWIG.  */
    
    %{
    #include <stdio.h>
    #include <stdlib.h>
    %}
    
    %typemap(gotype) const char * "string"
    %typemap(in) const char * %{
    	$1 = malloc($input.n + 1);
    	memcpy($1, $input.p, $input.n);
    	$1[$input.n] = '\0';
    %}
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri May 12 12:00:07 GMT 2023
    - 563 bytes
    - Viewed (0)
  3. api/go1.1.txt

    pkg debug/elf, const R_386_TLS_GD_CALL = 26
    pkg debug/elf, const R_386_TLS_GD_POP = 27
    pkg debug/elf, const R_386_TLS_GD_PUSH = 25
    pkg debug/elf, const R_386_TLS_GOTIE = 16
    pkg debug/elf, const R_386_TLS_IE = 15
    pkg debug/elf, const R_386_TLS_IE_32 = 33
    pkg debug/elf, const R_386_TLS_LDM = 19
    pkg debug/elf, const R_386_TLS_LDM_32 = 28
    pkg debug/elf, const R_386_TLS_LDM_CALL = 30
    pkg debug/elf, const R_386_TLS_LDM_POP = 31
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Mar 31 20:37:15 GMT 2022
    - 2.6M bytes
    - Viewed (0)
  4. doc/next/6-stdlib/99-minor/net/http/61472.md

    The new [Request.CookiesNamed] method retrieves all cookies that match the given name....
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Mar 20 18:08:20 GMT 2024
    - 87 bytes
    - Viewed (0)
  5. api/go1.13.txt

    pkg syscall (netbsd-arm64-cgo), const VTIME ideal-int
    pkg syscall (netbsd-arm64-cgo), const VWERASE = 4
    pkg syscall (netbsd-arm64-cgo), const VWERASE ideal-int
    pkg syscall (netbsd-arm64-cgo), const WALL = 8
    pkg syscall (netbsd-arm64-cgo), const WALL ideal-int
    pkg syscall (netbsd-arm64-cgo), const WALLSIG = 8
    pkg syscall (netbsd-arm64-cgo), const WALLSIG ideal-int
    pkg syscall (netbsd-arm64-cgo), const WALTSIG = 4
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Aug 08 18:44:16 GMT 2019
    - 452.6K bytes
    - Viewed (0)
  6. api/go1.11.txt

    pkg debug/elf, const R_RISCV_ALIGN R_RISCV
    pkg debug/elf, const R_RISCV_BRANCH = 16
    pkg debug/elf, const R_RISCV_BRANCH R_RISCV
    pkg debug/elf, const R_RISCV_CALL = 18
    pkg debug/elf, const R_RISCV_CALL R_RISCV
    pkg debug/elf, const R_RISCV_CALL_PLT = 19
    pkg debug/elf, const R_RISCV_CALL_PLT R_RISCV
    pkg debug/elf, const R_RISCV_COPY = 4
    pkg debug/elf, const R_RISCV_COPY R_RISCV
    pkg debug/elf, const R_RISCV_GNU_VTENTRY = 42
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Aug 22 03:48:56 GMT 2018
    - 25K bytes
    - Viewed (2)
  7. LICENSE

    Copyright (c) 2009 The Go Authors. All rights reserved.
    
    Redistribution and use in source and binary forms, with or without
    modification, are permitted provided that the following conditions are
    met:
    
       * Redistributions of source code must retain the above copyright
    notice, this list of conditions and the following disclaimer.
       * Redistributions in binary form must reproduce the above
    copyright notice, this list of conditions and the following disclaimer
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Jun 01 22:40:04 GMT 2016
    - 1.4K bytes
    - Viewed (0)
  8. api/go1.2.txt

    pkg syscall (linux-arm-cgo), const VSWTC ideal-int
    pkg syscall (linux-arm-cgo), const VTIME ideal-int
    pkg syscall (linux-arm-cgo), const VWERASE ideal-int
    pkg syscall (linux-arm-cgo), const WALL ideal-int
    pkg syscall (linux-arm-cgo), const WCLONE ideal-int
    pkg syscall (linux-arm-cgo), const WCONTINUED ideal-int
    pkg syscall (linux-arm-cgo), const WEXITED ideal-int
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Oct 18 04:36:59 GMT 2013
    - 1.9M bytes
    - Viewed (2)
  9. src/Make.dist

    # Copyright 2012 The Go Authors. All rights reserved.
    # Use of this source code is governed by a BSD-style
    # license that can be found in the LICENSE file.
    
    # Run go tool dist to install a command.
    # The -v causes dist to print the name of each directory as it runs.
    # The -vv causes dist to print each build command as it runs.
    # go tool dist clean cleans all directories, not just this one,
    # but it's as close as we can get.
    
    # Default target (first).
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Feb 08 20:26:47 GMT 2012
    - 553 bytes
    - Viewed (0)
  10. doc/next/6-stdlib/99-minor/sync/61696.md

    The [Map.Clear] method deletes all the entries, resulting in
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Apr 10 17:07:25 GMT 2024
    - 105 bytes
    - Viewed (0)
Back to top