Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 780 for oldR (0.04 sec)

  1. pkg/registry/core/service/strategy.go

    	allErrs := validation.ValidateServiceUpdate(obj.(*api.Service), old.(*api.Service))
    	return allErrs
    }
    
    // WarningsOnUpdate returns warnings for the given update.
    func (svcStrategy) WarningsOnUpdate(ctx context.Context, obj, old runtime.Object) []string {
    	return serviceapi.GetWarningsForService(obj.(*api.Service), old.(*api.Service))
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 13:09:36 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/validation/validation.go

    	// This field is ignored for Validate
    	Ratcheting bool
    
    	// Correlation between old and new arguments.
    	// If set, this is expected to be the correlation between the `new` and
    	// `old` arguments to ValidateUpdate, and values for `new` and `old` will
    	// be taken from the correlation.
    	//
    	// This field is ignored for Validate
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 24 18:23:28 UTC 2023
    - 15K bytes
    - Viewed (0)
  3. security/pkg/pki/ca/selfsignedcarootcertrotator_test.go

    		t.Errorf("certificate IsCA does not match (old: %t) vs (new: %t)",
    			oldRootCert.IsCA, newRootCert.IsCA)
    	}
    	if oldRootCert.Version != newRootCert.Version {
    		t.Errorf("certificate Version does not match (old: %d) vs (new: %d)",
    			oldRootCert.Version, newRootCert.Version)
    	}
    	if oldRootCert.PublicKeyAlgorithm != newRootCert.PublicKeyAlgorithm {
    		t.Errorf("public key algorithm does not match (old: %s) vs (new: %s)",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 11 23:33:41 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modfetch/codehost/git.go

    func (r *gitRepo) CheckReuse(ctx context.Context, old *Origin, subdir string) error {
    	if old == nil {
    		return fmt.Errorf("missing origin")
    	}
    	if old.VCS != "git" || old.URL != r.remoteURL {
    		return fmt.Errorf("origin moved from %v %q to %v %q", old.VCS, old.URL, "git", r.remoteURL)
    	}
    	if old.Subdir != subdir {
    		return fmt.Errorf("origin moved from %v %q %q to %v %q %q", old.VCS, old.URL, old.Subdir, "git", r.remoteURL, subdir)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 22:10:38 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  5. pkg/kubelet/kuberuntime/labels.go

    	if value, found := labels[label]; found {
    		return value
    	}
    	// Do not report error, because there should be many old containers without label now.
    	klog.V(3).InfoS("Container doesn't have requested label, it may be an old or invalid container", "label", label)
    	// Return empty string "" for these containers, the caller will get value by other ways.
    	return ""
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modcmd/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
    - 17.2K bytes
    - Viewed (0)
  7. src/runtime/sys_linux_riscv64.s

    	RET
    
    // func rtsigprocmask(how int32, new, old *sigset, size int32)
    TEXT runtime·rtsigprocmask(SB),NOSPLIT|NOFRAME,$0-28
    	MOVW	how+0(FP), A0
    	MOV	new+8(FP), A1
    	MOV	old+16(FP), A2
    	MOVW	size+24(FP), A3
    	MOV	$SYS_rt_sigprocmask, A7
    	ECALL
    	MOV	$-4096, T0
    	BLTU	A0, T0, 2(PC)
    	WORD	$0	// crash
    	RET
    
    // func rt_sigaction(sig uintptr, new, old *sigactiont, size uintptr) int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 13:57:06 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  8. pkg/registry/batch/job/strategy.go

    		),
    	}
    }
    
    func (jobStatusStrategy) PrepareForUpdate(ctx context.Context, obj, old runtime.Object) {
    	newJob := obj.(*batch.Job)
    	oldJob := old.(*batch.Job)
    	newJob.Spec = oldJob.Spec
    }
    
    func (jobStatusStrategy) ValidateUpdate(ctx context.Context, obj, old runtime.Object) field.ErrorList {
    	newJob := obj.(*batch.Job)
    	oldJob := old.(*batch.Job)
    
    	opts := getStatusValidationOptions(newJob, oldJob)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 16:43:24 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  9. pkg/registry/core/pod/strategy.go

    	newPod := obj.(*api.Pod)
    	oldPod := old.(*api.Pod)
    
    	*newPod = *dropNonEphemeralContainerUpdates(newPod, oldPod)
    	podutil.DropDisabledPodFields(newPod, oldPod)
    }
    
    func (podEphemeralContainersStrategy) ValidateUpdate(ctx context.Context, obj, old runtime.Object) field.ErrorList {
    	newPod := obj.(*api.Pod)
    	oldPod := old.(*api.Pod)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 17:51:48 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  10. src/runtime/sys_linux_loong64.s

    // func rtsigprocmask(how int32, new, old *sigset, size int32)
    TEXT runtime·rtsigprocmask(SB),NOSPLIT|NOFRAME,$0-28
    	MOVW	how+0(FP), R4
    	MOVV	new+8(FP), R5
    	MOVV	old+16(FP), R6
    	MOVW	size+24(FP), R7
    	MOVV	$SYS_rt_sigprocmask, R11
    	SYSCALL
    	MOVW	$-4096, R5
    	BGEU	R5, R4, 2(PC)
    	MOVV	R0, 0xf1(R0)	// crash
    	RET
    
    // func rt_sigaction(sig uintptr, new, old *sigactiont, size uintptr) int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 20:58:13 UTC 2023
    - 14.2K bytes
    - Viewed (0)
Back to top