Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for Fstatfs (1.33 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_zos_s390x.go

    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func waitpid(pid int, wstatus *_C_int, options int) (wpid int, err error) {
    	runtime.EnterSyscall()
    	r0, e2, e1 := CallLeFuncWithErr(GetZosLibVec()+SYS_WAITPID<<4, uintptr(pid), uintptr(unsafe.Pointer(wstatus)), uintptr(options))
    	runtime.ExitSyscall()
    	wpid = int(r0)
    	if int64(r0) == -1 {
    		err = errnoErr2(e1, e2)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 88.2K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    	}
    	return (*funcref)(pid, wstatus, options, rusage)
    }
    
    func legacyWait4(pid int, wstatus *WaitStatus, options int, rusage *Rusage) (wpid int, err error) {
    	// TODO(mundaym): z/OS doesn't have wait4. I don't think getrusage does what we want.
    	// At the moment rusage will not be touched.
    	var status _C_int
    	wpid, err = waitpid(pid, &status, options)
    	if wstatus != nil {
    		*wstatus = WaitStatus(status)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  3. src/internal/trace/order.go

    	mid := ThreadID(ev.args[1])
    	status := go122.GoStatus(ev.args[2])
    
    	if int(status) >= len(go122GoStatus2GoState) {
    		return curCtx, false, fmt.Errorf("invalid status for goroutine %d: %d", gid, status)
    	}
    	oldState := go122GoStatus2GoState[status]
    	if s, ok := o.gStates[gid]; ok {
    		if s.status != status {
    			return curCtx, false, fmt.Errorf("inconsistent status for goroutine %d: old %v vs. new %v", gid, s.status, status)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  4. pkg/kubelet/kuberuntime/kuberuntime_container.go

    	}
    
    	if status.State != runtimeapi.ContainerState_CONTAINER_CREATED {
    		// If container is not in the created state, we have tried and
    		// started the container. Set the StartedAt time.
    		cStatus.StartedAt = time.Unix(0, status.StartedAt)
    	}
    	if status.State == runtimeapi.ContainerState_CONTAINER_EXITED {
    		cStatus.Reason = status.Reason
    		cStatus.Message = status.Message
    		cStatus.ExitCode = int(status.ExitCode)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  5. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    	return newRuntimeVersion(typedVersion.RuntimeApiVersion)
    }
    
    // Status returns the status of the runtime. An error is returned if the Status
    // function itself fails, nil otherwise.
    func (m *kubeGenericRuntimeManager) Status(ctx context.Context) (*kubecontainer.RuntimeStatus, error) {
    	resp, err := m.runtimeService.Status(ctx, false)
    	if err != nil {
    		return nil, err
    	}
    	if resp.GetStatus() == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/gateway/conversion.go

    		_, known := classInfos[gwc.ControllerName]
    		if !known {
    			continue
    		}
    		res[obj.Name] = gwc.ControllerName
    
    		// Set status. If we created it, it may already be there. If not, set it again
    		obj.Status.(*kstatus.WrappedStatus).Mutate(func(s config.Status) config.Status {
    			gcs := s.(*k8s.GatewayClassStatus)
    			*gcs = GetClassStatus(gcs, obj.Generation)
    			gcs.SupportedFeatures = supportedFeatures
    			return gcs
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  7. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    			},
    			mutateStatusFn: func(status *kubecontainer.PodStatus) {
    				// no ready sandbox
    				status.SandboxStatuses[0].State = runtimeapi.PodSandboxState_SANDBOX_NOTREADY
    				status.SandboxStatuses[0].Metadata.Attempt = uint32(1)
    				// all containers exited
    				for i := range status.ContainerStatuses {
    					status.ContainerStatuses[i].State = kubecontainer.ContainerStateExited
    					status.ContainerStatuses[i].ExitCode = 0
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
Back to top