Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 780 for oldR (0.15 sec)

  1. src/runtime/sys_darwin_amd64.s

    	MOVL	8(DI), SI		// arg 2 miblen
    	MOVQ	16(DI), DX		// arg 3 oldp
    	MOVQ	24(DI), CX		// arg 4 oldlenp
    	MOVQ	32(DI), R8		// arg 5 newp
    	MOVQ	40(DI), R9		// arg 6 newlen
    	MOVQ	0(DI), DI		// arg 1 mib
    	CALL	libc_sysctl(SB)
    	RET
    
    TEXT runtime·sysctlbyname_trampoline(SB),NOSPLIT,$0
    	MOVQ	8(DI), SI		// arg 2 oldp
    	MOVQ	16(DI), DX		// arg 3 oldlenp
    	MOVQ	24(DI), CX		// arg 4 newp
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 03 16:07:59 UTC 2023
    - 19.7K bytes
    - Viewed (0)
  2. src/runtime/stack.go

    	// that case.
    	gcController.addScannableStack(getg().m.p.ptr(), int64(newsize)-int64(old.hi-old.lo))
    
    	// allocate new stack
    	new := stackalloc(uint32(newsize))
    	if stackPoisonCopy != 0 {
    		fillstack(new, 0xfd)
    	}
    	if stackDebug >= 1 {
    		print("copystack gp=", gp, " [", hex(old.lo), " ", hex(old.hi-used), " ", hex(old.hi), "]", " -> [", hex(new.lo), " ", hex(new.hi-used), " ", hex(new.hi), "]/", newsize, "\n")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  3. src/cmd/go/internal/workcmd/edit.go

    	if !found {
    		base.Fatalf("go: -replace=%s: need old[@v]=new[@w] (missing =)", arg)
    	}
    	old, new := strings.TrimSpace(before), strings.TrimSpace(after)
    	if strings.HasPrefix(new, ">") {
    		base.Fatalf("go: -replace=%s: separator between old and new is =, not =>", arg)
    	}
    	oldPath, oldVersion, err := parsePathVersionOptional("old", old, false)
    	if err != nil {
    		base.Fatalf("go: -replace=%s: %v", arg, err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:52:10 UTC 2024
    - 11K bytes
    - Viewed (0)
  4. src/runtime/race.go

    //go:linkname abigen_sync_atomic_OrInt64 sync/atomic.OrInt64
    func abigen_sync_atomic_OrInt64(addr *int64, mask int64) (old int64)
    
    //go:linkname abigen_sync_atomic_OrUint64 sync/atomic.OrUint64
    func abigen_sync_atomic_OrUint64(addr *uint64, mask uint64) (old uint64)
    
    //go:linkname abigen_sync_atomic_OrUintptr sync/atomic.OrUintptr
    func abigen_sync_atomic_OrUintptr(addr *uintptr, mask uintptr) (old uintptr)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  5. docs/tr/docs/alternatives.md

    !!! check "**FastAPI**'a nasıl ilham oldu?"
        Harika bir performans'a sahip olmanın yollarını bulmalı.
    
        Hug ile birlikte (Hug zaten Falcon'a dayandığından) **FastAPI**'ın fonksiyonlarda `cevap` parametresi belirtmesinde ilham kaynağı oldu.
    
        FastAPI'da opsiyonel olmasına rağmen, daha çok header'lar, çerezler ve alternatif durum kodları belirlemede kullanılıyor.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  6. pkg/controller/daemon/update.go

    			}
    		}
    		// Compare histories with ds to separate cur and old history
    		found := false
    		found, err = Match(ds, history)
    		if err != nil {
    			return nil, nil, err
    		}
    		if found {
    			currentHistories = append(currentHistories, history)
    		} else {
    			old = append(old, history)
    		}
    	}
    
    	currRevision := maxRevision(old) + 1
    	switch len(currentHistories) {
    	case 0:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 13 16:53:53 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/registry/customresourcedefinition/strategy.go

    func (strategy) ValidateUpdate(ctx context.Context, obj, old runtime.Object) field.ErrorList {
    	return validation.ValidateCustomResourceDefinitionUpdate(ctx, obj.(*apiextensions.CustomResourceDefinition), old.(*apiextensions.CustomResourceDefinition))
    }
    
    // WarningsOnUpdate returns warnings for the given update.
    func (strategy) WarningsOnUpdate(ctx context.Context, obj, old runtime.Object) []string {
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  8. pkg/registry/core/service/strategy_test.go

    	}
    	for _, tc := range testCases {
    		func() {
    			old := tc.oldSvc.DeepCopy()
    
    			// to test against user using IPFamily not set on cluster
    			dropServiceDisabledFields(tc.svc, tc.oldSvc)
    
    			// old node should never be changed
    			if !reflect.DeepEqual(tc.oldSvc, old) {
    				t.Errorf("%v: old svc changed: %v", tc.name, cmp.Diff(tc.oldSvc, old))
    			}
    
    			if !reflect.DeepEqual(tc.svc, tc.compareSvc) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  9. src/sync/map.go

    	m.mu.Unlock()
    	return previous, loaded
    }
    
    // CompareAndSwap swaps the old and new values for key
    // if the value stored in the map is equal to old.
    // The old value must be of a comparable type.
    func (m *Map) CompareAndSwap(key, old, new any) (swapped bool) {
    	read := m.loadReadOnly()
    	if e, ok := read.m[key]; ok {
    		return e.tryCompareAndSwap(old, new)
    	} else if !read.amended {
    		return false // No existing value for key.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/registry/customresource/strategy.go

    }
    
    func generateWarningsFromObj(obj, old runtime.Object) []string {
    	var allWarnings []string
    	fldPath := field.NewPath("metadata", "finalizers")
    	newObjAccessor, err := meta.Accessor(obj)
    	if err != nil {
    		return allWarnings
    	}
    
    	newAdded := sets.NewString(newObjAccessor.GetFinalizers()...)
    	if old != nil {
    		oldObjAccessor, err := meta.Accessor(old)
    		if err != nil {
    			return allWarnings
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 21:22:34 UTC 2024
    - 14.9K bytes
    - Viewed (0)
Back to top