Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 948 for __unused (0.46 sec)

  1. src/runtime/defs_linux_ppc64.go

    }
    
    type ucontext struct {
    	uc_flags    uint64
    	uc_link     *ucontext
    	uc_stack    stackt
    	uc_sigmask  uint64
    	__unused    [15]uint64
    	uc_mcontext sigcontext
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:05:10 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  2. src/runtime/defs_linux_ppc64le.go

    }
    
    type ucontext struct {
    	uc_flags    uint64
    	uc_link     *ucontext
    	uc_stack    stackt
    	uc_sigmask  uint64
    	__unused    [15]uint64
    	uc_mcontext sigcontext
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:05:10 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  3. src/runtime/defs_linux_arm.go

    	cpsr          uint32
    	fault_address uint32
    }
    
    type ucontext struct {
    	uc_flags    uint32
    	uc_link     *ucontext
    	uc_stack    stackt
    	uc_mcontext sigcontext
    	uc_sigmask  uint32
    	__unused    [31]int32
    	uc_regspace [128]uint32
    }
    
    type timeval struct {
    	tv_sec  int32
    	tv_usec int32
    }
    
    func (tv *timeval) set_usec(x int32) {
    	tv.tv_usec = x
    }
    
    type itimerspec struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:05:10 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  4. src/cmd/vet/testdata/unused/unused.go

    // Copyright 2015 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.
    
    // This file contains tests for the unusedresult checker.
    
    package unused
    
    import "fmt"
    
    func _() {
    	fmt.Errorf("") // ERROR "result of fmt.Errorf call not used"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 20 15:46:42 UTC 2019
    - 324 bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-monolithic/src/unused.c

    Louis Jacomet <******@****.***> 1711728981 +0100
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 42 bytes
    - Viewed (0)
  6. src/cmd/go/testdata/mod/example.com_retract_v1.0.0-unused.txt

    -- .mod --
    module example.com/retract
    
    go 1.15
    
    -- .info --
    {"Version":"v1.0.0-unused"}
    
    -- retract.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 26 21:12:37 UTC 2020
    - 122 bytes
    - Viewed (0)
  7. internal/s3select/unused-errors.go

    Harshavardhana <******@****.***> 1708416995 -0800
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Feb 20 08:16:35 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  8. tests/testdata/certs/dns/cert-chain-unused.pem

    Faseela K <******@****.***> 1686686394 +0200
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 13 19:59:54 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  9. src/syscall/ztypes_linux_ppc64.go

    	Gid        uint32
    	X__pad2    int32
    	Rdev       uint64
    	Size       int64
    	Blksize    int64
    	Blocks     int64
    	Atim       Timespec
    	Mtim       Timespec
    	Ctim       Timespec
    	X__unused4 uint64
    	X__unused5 uint64
    	X__unused6 uint64
    }
    
    type Statfs_t struct {
    	Type    int64
    	Bsize   int64
    	Blocks  uint64
    	Bfree   uint64
    	Bavail  uint64
    	Files   uint64
    	Ffree   uint64
    	Fsid    Fsid
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/util/concurrent/SmoothRateLimiter.java

       *
       * How this works is best explained with an example:
       *
       * For a RateLimiter that produces 1 token per second, every second that goes by with the
       * RateLimiter being unused, we increase storedPermits by 1. Say we leave the RateLimiter unused
       * for 10 seconds (i.e., we expected a request at time X, but we are at time X + 10 seconds before
       * a request actually arrives; this is also related to the point made in the last paragraph), thus
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 19.3K bytes
    - Viewed (0)
Back to top