Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,437 for IsSame (0.11 sec)

  1. src/cmd/internal/objfile/pe.go

    }
    
    func loadPETable(f *pe.File, sname, ename string) ([]byte, error) {
    	ssym, err := findPESymbol(f, sname)
    	if err != nil {
    		return nil, err
    	}
    	esym, err := findPESymbol(f, ename)
    	if err != nil {
    		return nil, err
    	}
    	if ssym.SectionNumber != esym.SectionNumber {
    		return nil, fmt.Errorf("%s and %s symbols must be in the same section", sname, ename)
    	}
    	sect := f.Sections[ssym.SectionNumber-1]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 20 00:56:30 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  2. pilot/pkg/model/policyattachment_test.go

    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    			test.SetForTest(t, &features.EnableSelectorBasedK8sGatewayPolicy, tt.enableSelectorPolicies)
    			nsName := types.NamespacedName{Name: "policy1", Namespace: "default"}
    			matcher := tt.selection.ShouldAttachPolicy(mockKind, nsName, tt.policy)
    
    			if matcher != tt.expected {
    				t.Errorf("Expected %v, but got %v", tt.expected, matcher)
    			}
    		})
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  3. src/runtime/stubs.go

    import (
    	"internal/abi"
    	"unsafe"
    )
    
    // Should be a built-in for unsafe.Pointer?
    //
    // add should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - fortio.org/log
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname add
    //go:nosplit
    func add(p unsafe.Pointer, x uintptr) unsafe.Pointer {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  4. src/runtime/mbarrier.go

    // anywhere in the bulk barrier or memmove.
    //
    // typedmemmove should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/RomiChan/protobuf
    //   - github.com/segmentio/encoding
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname typedmemmove
    //go:nosplit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  5. releasenotes/notes/service-instance-same-namespace.yaml

    John Howard <******@****.***> 1621971350 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 25 19:35:50 UTC 2021
    - 172 bytes
    - Viewed (0)
  6. pkg/kubelet/lifecycle/predicate.go

    func rejectPodAdmissionBasedOnOSSelector(pod *v1.Pod, node *v1.Node) bool {
    	labels := node.Labels
    	osName, osLabelExists := labels[v1.LabelOSStable]
    	if !osLabelExists || osName != runtime.GOOS {
    		if len(labels) == 0 {
    			labels = make(map[string]string)
    		}
    		labels[v1.LabelOSStable] = runtime.GOOS
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 19 00:47:50 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  7. src/runtime/timestub.go

    package runtime
    
    import _ "unsafe" // for go:linkname
    
    // time_now should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - gitee.com/quant1x/gox
    //   - github.com/phuslu/log
    //   - github.com/sethvargo/go-limiter
    //   - github.com/ulule/limiter/v3
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 889 bytes
    - Viewed (0)
  8. src/cmd/internal/objfile/plan9obj.go

    		if s.Name != name {
    			continue
    		}
    		return &s, nil
    	}
    	return nil, fmt.Errorf("no %s symbol found", name)
    }
    
    func loadPlan9Table(f *plan9obj.File, sname, ename string) ([]byte, error) {
    	ssym, err := findPlan9Symbol(f, sname)
    	if err != nil {
    		return nil, err
    	}
    	esym, err := findPlan9Symbol(f, ename)
    	if err != nil {
    		return nil, err
    	}
    	sect := f.Section("text")
    	if sect == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 21 01:01:44 UTC 2017
    - 3.5K bytes
    - Viewed (0)
  9. src/runtime/symtab.go

    // runtime_FrameStartLine returns the start line of the function in a Frame.
    //
    // runtime_FrameStartLine should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/grafana/pyroscope-go/godeltaprof
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname runtime_FrameStartLine runtime/pprof.runtime_FrameStartLine
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  10. src/runtime/rand.go

    // randomness must always use rand.
    //
    // cheaprand should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/bytedance/gopkg
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname cheaprand
    //go:nosplit
    func cheaprand() uint32 {
    	mp := getg().m
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 14:32:47 UTC 2024
    - 8K bytes
    - Viewed (0)
Back to top