Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 8,903 for usedBy (0.18 sec)

  1. test/fixedbugs/bug379.go

    // license that can be found in the LICENSE file.
    
    // Issue 2452.
    
    // Check that the error messages says 
    //	bug378.go:17: 1 + 2 not used
    // and not
    //	bug378.go:17: 1 not used
    
    package main
    
    func main() {
    	1 + 2 // ERROR "1 \+ 2 evaluated but not used|value computed is not used|is not used"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 14 21:28:48 UTC 2020
    - 419 bytes
    - Viewed (0)
  2. src/syscall/linkname_darwin.go

    // license that can be found in the LICENSE file.
    
    package syscall
    
    import _ "unsafe"
    
    // used by os
    //go:linkname closedir
    //go:linkname readdir_r
    
    // used by internal/poll
    //go:linkname fdopendir
    
    // used by internal/syscall/unix
    //go:linkname unlinkat
    //go:linkname openat
    //go:linkname fstatat
    
    // used by cmd/link
    //go:linkname msync
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 468 bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/NativeBinarySpec.java

        /**
         * Returns the {@link org.gradle.nativeplatform.toolchain.NativeToolChain} that will be used to build this binary.
         */
        NativeToolChain getToolChain();
    
        // TODO It would be better if these were added via a separate managed view, rather than hard coded.
        /**
         * The configuration of the linker used when linking this binary.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zptrace_mipsnn_linux.go

    //go:build linux && (mips || mips64)
    
    package unix
    
    import "unsafe"
    
    // PtraceRegsMips is the registers used by mips binaries.
    type PtraceRegsMips struct {
    	Regs     [32]uint64
    	Lo       uint64
    	Hi       uint64
    	Epc      uint64
    	Badvaddr uint64
    	Status   uint64
    	Cause    uint64
    }
    
    // PtraceGetRegsMips fetches the registers used by mips binaries.
    func PtraceGetRegsMips(pid int, regsout *PtraceRegsMips) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  5. test/fixedbugs/bug357.go

    // license that can be found in the LICENSE file.
    
    // issue 1993.
    // error used to have last line number in file
    
    package main
    
    func bla1() bool {
    	return false
    }
    
    func bla5() bool {
    	_ = 1
    	false  // ERROR "false evaluated but not used|value computed is not used|is not used"
    	_ = 2
    	return false
    }
    
    func main() {
    	x := bla1()
    	_ = x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 14 21:28:48 UTC 2020
    - 461 bytes
    - Viewed (0)
  6. src/cmd/asm/internal/asm/testdata/amd64dynlinkerror.s

    	RET
    TEXT ·a8(SB), 0, $0-0
    	CMPL runtime·writeBarrier(SB), $0
    	ADDQ AX, R15 // ERROR "when dynamic linking, R15 is clobbered by a global variable access and is used here"
    	RET
    TEXT ·a9(SB), 0, $0-0
    	CMPL runtime·writeBarrier(SB), $0
    	ORQ R15, R15 // ERROR "when dynamic linking, R15 is clobbered by a global variable access and is used here"
    	RET
    TEXT ·a10(SB), 0, $0-0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 15 20:45:41 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  7. pkg/ctrlz/fw/context.go

    package fw
    
    import (
    	"html/template"
    
    	"github.com/gorilla/mux"
    )
    
    // Topic is used to describe a single major ControlZ functional area.
    type Topic interface {
    	// Title returns the title for the area, which will be used in the sidenav and window title.
    	Title() string
    
    	// Prefix is the name used to reference this functionality in URLs.
    	Prefix() string
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 14:06:41 UTC 2023
    - 2K bytes
    - Viewed (0)
  8. pkg/test/framework/components/echo/portgen.go

    			protocol.Redis:   tcpBase,
    			protocol.UDP:     tcpBase,
    		},
    		used: make(map[int]struct{}),
    	}
    }
    
    // SetUsed marks the given port as used, so that it will not be assigned by the
    // generator.
    func (g *portGenerator) SetUsed(port int) *portGenerator {
    	g.used[port] = struct{}{}
    	return g
    }
    
    // IsUsed indicates if the given port has already been used.
    func (g *portGenerator) IsUsed(port int) bool {
    	_, ok := g.used[port]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 04 00:24:04 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_overlay.txt

    module get.doesnt/add/dep
    
    replace dependency/mod v1.0.0 => ../get-doesnt-add-dep-dependency
    -- overlay-sum-used/go.mod --
    module overlay.sum/used
    
    require rsc.io/quote v1.5.0
    -- overlay-sum-used/p.go --
    package p
    
    import "rsc.io/quote"
    
    func f() string {
    	return quote.Hello()
    }
    -- overlay-sum-used/incomplete-sum-file --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 7.7K bytes
    - Viewed (0)
  10. pkg/serviceaccount/metrics.go

    			StabilityLevel: metrics.ALPHA,
    		},
    	)
    
    	// ValidTokensTotal is the number of valid projected tokens used.
    	validTokensTotal = metrics.NewCounter(
    		&metrics.CounterOpts{
    			Subsystem:      kubeServiceAccountSubsystem,
    			Name:           "valid_tokens_total",
    			Help:           "Cumulative valid projected service account tokens used",
    			StabilityLevel: metrics.ALPHA,
    		},
    	)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 03:52:06 UTC 2023
    - 3.4K bytes
    - Viewed (0)
Back to top