Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 312 for statx (0.09 sec)

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

    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Statx(dirfd int, path string, flags int, mask int, stat *Statx_t) (err error) {
    	var _p0 *byte
    	_p0, err = BytePtrFromString(path)
    	if err != nil {
    		return
    	}
    	_, _, e1 := Syscall6(SYS_STATX, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(flags), uintptr(mask), uintptr(unsafe.Pointer(stat)), 0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    //sys	Setxattr(path string, attr string, data []byte, flags int) (err error)
    //sys	signalfd(fd int, sigmask *Sigset_t, maskSize uintptr, flags int) (newfd int, err error) = SYS_SIGNALFD4
    //sys	Statx(dirfd int, path string, flags int, mask int, stat *Statx_t) (err error)
    //sys	Sync()
    //sys	Syncfs(fd int) (err error)
    //sysnb	Sysinfo(info *Sysinfo_t) (err error)
    //sys	Tee(rfd int, wfd int, len int, flags int) (n int64, err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  3. pkg/kubelet/stats/cri_stats_provider_test.go

    		NewFakeHostStatsProvider(),
    		false,
    	)
    
    	stats, containerStats, err := provider.ImageFsStats(ctx)
    	assert := assert.New(t)
    	assert.NoError(err)
    
    	assert.Equal(imageFsUsage.Timestamp, stats.Time.UnixNano())
    	assert.Equal(imageFsInfo.Available, *stats.AvailableBytes)
    	assert.Equal(imageFsInfo.Capacity, *stats.CapacityBytes)
    	assert.Equal(imageFsInfo.InodesFree, stats.InodesFree)
    	assert.Equal(imageFsInfo.Inodes, stats.Inodes)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  4. src/runtime/mheap.go

    		gcController.heapReleased.add(-int64(scav))
    	}
    	// Update stats.
    	gcController.heapFree.add(-int64(nbytes - scav))
    	if typ == spanAllocHeap {
    		gcController.heapInUse.add(int64(nbytes))
    	}
    	// Update consistent stats.
    	stats := memstats.heapStats.acquire()
    	atomic.Xaddint64(&stats.committed, int64(scav))
    	atomic.Xaddint64(&stats.released, -int64(scav))
    	switch typ {
    	case spanAllocHeap:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  5. cmd/erasure-healing_test.go

    	if err != nil {
    		t.Fatalf("Expected object to be present but stat failed - %v", err)
    	}
    
    	// Check the state of the object in the first disk (should be missing)
    	if hr.Before.Drives[0].State != madmin.DriveStateMissing {
    		t.Fatalf("Unexpected drive state: %v", hr.Before.Drives[0].State)
    	}
    
    	// Check the state of all other disks (should be ok)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 49K bytes
    - Viewed (0)
  6. src/runtime/mgc.go

    	memstats.pause_total_ns += uint64(work.pauseNS)
    
    	// Accumulate CPU stats.
    	//
    	// Use maxprocs instead of stwprocs for GC pause time because the total time
    	// computed in the CPU stats is based on maxprocs, and we want them to be
    	// comparable.
    	//
    	// Pass gcMarkPhase=true to accumulate so we can get all the latest GC CPU stats
    	// in there too.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  7. pkg/volume/csi/csi_attacher_test.go

    				stat, ok := stats[attached.spec]
    				if attached.attached && !ok {
    					t.Error("failed to retrieve attached status for:", attached.spec)
    				}
    				if attached.attached != stat {
    					t.Errorf("expecting volume attachment %t, got %t", attached.attached, stat)
    				}
    			}
    		})
    	}
    }
    
    func TestAttacherVolumesAreAttachedWithInline(t *testing.T) {
    	type attachedSpec struct {
    		volName  string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:23:16 UTC 2024
    - 58.1K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/memorymanager/memory_manager_test.go

    	return string(policyTypeMock)
    }
    
    func (p *mockPolicy) Start(s state.State) error {
    	return p.err
    }
    
    func (p *mockPolicy) Allocate(s state.State, pod *v1.Pod, container *v1.Container) error {
    	return p.err
    }
    
    func (p *mockPolicy) RemoveContainer(s state.State, podUID string, containerName string) {
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 05 13:01:40 UTC 2023
    - 70.2K bytes
    - Viewed (0)
  9. pkg/kubelet/kuberuntime/kuberuntime_container.go

    		RestartCount:        annotatedInfo.RestartCount,
    		State:               toKubeContainerState(status.State),
    		CreatedAt:           time.Unix(0, status.CreatedAt),
    		Resources:           cStatusResources,
    		User:                cStatusUser,
    	}
    
    	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.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  10. src/html/template/escape_test.go

    			context{state: stateHTMLCmt},
    		},
    		{
    			`<!--->`,
    			context{state: stateHTMLCmt},
    		},
    		{
    			`<!-- foo -->`,
    			context{state: stateText},
    		},
    		{
    			`<script`,
    			context{state: stateTag, element: elementScript},
    		},
    		{
    			`<script `,
    			context{state: stateTag, element: elementScript},
    		},
    		{
    			`<script src="foo.js" `,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 56.2K bytes
    - Viewed (0)
Back to top