Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 549 for dwinfo (0.11 sec)

  1. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/health/DaemonHealthStats.java

        }
    
        @VisibleForTesting
        DaemonHealthStats(DaemonRunningStats runningStats, GarbageCollectionInfo gcInfo, GarbageCollectionMonitor gcMonitor) {
            this.runningStats = runningStats;
            this.scheduler = null;
            this.gcInfo = gcInfo;
            this.gcMonitor = gcMonitor;
        }
    
        @VisibleForTesting
        public GarbageCollectionMonitor getGcMonitor() {
            return gcMonitor;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 05 22:23:18 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  2. src/os/dir_windows.go

    			if d.class == windows.FileIdBothDirectoryInfo {
    				info := (*windows.FILE_ID_BOTH_DIR_INFO)(entry)
    				nextEntryOffset = info.NextEntryOffset
    				nameslice = unsafe.Slice(&info.FileName[0], info.FileNameLength/2)
    			} else {
    				info := (*windows.FILE_FULL_DIR_INFO)(entry)
    				nextEntryOffset = info.NextEntryOffset
    				nameslice = unsafe.Slice(&info.FileName[0], info.FileNameLength/2)
    			}
    			d.bufp += int(nextEntryOffset)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 20:52:06 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  3. src/os/dir_unix.go

    		return &buf
    	},
    }
    
    func (d *dirInfo) close() {
    	if d.buf != nil {
    		dirBufPool.Put(d.buf)
    		d.buf = nil
    	}
    }
    
    func (f *File) readdir(n int, mode readdirMode) (names []string, dirents []DirEntry, infos []FileInfo, err error) {
    	// If this file has no dirInfo, create one.
    	d := f.dirinfo.Load()
    	if d == nil {
    		d = new(dirInfo)
    		f.dirinfo.Store(d)
    	}
    	d.mu.Lock()
    	defer d.mu.Unlock()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 20:11:45 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  4. pkg/kubelet/cadvisor/testing/cadvisor_mock.go

    func (m *MockInterface) EXPECT() *MockInterfaceMockRecorder {
    	return m.recorder
    }
    
    // ContainerFsInfo mocks base method.
    func (m *MockInterface) ContainerFsInfo() (v2.FsInfo, error) {
    	m.ctrl.T.Helper()
    	ret := m.ctrl.Call(m, "ContainerFsInfo")
    	ret0, _ := ret[0].(v2.FsInfo)
    	ret1, _ := ret[1].(error)
    	return ret0, ret1
    }
    
    // ContainerFsInfo indicates an expected call of ContainerFsInfo.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  5. pkg/kubelet/stats/host_stats_provider_fake.go

    }
    
    func (f *fakeHostStatsProvider) getPodEtcHostsStats(podUID types.UID, rootFsInfo *cadvisorapiv2.FsInfo) (*statsapi.FsStats, error) {
    	return nil, fmt.Errorf("not implemented")
    }
    
    func fakeMetricsProvidersToStats(metricsProviders []volume.MetricsProvider, rootFsInfo *cadvisorapiv2.FsInfo) (*statsapi.FsStats, error) {
    	result := rootFsInfoToFsStats(rootFsInfo)
    	for i, metricsProvider := range metricsProviders {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 17:57:17 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  6. src/os/dir_plan9.go

    	"io/fs"
    	"syscall"
    )
    
    func (file *File) readdir(n int, mode readdirMode) (names []string, dirents []DirEntry, infos []FileInfo, err error) {
    	// If this file has no dirinfo, create one.
    	d := file.dirinfo.Load()
    	if d == nil {
    		d = new(dirInfo)
    		file.dirinfo.Store(d)
    	}
    	d.mu.Lock()
    	defer d.mu.Unlock()
    
    	size := n
    	if size <= 0 {
    		size = 100
    		n = -1
    	}
    	for n != 0 {
    		// Refill the buffer if necessary.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 20:52:06 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  7. pkg/kubelet/winstats/winstats_test.go

    		t.Fatalf("expected error message `%s` but got `%v`", expectedErrMsg, err)
    	}
    
    	dir, err := os.MkdirTemp("", "fsinfo")
    	assert.NoError(t, err)
    	defer os.RemoveAll(dir)
    
    	fsInfo, err := c.GetDirFsInfo(dir)
    	assert.NoError(t, err)
    	assert.NotZero(t, fsInfo.Capacity)
    	assert.NotZero(t, fsInfo.Available)
    }
    
    func getClient(t *testing.T) Client {
    	f := fakeWinNodeStatsClient{}
    	c, err := newClient(f)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 12:08:15 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  8. tensorflow/cc/framework/fuzzing/cc_op_fuzz_gen.h

    #include "tensorflow/core/platform/types.h"
    
    namespace tensorflow {
    namespace cc_op {
    
    // String with single fuzzer file content.
    string WriteSingleFuzzer(const OpInfo& op_info, bool is_fuzzable);
    
    // Do we have all we need to create a fuzzer
    bool OpFuzzingIsOk(const OpInfo& op_info);
    
    }  // namespace cc_op
    }  // namespace tensorflow
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Nov 07 19:14:57 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  9. pkg/volume/volume_linux.go

    func walkDeep(root string, walkFunc filepath.WalkFunc) error {
    	info, err := os.Lstat(root)
    	if err != nil {
    		return walkFunc(root, nil, err)
    	}
    	return walk(root, info, walkFunc)
    }
    
    func walk(path string, info os.FileInfo, walkFunc filepath.WalkFunc) error {
    	if !info.IsDir() {
    		return walkFunc(path, info, nil)
    	}
    	names, err := readDirNames(path)
    	if err != nil {
    		return err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 03 19:34:37 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  10. istioctl/pkg/tag/revision.go

    	Name     string `json:"name"`
    	Revision string `json:"revision"`
    	Tag      string `json:"tag,omitempty"`
    }
    
    // NsInfo represents namespace related information like pods running there.
    // It is used to display data and is exposed for integration tests.
    type NsInfo struct {
    	Name string             `json:"name,omitempty"`
    	Pods []*PodFilteredInfo `json:"pods,omitempty"`
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 28 13:16:05 UTC 2023
    - 4.5K bytes
    - Viewed (0)
Back to top