Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,827 for oldB (0.07 sec)

  1. src/internal/runtime/atomic/atomic_wasm.go

    //go:noinline
    func Xchg(ptr *uint32, new uint32) uint32 {
    	old := *ptr
    	*ptr = new
    	return old
    }
    
    //go:nosplit
    //go:noinline
    func Xchg64(ptr *uint64, new uint64) uint64 {
    	old := *ptr
    	*ptr = new
    	return old
    }
    
    //go:nosplit
    //go:noinline
    func Xchgint32(ptr *int32, new int32) int32 {
    	old := *ptr
    	*ptr = new
    	return old
    }
    
    //go:nosplit
    //go:noinline
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  2. src/runtime/sys_darwin_arm64.s

    	MOVW	8(R0), R1	// arg 2 miblen
    	MOVD	16(R0), R2	// arg 3 oldp
    	MOVD	24(R0), R3	// arg 4 oldlenp
    	MOVD	32(R0), R4	// arg 5 newp
    	MOVD	40(R0), R5	// arg 6 newlen
    	MOVD	0(R0), R0	// arg 1 mib
    	BL	libc_sysctl(SB)
    	RET
    
    TEXT runtime·sysctlbyname_trampoline(SB),NOSPLIT,$0
    	MOVD	8(R0), R1	// arg 2 oldp
    	MOVD	16(R0), R2	// arg 3 oldlenp
    	MOVD	24(R0), R3	// arg 4 newp
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 03 16:07:59 UTC 2023
    - 18.3K bytes
    - Viewed (0)
  3. src/runtime/sys_netbsd_arm.s

    	MOVW new+0(FP), R0	// arg 1 - nss
    	MOVW old+4(FP), R1	// arg 2 - oss
    	SWI $SYS___sigaltstack14
    	MOVW.CS $0, R8	// crash on syscall failure
    	MOVW.CS R8, (R8)
    	RET
    
    TEXT runtime·sysctl(SB),NOSPLIT,$8
    	MOVW mib+0(FP), R0	// arg 1 - name
    	MOVW miblen+4(FP), R1	// arg 2 - namelen
    	MOVW out+8(FP), R2	// arg 3 - oldp
    	MOVW size+12(FP), R3	// arg 4 - oldlenp
    	MOVW dst+16(FP), R4	// arg 5 - newp
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  4. src/internal/runtime/atomic/atomic_andor_generic.go

    	for {
    		old := *ptr
    		if Cas(ptr, old, old&val) {
    			return old
    		}
    	}
    }
    
    //go:nosplit
    func Or32(ptr *uint32, val uint32) uint32 {
    	for {
    		old := *ptr
    		if Cas(ptr, old, old|val) {
    			return old
    		}
    	}
    }
    
    //go:nosplit
    func And64(ptr *uint64, val uint64) uint64 {
    	for {
    		old := *ptr
    		if Cas64(ptr, old, old&val) {
    			return old
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 20:08:37 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  5. src/sync/atomic/doc.go

    // AndInt64 atomically performs a bitwise AND operation on *addr using the bitmask provided as mask
    // and returns the old value.
    // Consider using the more ergonomic and less error-prone [Int64.And] instead.
    func AndInt64(addr *int64, mask int64) (old int64)
    
    // AndUint64 atomically performs a bitwise AND operation on *addr using the bitmask provided as mask
    // and returns the old.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  6. src/runtime/cgo_sigaction.go

    	}
    	if asanenabled && old != nil {
    		asanread(unsafe.Pointer(old), unsafe.Sizeof(*old))
    	}
    }
    
    // callCgoSigaction calls the sigaction function in the runtime/cgo package
    // using the GCC calling convention. It is implemented in assembly.
    //
    //go:noescape
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:54:15 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/registry/customresource/strategy_test.go

    					},
    					"spec":   "old",
    					"status": "old",
    				},
    			},
    		},
    		{
    			name:          "/status is disabled, spec changes increment generation",
    			statusEnabled: false,
    			old: &unstructured.Unstructured{
    				Object: map[string]interface{}{
    					"metadata": generation1(),
    					"spec":     "old",
    					"status":   "old",
    				},
    			},
    			obj: &unstructured.Unstructured{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  8. pkg/apis/abac/v0/conversion_test.go

    	"k8s.io/kubernetes/pkg/apis/abac/v0"
    )
    
    func TestV0Conversion(t *testing.T) {
    	testcases := map[string]struct {
    		old      *v0.Policy
    		expected *abac.Policy
    	}{
    		// a completely empty policy rule allows everything to all users
    		"empty": {
    			old:      &v0.Policy{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 18:54:02 UTC 2017
    - 3.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/registry/customresource/status_strategy_test.go

    				Object: map[string]interface{}{
    					"spec": "old",
    				},
    			},
    		},
    		{
    			// delete status
    			old: &unstructured.Unstructured{
    				Object: map[string]interface{}{
    					"spec":   "old",
    					"status": "old",
    				},
    			},
    			obj: &unstructured.Unstructured{
    				Object: map[string]interface{}{
    					"spec": "old",
    				},
    			},
    			expected: &unstructured.Unstructured{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 18 22:16:10 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_tidy_downgrade_ambiguous.txt

    rsc.io/sampler v1.3.0/go.mod h1:T1hPZKmBbMNahiBKFy5HrXp6adAjACjK9JXDnKaTXpA=
    -- use.go --
    package use
    
    import (
    	_ "old-indirect/empty"
    
    	_ "rsc.io/quote/v3"
    )
    -- old-indirect/empty/empty.go --
    package empty
    -- old-indirect/go.mod --
    module old-indirect
    
    go 1.16
    
    require rsc.io/quote v1.5.1
    -- old-indirect/go.sum --
    golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 15 17:32:52 UTC 2021
    - 1.9K bytes
    - Viewed (0)
Back to top