Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 939 for oldR (2.48 sec)

  1. 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)
  2. 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)
  3. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/health/gc/GarbageCollectorMonitoringStrategy.java

        public static final GarbageCollectorMonitoringStrategy ORACLE_PARALLEL_CMS =
            new GarbageCollectorMonitoringStrategy("PS Old Gen", "Metaspace", "PS MarkSweep", 1.2, 80, 80, 5.0);
        public static final GarbageCollectorMonitoringStrategy ORACLE_6_CMS =
            new GarbageCollectorMonitoringStrategy("CMS Old Gen", "Metaspace", "ConcurrentMarkSweep", 1.2, 80, 80, 5.0);
        public static final GarbageCollectorMonitoringStrategy ORACLE_SERIAL =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 05 22:23:18 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  4. docker/Dockerfile.base

      bsdmainutils \
      net-tools \
      lsof \
      sudo \
      && update-ca-certificates \
      && apt-get upgrade -y \
      && apt-get clean \
      && rm -rf  /var/log/*log /var/lib/apt/lists/* /var/log/apt/* /var/lib/dpkg/*-old /var/cache/debconf/*-old \
      && update-alternatives --set iptables /usr/sbin/iptables-legacy \
      && update-alternatives --set ip6tables /usr/sbin/ip6tables-legacy
    
    # Sudoers used to allow tcpdump and other debug utilities.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 18:50:51 UTC 2024
    - 1000 bytes
    - Viewed (0)
  5. pkg/registry/resource/resourceslice/strategy.go

    func (resourceSliceStrategy) PrepareForUpdate(ctx context.Context, obj, old runtime.Object) {
    }
    
    func (resourceSliceStrategy) ValidateUpdate(ctx context.Context, obj, old runtime.Object) field.ErrorList {
    	return validation.ValidateResourceSliceUpdate(obj.(*resource.ResourceSlice), old.(*resource.ResourceSlice))
    }
    
    func (resourceSliceStrategy) WarningsOnUpdate(ctx context.Context, obj, old runtime.Object) []string {
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  6. testing/smoke-test/src/smokeTest/groovy/org/gradle/play/integtest/fixtures/external/PlayApp.groovy

            }
    
            return sourceFiles
        }
    
        static boolean isOldVersionFile(File file) {
            return file.name.endsWith('.old')
        }
    
        static boolean oldVersionFileExists(File file) {
            return new File(file.parentFile, "${file.name}.old").exists()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  7. pkg/test/echo/docker/Dockerfile.app_sidecar_base

        conntrack \
        bsdmainutils \
        net-tools \
        lsof \
        sudo \
        && apt-get upgrade -y \
        && apt-get clean \
        && rm -rf  /var/log/*log /var/lib/apt/lists/* /var/log/apt/* /var/lib/dpkg/*-old /var/cache/debconf/*-old
    
    RUN if [ -f /usr/sbin/iptables-legacy ]; then \
        update-alternatives --set iptables /usr/sbin/iptables-legacy && \
        update-alternatives --set ip6tables /usr/sbin/ip6tables-legacy; fi
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 22:55:51 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  8. src/runtime/runtime.go

    	if panicking.Load() > 0 {
    		return ^uintptr(0)
    	}
    
    	old := crashFD.Swap(fd)
    
    	// If we are panicking, don't return the old FD to runtime/debug for
    	// closing. writeErrData may have already read the old FD from crashFD
    	// before the swap and closing it would cause the write to be lost [1].
    	// The old FD will never be closed, but we are about to crash anyway.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    					validator, ok := validators[pair.old.GroupVersionKind()]
    					if !ok {
    						b.Log("No validator for GVK", pair.old.GroupVersionKind())
    						continue
    					}
    
    					// Run the ratcheting algorithm on the update.
    					// Don't care about result for benchmark
    					validator(pair.old, pair.new)
    				}
    			}
    
    			b.Run("ValidXValid", func(b *testing.B) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  10. src/internal/runtime/atomic/atomic_ppc64x.go

    //go:noescape
    func Anduintptr(ptr *uintptr, val uintptr) uintptr
    
    //go:noescape
    func Oruintptr(ptr *uintptr, val uintptr) uintptr
    
    //go:noescape
    func Cas64(ptr *uint64, old, new uint64) bool
    
    //go:noescape
    func CasRel(ptr *uint32, old, new uint32) bool
    
    //go:noescape
    func Store(ptr *uint32, val uint32)
    
    //go:noescape
    func Store8(ptr *uint8, val uint8)
    
    //go:noescape
    func Store64(ptr *uint64, val uint64)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 2.1K bytes
    - Viewed (0)
Back to top