Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 104 for oldobj (0.17 sec)

  1. src/cmd/link/internal/loadelf/ldelf.go

    		elfobj.version = hdr.Version
    		elfobj.entry = hdr.Entry
    		elfobj.phoff = hdr.Phoff
    		elfobj.shoff = hdr.Shoff
    		elfobj.flags = hdr.Flags
    		elfobj.ehsize = uint32(hdr.Ehsize)
    		elfobj.phentsize = uint32(hdr.Phentsize)
    		elfobj.phnum = uint32(hdr.Phnum)
    		elfobj.shentsize = uint32(hdr.Shentsize)
    		elfobj.shnum = uint32(hdr.Shnum)
    		elfobj.shstrndx = uint32(hdr.Shstrndx)
    	} else {
    		elfobj.type_ = uint32(hdr.Type)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:12:12 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  2. pkg/registry/batch/job/strategy.go

    	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)
    	return batchvalidation.ValidateJobUpdateStatus(newJob, oldJob, opts)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 16:43:24 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  3. pkg/kubelet/volumemanager/cache/actual_state_of_world.go

    		if podObj, podExists := volumeObj.mountedPods[podName]; podExists {
    			volumePlugin, err :=
    				asw.volumePluginMgr.FindPluginBySpec(podObj.volumeSpec)
    			if err != nil || volumePlugin == nil {
    				// Log and continue processing
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 07:34:33 UTC 2024
    - 45.8K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/internal/facts/imports.go

    					addType(tparams.At(i))
    				}
    			}
    		case *types.Struct:
    			for i := 0; i < T.NumFields(); i++ {
    				addObj(T.Field(i))
    			}
    		case *types.Tuple:
    			for i := 0; i < T.Len(); i++ {
    				addObj(T.At(i))
    			}
    		case *types.Interface:
    			for i := 0; i < T.NumMethods(); i++ {
    				addObj(T.Method(i))
    			}
    			for i := 0; i < T.NumEmbeddeds(); i++ {
    				addType(T.EmbeddedType(i)) // walk Embedded for implicits
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/api/admin/stats/ApiAdminStatsAction.java

            return processObj;
        }
    
        private OsObj getOsObj() {
            final OsObj osObj = new OsObj();
            final OsProbe osProbe = OsProbe.getInstance();
            final OsMemoryObj osMemoryObj = new OsMemoryObj();
            osObj.memory = osMemoryObj;
            final OsMemoryPhysicalObj osMemoryPhysicalObj = new OsMemoryPhysicalObj();
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  6. pkg/apis/batch/validation/validation.go

    // ValidateJobUpdate validates an update to a Job and returns an ErrorList with any errors.
    func ValidateJobUpdate(job, oldJob *batch.Job, opts JobValidationOptions) field.ErrorList {
    	allErrs := apivalidation.ValidateObjectMetaUpdate(&job.ObjectMeta, &oldJob.ObjectMeta, field.NewPath("metadata"))
    	allErrs = append(allErrs, ValidateJobSpecUpdate(job.Spec, oldJob.Spec, field.NewPath("spec"), opts)...)
    	return allErrs
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 16:43:24 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  7. pkg/controller/volume/attachdetach/cache/desired_state_of_world.go

    // scheduled to the underlying node.
    type pod struct {
    	// podName contains the unique identifier for this pod
    	podName types.UniquePodName
    
    	// pod object contains the api object of pod
    	podObj *v1.Pod
    }
    
    func (dsw *desiredStateOfWorld) AddNode(nodeName k8stypes.NodeName) {
    	dsw.Lock()
    	defer dsw.Unlock()
    
    	if _, nodeExists := dsw.nodesManaged[nodeName]; !nodeExists {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 10:42:15 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  8. pkg/kubelet/volumemanager/cache/desired_state_of_world.go

    	for volumeName, volumeObj := range dsw.volumesToMount {
    		for podName, podObj := range volumeObj.podsToMount {
    			vmt := VolumeToMount{
    				VolumeToMount: operationexecutor.VolumeToMount{
    					VolumeName:              volumeName,
    					PodName:                 podName,
    					Pod:                     podObj.pod,
    					VolumeSpec:              podObj.volumeSpec,
    					PluginIsAttachable:      volumeObj.pluginIsAttachable,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  9. src/cmd/go/internal/work/exec.go

    			return nil, nil, err
    		}
    		outObj = append(outObj, ofile)
    	}
    
    	for _, file := range gccfiles {
    		ofile := nextOfile()
    		if err := b.gcc(a, a.Objdir, ofile, cflags, file); err != nil {
    			return nil, nil, err
    		}
    		outObj = append(outObj, ofile)
    	}
    
    	cxxflags := str.StringList(cgoCPPFLAGS, cgoCXXFLAGS)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  10. cmd/bucket-replication.go

    		})
    	}
    }
    
    func replicateDeleteToTarget(ctx context.Context, dobj DeletedObjectReplicationInfo, tgt *TargetClient) (rinfo replicatedTargetInfo) {
    	versionID := dobj.DeleteMarkerVersionID
    	if versionID == "" {
    		versionID = dobj.VersionID
    	}
    
    	rinfo = dobj.ReplicationState.targetState(tgt.ARN)
    	rinfo.OpType = dobj.OpType
    	rinfo.endpoint = tgt.EndpointURL().Host
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
Back to top