Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 350 for adir (0.29 sec)

  1. src/internal/runtime/atomic/atomic_mips64x.s

    	SYNC
    	LL	(R3), R4
    	AND	R2, R4
    	SC	R4, (R3)
    	BEQ	R4, -4(PC)
    	SYNC
    	RET
    
    // func Or(addr *uint32, v uint32)
    TEXT ·Or(SB), NOSPLIT, $0-12
    	MOVV	ptr+0(FP), R1
    	MOVW	val+8(FP), R2
    
    	SYNC
    	LL	(R1), R3
    	OR	R2, R3
    	SC	R3, (R1)
    	BEQ	R3, -4(PC)
    	SYNC
    	RET
    
    // func And(addr *uint32, v uint32)
    TEXT ·And(SB), NOSPLIT, $0-12
    	MOVV	ptr+0(FP), R1
    	MOVW	val+8(FP), R2
    
    	SYNC
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 21:29:34 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  2. cni/pkg/nodeagent/net_test.go

    	ztunnelServer := fixture.ztunnelServer
    	podMeta := metav1.ObjectMeta{
    		Name:      "foo",
    		Namespace: "bar",
    		UID:       "123",
    	}
    	podIP := netip.MustParseAddr("99.9.9.9")
    	podIPs := []netip.Addr{podIP}
    
    	fixture.ipsetDeps.On("addIP",
    		"foo-v4",
    		netip.MustParseAddr("99.9.9.9"),
    		uint8(unix.IPPROTO_TCP),
    		string(podMeta.UID),
    		false,
    	).Return(nil)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 05:10:23 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  3. src/cmd/nm/nm.go

    		}
    		if len(syms) == 0 {
    			continue
    		}
    
    		found = true
    
    		switch *sortOrder {
    		case "address":
    			sort.Slice(syms, func(i, j int) bool { return syms[i].Addr < syms[j].Addr })
    		case "name":
    			sort.Slice(syms, func(i, j int) bool { return syms[i].Name < syms[j].Name })
    		case "size":
    			sort.Slice(syms, func(i, j int) bool { return syms[i].Size > syms[j].Size })
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. src/runtime/sys_darwin.go

    	KeepAlive(addr) // Just for consistency. Hopefully addr is not a Go address.
    }
    func madvise_trampoline()
    
    //go:nosplit
    //go:cgo_unsafe_args
    func mlock(addr unsafe.Pointer, n uintptr) {
    	libcCall(unsafe.Pointer(abi.FuncPCABI0(mlock_trampoline)), unsafe.Pointer(&addr))
    	KeepAlive(addr) // Just for consistency. Hopefully addr is not a Go address.
    }
    func mlock_trampoline()
    
    //go:nosplit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  5. pilot/pkg/trustbundle/trustbundle_test.go

    		{CertificateData: &meshconfig.MeshConfig_CertificateData_SpiffeBundleUrl{SpiffeBundleUrl: server1.Listener.Addr().String()}},
    		{CertificateData: &meshconfig.MeshConfig_CertificateData_Pem{Pem: rootCACert}},
    	}})
    	if !slices.Equal(tb.endpoints, []string{server2.Listener.Addr().String(), server1.Listener.Addr().String()}) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/link.go

    func (p *Prog) AddRestSourceReg(reg int16) {
    	p.AddRestSource(Addr{Type: TYPE_REG, Reg: reg})
    }
    
    // AddRestSourceConst calls p.AddRestSource with a const Addr containing off.
    func (p *Prog) AddRestSourceConst(off int64) {
    	p.AddRestSource(Addr{Type: TYPE_CONST, Offset: off})
    }
    
    // AddRestDest assigns []Args{{a, Destination}} to p.RestArgs when the second destination
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  7. src/runtime/os_plan9.go

    //go:noescape
    func exits(msg *byte)
    
    //go:noescape
    func brk_(addr unsafe.Pointer) int32
    
    func sleep(ms int32) int32
    
    func rfork(flags int32) int32
    
    //go:noescape
    func plan9_semacquire(addr *uint32, block int32) int32
    
    //go:noescape
    func plan9_tsemacquire(addr *uint32, ms int32) int32
    
    //go:noescape
    func plan9_semrelease(addr *uint32, count int32) int32
    
    //go:noescape
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  8. internal/event/target/webhook.go

    		cancelCh:   ctx.Done(),
    	}
    
    	// Calculate the webhook addr with the port number format
    	target.addr = args.Endpoint.Host
    	if _, _, err := net.SplitHostPort(args.Endpoint.Host); err != nil && strings.Contains(err.Error(), "missing port in address") {
    		switch strings.ToLower(args.Endpoint.Scheme) {
    		case "http":
    			target.addr += ":80"
    		case "https":
    			target.addr += ":443"
    		default:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  9. pilot/pkg/xds/workload.go

    	haveAliases := sets.New[string]()
    	for _, addr := range addrs {
    		// TODO(@hzxuzhonghu): calculate removed with aliases in `AddressInformation`
    		aliases := addr.Aliases()
    		removed.DeleteAll(aliases...)
    		n := addr.ResourceName()
    		have.Insert(n)
    		haveAliases.InsertAll(aliases...)
    		switch w.TypeUrl {
    		case v3.WorkloadType:
    			if addr.GetWorkload() != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 14:14:30 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  10. cni/pkg/nodeagent/cni-watcher_test.go

    	assert.Error(t, err)
    }
    
    func TestCNIPluginServer(t *testing.T) {
    	fakePodIP := "11.1.1.12"
    	_, addr, _ := net.ParseCIDR(fakePodIP + "/32")
    	valid := CNIPluginAddEvent{
    		Netns:        "/var/netns/foo",
    		PodName:      "pod-bingo",
    		PodNamespace: "funkyns",
    		IPs: []IPConfig{{
    			Address: *addr,
    		}},
    	}
    
    	setupLogging()
    	NodeName = "testnode"
    	ctx, cancel := context.WithCancel(context.Background())
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:35 UTC 2024
    - 7.6K bytes
    - Viewed (0)
Back to top