Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 105 for no_scope (0.15 sec)

  1. pkg/kubelet/cm/topologymanager/scope_none.go

    	"k8s.io/kubernetes/pkg/kubelet/cm/containermap"
    	"k8s.io/kubernetes/pkg/kubelet/lifecycle"
    )
    
    type noneScope struct {
    	scope
    }
    
    // Ensure noneScope implements Scope interface
    var _ Scope = &noneScope{}
    
    // NewNoneScope returns a none scope.
    func NewNoneScope() Scope {
    	return &noneScope{
    		scope{
    			name:             noneTopologyScope,
    			podTopologyHints: podTopologyHints{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 14 14:44:24 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  2. pkg/test/framework/scope_test.go

    			setup: func() *scope {
    				scope := newScope("s", nil)
    				scope.add(res, &resourceID{id: res.IDValue})
    				return scope
    			},
    		},
    		"parent": {
    			setup: func() *scope {
    				p := newScope("p", nil)
    				p.add(res, &resourceID{id: res.IDValue})
    				scope := newScope("s", p)
    				return scope
    			},
    		},
    		"missing": {
    			setup:    func() *scope { return newScope("s", nil) },
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  3. analysis/analysis-api/testData/components/compilerFacility/firPluginPrototypeMultiModule/composableInlineFunctionExpressionParameter.ir.txt

              a: CONSTRUCTOR_CALL 'public constructor <init> () [primary] declared in p2.A' type=p2.A origin=null
              content: FUN_EXPR type=@[ExtensionFunctionType] kotlin.Function1<p3.RowScope, kotlin.Unit> origin=LAMBDA
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Mar 14 20:08:24 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/topologymanager/scope_pod.go

    	"k8s.io/kubernetes/pkg/kubelet/lifecycle"
    	"k8s.io/kubernetes/pkg/kubelet/metrics"
    )
    
    type podScope struct {
    	scope
    }
    
    // Ensure podScope implements Scope interface
    var _ Scope = &podScope{}
    
    // NewPodScope returns a pod scope.
    func NewPodScope(policy Policy) Scope {
    	return &podScope{
    		scope{
    			name:             podTopologyScope,
    			podTopologyHints: podTopologyHints{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 14 14:44:24 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  5. src/cmd/cgo/internal/testerrors/testdata/notmatchedcfunction.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    /*
    // TODO(#56378): change back to "#cgo noescape noMatchedCFunction: no matched C function" in Go 1.23
    // ERROR MESSAGE: #cgo noescape disabled until Go 1.23
    #cgo noescape noMatchedCFunction
    */
    import "C"
    
    func main() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 02 16:43:23 UTC 2023
    - 397 bytes
    - Viewed (0)
  6. src/cmd/link/testdata/linkname/badlinkname.go

    package main
    
    import (
    	_ "reflect"
    	"unsafe"
    )
    
    //go:linkname noescape runtime.noescape
    func noescape(unsafe.Pointer) unsafe.Pointer
    
    //go:linkname rtype_String reflect.(*rtype).String
    func rtype_String(unsafe.Pointer) string
    
    func main() {
    	println(rtype_String(noescape(nil)))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:48:00 UTC 2024
    - 620 bytes
    - Viewed (0)
  7. src/crypto/internal/boring/boring.go

    	if bn == nil {
    		return false
    	}
    	*bnp = bn
    	return true
    }
    
    // noescape hides a pointer from escape analysis.  noescape is
    // the identity function but escape analysis doesn't think the
    // output depends on the input.  noescape is inlined and currently
    // compiles down to zero instructions.
    // USE CAREFULLY!
    //
    //go:nosplit
    func noescape(p unsafe.Pointer) unsafe.Pointer {
    	x := uintptr(p)
    	return unsafe.Pointer(x ^ 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 14:00:54 UTC 2024
    - 3K bytes
    - Viewed (0)
  8. test/fixedbugs/issue27557.go

    func f1() {
    	var t T
    	f := t.noescape // ERROR "t.noescape does not escape"
    	f()
    }
    
    func f2() {
    	var t T       // ERROR "moved to heap"
    	f := t.escape // ERROR "t.escape does not escape"
    	f()
    }
    
    func f3() {
    	var t T        // ERROR "moved to heap"
    	f := t.returns // ERROR "t.returns does not escape"
    	sink = f()
    }
    
    type T struct{}
    
    func (t *T) noescape()   {}           // ERROR "t does not escape"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 28 21:41:07 UTC 2021
    - 949 bytes
    - Viewed (0)
  9. pkg/kubelet/cm/topologymanager/scope_pod_test.go

    				{
    					"resource-3": nil,
    				},
    			},
    		},
    	}
    
    	for _, tc := range tcases {
    		podScope := &podScope{
    			scope{
    				hintProviders: tc.hp,
    				policy:        &mockPolicy{},
    				name:          podTopologyScope,
    			},
    		}
    
    		podScope.calculateAffinity(&v1.Pod{})
    		actual := podScope.policy.(*mockPolicy).ph
    		if !reflect.DeepEqual(tc.expected, actual) {
    			t.Errorf("Test Case: %s", tc.name)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 12 11:25:55 UTC 2020
    - 6.1K bytes
    - Viewed (0)
  10. src/runtime/os_solaris.go

    		mp.libcallsp = getcallersp()
    	} else {
    		mp = nil
    	}
    
    	var libcall libcall
    	libcall.fn = uintptr(unsafe.Pointer(fn))
    	libcall.n = 1
    	// TODO(rsc): Why is noescape necessary here and below?
    	libcall.args = uintptr(noescape(unsafe.Pointer(&a1)))
    	asmcgocall(unsafe.Pointer(&asmsysvicall6x), unsafe.Pointer(&libcall))
    	if mp != nil {
    		mp.libcallsp = 0
    	}
    	return libcall.r1, libcall.err
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 6.6K bytes
    - Viewed (0)
Back to top