Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 939 for oldR (0.42 sec)

  1. src/sync/atomic/value.go

    		}
    		op := (*efaceWords)(unsafe.Pointer(&old))
    		op.typ, op.data = np.typ, SwapPointer(&vp.data, np.data)
    		return old
    	}
    }
    
    // CompareAndSwap executes the compare-and-swap operation for the [Value].
    //
    // All calls to CompareAndSwap for a given Value must use values of the same
    // concrete type. CompareAndSwap of an inconsistent type panics, as does
    // CompareAndSwap(old, nil).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:48:55 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  2. pkg/kube/krt/bench_test.go

    	}
    	old := l.workloads[key]
    	if reflect.DeepEqual(old, wl) {
    		// No changes, NOP
    		return nil
    	}
    	// Changed. Update and call handlers
    	l.workloads[key] = wl
    	if old == nil {
    		l.handler(krt.Event[Workload]{
    			New:   wl,
    			Event: controllers.EventAdd,
    		})
    	} else {
    		l.handler(krt.Event[Workload]{
    			Old:   old,
    			New:   wl,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 09 19:55:53 UTC 2024
    - 7K bytes
    - Viewed (0)
  3. pkg/registry/admissionregistration/validatingwebhookconfiguration/strategy.go

    	return validation.ValidateValidatingWebhookConfigurationUpdate(obj.(*admissionregistration.ValidatingWebhookConfiguration), old.(*admissionregistration.ValidatingWebhookConfiguration))
    }
    
    // WarningsOnUpdate returns warnings for the given update.
    func (validatingWebhookConfigurationStrategy) WarningsOnUpdate(ctx context.Context, obj, old runtime.Object) []string {
    	return nil
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  4. pkg/registry/core/node/strategy.go

    func (nodeStrategy) ValidateUpdate(ctx context.Context, obj, old runtime.Object) field.ErrorList {
    	errorList := validation.ValidateNode(obj.(*api.Node))
    	return append(errorList, validation.ValidateNodeUpdate(obj.(*api.Node), old.(*api.Node))...)
    }
    
    // WarningsOnUpdate returns warnings for the given update.
    func (nodeStrategy) WarningsOnUpdate(ctx context.Context, obj, old runtime.Object) []string {
    	return fieldIsDeprecatedWarnings(obj)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 13 23:06:39 UTC 2024
    - 9K bytes
    - Viewed (0)
  5. 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)
  6. pkg/registry/admissionregistration/mutatingwebhookconfiguration/strategy.go

    	return validation.ValidateMutatingWebhookConfigurationUpdate(obj.(*admissionregistration.MutatingWebhookConfiguration), old.(*admissionregistration.MutatingWebhookConfiguration))
    }
    
    // WarningsOnUpdate returns warnings for the given update.
    func (mutatingWebhookConfigurationStrategy) WarningsOnUpdate(ctx context.Context, obj, old runtime.Object) []string {
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 4K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCacheUnusedVersionCleanupIntegrationTest.groovy

            currentModulesDir = userHomeCacheDir.file(CacheLayout.MODULES.key).createDir()
            modulesGcFile.createFile()
        }
    
        def "cleans up all old unused versions of transforms-X when current modules requires cleanup"() {
            given:
            modulesGcFile.lastModified = daysAgo(2)
    
            when:
            succeeds("help")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 12:09:31 UTC 2024
    - 3.7K bytes
    - Viewed (0)
Back to top