Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 469 for linkers (0.13 sec)

  1. pkg/controlplane/controller/apiserverleasegc/gc_controller.go

    	informers "k8s.io/client-go/informers/coordination/v1"
    	"k8s.io/client-go/kubernetes"
    	listers "k8s.io/client-go/listers/coordination/v1"
    	"k8s.io/client-go/tools/cache"
    
    	"k8s.io/klog/v2"
    )
    
    // Controller deletes expired apiserver leases.
    type Controller struct {
    	kubeclientset kubernetes.Interface
    
    	leaseLister   listers.LeaseLister
    	leaseInformer cache.SharedIndexInformer
    	leasesSynced  cache.InformerSynced
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 25 03:27:44 UTC 2021
    - 4.6K bytes
    - Viewed (0)
  2. Makefile

    lint: getdeps ## runs golangci-lint suite of linters
    	@echo "Running $@ check"
    	@$(GOLANGCI) run --build-tags kqueue --timeout=10m --config ./.golangci.yml
    
    lint-fix: getdeps ## runs golangci-lint suite of linters with automatic fixes
    	@echo "Running $@ check"
    	@$(GOLANGCI) run --build-tags kqueue --timeout=10m --config ./.golangci.yml --fix
    
    check: test
    test: verifiers build ## builds minio, runs linters, tests
    	@echo "Running unit tests"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 17:41:02 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/plugins/NativeComponentPluginTest.groovy

                it == testExecutable.tasks.link
                it.toolChain.get() == testExecutable.toolChain
                it.targetPlatform.get() == testExecutable.targetPlatform
                it.linkerArgs.get() == testExecutable.linker.args
            }
    
            and:
            def lifecycleTask = project.tasks.testExecutable
            lifecycleTask TaskDependencyMatchers.dependsOn("linkTestExecutable")
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4K bytes
    - Viewed (0)
  4. test/fixedbugs/issue49619.go

    // build
    
    // Copyright 2021 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 testcase caused a linker crash in DWARF generation.
    
    package main
    
    //go:noinline
    func f() any {
    	var a []any
    	return a[0]
    }
    
    func main() {
    	f()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 324 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/windows-resources/groovy/build.gradle

                sources {
                    cpp {
                        lib library: 'hello'
                    }
                }
            }
        }
    
        binaries {
            all {
                linker.args "user32.lib"
            }
    
            // For any shared library binaries built with Visual C++, define the DLL_EXPORT macro
            withType(SharedLibraryBinarySpec) {
                if (toolChain in VisualCpp) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 711 bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/gccgo_link_ldflags.txt

    # Test that #cgo LDFLAGS are properly quoted.
    # The #cgo LDFLAGS below should pass a string with spaces to -L,
    # as though searching a directory with a space in its name.
    # It should not pass --nosuchoption to the external linker.
    
    [!cgo] skip
    
    go build
    
    [!exec:gccgo] skip
    
    # TODO: remove once gccgo on builder is updated
    [GOOS:aix] [GOARCH:ppc64] skip
    
    go build -compiler gccgo
    
    -- go.mod --
    module m
    -- cgo.go --
    package main
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 07 06:52:47 UTC 2023
    - 499 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/native-binaries/prebuilt/groovy/3rd-party-lib/util/build.gradle

                    if (buildType == buildTypes.debug) {
                        cppCompiler.define 'DEBUG'
                        if (toolChain in VisualCpp) {
                            cppCompiler.args '/Zi'
                            linker.args '/DEBUG'
                        } else {
                            cppCompiler.args "-g"
                        }
                    }
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 553 bytes
    - Viewed (0)
  8. src/cmd/cgo/internal/testfortran/fortran_test.go

    		if runtime.GOARCH == "386" {
    			fcExtra = append(fcExtra, "-m32")
    		}
    
    		// Find libgfortran. If the FORTRAN compiler isn't bundled
    		// with the C linker, this may be in a path the C linker can't
    		// find on its own. (See #14544)
    		libExt := "so"
    		switch runtime.GOOS {
    		case "darwin":
    			libExt = "dylib"
    		case "aix":
    			libExt = "a"
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 01:29:16 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  9. src/cmd/link/cgo_test.go

    		// These errors come from GCC or clang, not Go.
    		var noLTO = []string{
    			`unrecognized command line option "-flto"`,
    			"unable to pass LLVM bit-code files to linker",
    			"file not recognized: File format not recognized",
    			"LTO support has not been enabled",
    			"linker command failed with exit code",
    			"gcc: can't load library",
    		}
    		for _, msg := range noLTO {
    			if bytes.Contains(out, []byte(msg)) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 09 22:13:02 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  10. test/reflectmethod1.go

    // run
    
    // Copyright 2016 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.
    
    // The linker can prune methods that are not directly called or
    // assigned to interfaces, but only if reflect.Type.Method is
    // never used. Test it here.
    
    package main
    
    import "reflect"
    
    var called = false
    
    type M int
    
    func (m M) UniqueMethodName() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 11 21:19:20 UTC 2016
    - 578 bytes
    - Viewed (0)
Back to top