Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 146 for lineLess (0.13 sec)

  1. src/cmd/compile/internal/test/mergelocals_test.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package test
    
    import (
    	"cmd/compile/internal/ir"
    	"cmd/compile/internal/liveness"
    	"cmd/compile/internal/typecheck"
    	"cmd/compile/internal/types"
    	"cmd/internal/src"
    	"internal/testenv"
    	"path/filepath"
    	"sort"
    	"strings"
    	"testing"
    )
    
    func mkiv(name string) *ir.Name {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:43:53 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  2. test/live_uintptrkeepalive.go

    //go:build !windows && !js && !wasip1
    
    // 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.
    
    // Test escape analysis and liveness inferred for uintptrkeepalive functions.
    //
    // This behavior is enabled automatically for function declarations with no
    // bodies (assembly, linkname), as well as explicitly on complete functions
    // with //go:uintptrkeepalive.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 2K bytes
    - Viewed (0)
  3. test/fixedbugs/issue16249.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.
    
    // Liveness calculations were wrong for a result parameter pushed onto
    // the heap in a function that used defer.  Program would crash with
    //     runtime: bad pointer in frame main.A at 0xc4201e6838: 0x1
    
    package main
    
    import "errors"
    
    var sink interface{}
    
    //go:noinline
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jul 02 00:40:40 UTC 2016
    - 1.3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssagen/pgen.go

    	"cmd/compile/internal/ir"
    	"cmd/compile/internal/liveness"
    	"cmd/compile/internal/objw"
    	"cmd/compile/internal/pgoir"
    	"cmd/compile/internal/ssa"
    	"cmd/compile/internal/types"
    	"cmd/internal/obj"
    	"cmd/internal/objabi"
    	"cmd/internal/src"
    )
    
    // cmpstackvarlt reports whether the stack variable a sorts before b.
    func cmpstackvarlt(a, b *ir.Name, mls *liveness.MergeLocalsState) bool {
    	// Sort non-autos before autos.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/cache.go

    	stackAllocState *stackAllocState
    
    	scrPoset []*poset // scratch poset to be reused
    
    	// Reusable regalloc state.
    	regallocValues []valState
    
    	ValueToProgAfter []*obj.Prog
    	debugState       debugState
    
    	Liveness interface{} // *gc.livenessFuncCache
    
    	// Free "headers" for use by the allocators in allocators.go.
    	// Used to put slices in sync.Pools without allocation.
    	hdrValueSlice []*[]*Value
    	hdrInt64Slice []*[]int64
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 15 23:00:54 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  6. pkg/probe/tcp/tcp.go

    	"k8s.io/kubernetes/pkg/probe"
    
    	"k8s.io/klog/v2"
    )
    
    // New creates Prober.
    func New() Prober {
    	return tcpProber{}
    }
    
    // Prober is an interface that defines the Probe function for doing TCP readiness/liveness checks.
    type Prober interface {
    	Probe(host string, port int, timeout time.Duration) (probe.Result, string, error)
    }
    
    type tcpProber struct{}
    
    // Probe checks that a TCP connection to the address can be opened.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 16:57:41 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  7. cni/pkg/constants/constants.go

    // Internal constants
    const (
    	DefaultKubeconfigMode = 0o600
    	CNIAgentLogScope      = "cni-agent"
    	CNIPluginLogScope     = "cni-plugin"
    	CNIAddEventPath       = "/cmdadd"
    	UDSLogPath            = "/log"
    
    	// K8s liveness and readiness endpoints
    	LivenessEndpoint   = "/healthz"
    	ReadinessEndpoint  = "/readyz"
    	ReadinessPort      = "8000"
    	ServiceAccountPath = "/var/run/secrets/kubernetes.io/serviceaccount"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  8. test/live.go

    //
    // For register ABI, liveness info changes slightly. See live_regabi.go.
    
    // Copyright 2014 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.
    
    // liveness tests with inlining disabled.
    // see also live2.go.
    
    package main
    
    func printnl()
    
    //go:noescape
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 18K bytes
    - Viewed (0)
  9. test/uintptrescapes2.go

    // errorcheck -0 -l -m -live
    
    // 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.
    
    // Test escape analysis and liveness inferred for uintptrescapes functions.
    
    package p
    
    import (
    	"unsafe"
    )
    
    //go:uintptrescapes
    func F1(a uintptr) {} // ERROR "escaping uintptr"
    
    //go:uintptrescapes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 24 18:24:24 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  10. src/runtime/funcdata.h

    #define FUNCDATA_WrapInfo 7
    
    // Pseudo-assembly statements.
    
    // GO_ARGS, GO_RESULTS_INITIALIZED, and NO_LOCAL_POINTERS are macros
    // that communicate to the runtime information about the location and liveness
    // of pointers in an assembly function's arguments, results, and stack frame.
    // This communication is only required in assembly functions that make calls
    // to other functions that might be preempted or grow the stack.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 18:28:09 UTC 2023
    - 2.5K bytes
    - Viewed (0)
Back to top