Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 664 for noinfo (0.28 sec)

  1. pkg/kubelet/cm/container_manager_linux_test.go

    	mockCadvisor := cadvisortest.NewMockInterface(mockCtrl)
    	rootfs := cadvisorapiv2.FsInfo{
    		Capacity: 8000,
    	}
    	mockCadvisor.EXPECT().RootFsInfo().Return(rootfs, nil)
    	mockCadvisorError := cadvisortest.NewMockInterface(mockCtrlError)
    	mockCadvisorError.EXPECT().RootFsInfo().Return(cadvisorapiv2.FsInfo{}, errors.New("Unable to get rootfs data from cAdvisor interface"))
    	cases := []struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/tutorial/logging/kotlin/build.gradle.kts

    val slf4jLogger = LoggerFactory.getLogger("some-logger")
    slf4jLogger.info("An info log message logged using SLF4j")
    // end::use-slf4j[]
    
    // tag::use-logger[]
    logger.quiet("An info log message which is always logged.")
    logger.error("An error log message.")
    logger.warn("A warning log message.")
    logger.lifecycle("A lifecycle info log message.")
    logger.info("An info log message.")
    logger.debug("A debug log message.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. pkg/volume/util/fs/fs_unsupported.go

    */
    
    package fs
    
    import (
    	"fmt"
    )
    
    type UsageInfo struct {
    	Bytes  int64
    	Inodes int64
    }
    
    // Info unsupported returns 0 values for available and capacity and an error.
    func Info(path string) (int64, int64, int64, int64, int64, int64, error) {
    	return 0, 0, 0, 0, 0, 0, fmt.Errorf("fsinfo not supported for this build")
    }
    
    // DiskUsage gets disk usage of specified path.
    func DiskUsage(path string) (UsageInfo, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  4. pkg/kubelet/stats/host_stats_provider_test.go

    	tests := []struct {
    		name                string
    		podEtcHostsPathFunc PodEtcHostsPathFunc
    		podUID              types.UID
    		rootFsInfo          *cadvisorapiv2.FsInfo
    		want                *statsapi.FsStats
    		wantErr             bool
    	}{
    		{
    			name: "Should return nil for runtimes that do not support etc host file",
    			podEtcHostsPathFunc: func(podUID types.UID) string {
    				return ""
    			},
    			podUID:     "fake0001",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 10 11:26:59 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  5. pkg/kubelet/runonce_test.go

    	cadvisor.EXPECT().MachineInfo().Return(&cadvisorapi.MachineInfo{}, nil).AnyTimes()
    	cadvisor.EXPECT().ImagesFsInfo().Return(cadvisorapiv2.FsInfo{
    		Usage:     400,
    		Capacity:  1000,
    		Available: 600,
    	}, nil).AnyTimes()
    	cadvisor.EXPECT().RootFsInfo().Return(cadvisorapiv2.FsInfo{
    		Usage:    9,
    		Capacity: 10,
    	}, nil).AnyTimes()
    	fakeSecretManager := secret.NewFakeManager()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 06:59:54 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  6. src/internal/testenv/testenv_test.go

    	goTool, err := testenv.GoTool()
    	if err != nil {
    		t.Fatalf("testenv.GoTool(): %v", err)
    	}
    	t.Logf("testenv.GoTool() = %q", goTool)
    
    	gotInfo, err := os.Stat(goTool)
    	if err != nil {
    		t.Fatal(err)
    	}
    	if !os.SameFile(wantInfo, gotInfo) {
    		t.Fatalf("%q is not the same file as %q", absWant, goTool)
    	}
    }
    
    func TestHasGoBuild(t *testing.T) {
    	if !testenv.HasGoBuild() {
    		switch runtime.GOOS {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 25 23:12:44 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  7. pkg/volume/metrics_errors.go

    }
    
    // NewFsInfoFailedError creates a new MetricsError with code FsInfoFailed.
    func NewFsInfoFailedError(err error) *MetricsError {
    	return &MetricsError{
    		Code: ErrCodeFsInfoFailed,
    		Msg:  fmt.Sprintf("failed to get FsInfo due to error %v", err),
    	}
    }
    
    // MetricsError to distinguish different Metrics Errors.
    type MetricsError struct {
    	Code int
    	Msg  string
    }
    
    func (e *MetricsError) Error() string {
    	return e.Msg
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 20 14:37:12 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  8. test/noinit.go

    Cuong Manh Le <******@****.***> 1675970456 +0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 14 17:57:36 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  9. src/runtime/defs_aix_ppc64.go

    	lr         uint64
    	ctr        uint64
    	cr         uint32
    	xer        uint32
    	fpscr      uint32
    	fpscrx     uint32
    	except     [1]uint64
    	fpr        [32]float64
    	fpeu       uint8
    	fpinfo     uint8
    	fpscr24_31 uint8
    	pad        [1]uint8
    	excp_type  int32
    }
    
    type sigactiont struct {
    	sa_handler uintptr // a union of two pointer
    	sa_mask    sigset
    	sa_flags   int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 20 21:27:51 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  10. istioctl/pkg/writer/pilot/status.go

    			}
    			if s.Namespace != "" && meta.Namespace != s.Namespace {
    				continue
    			}
    			cds, lds, eds, rds, ecds := getSyncStatus(&clientConfig)
    			cp := multixds.CpInfo(dr)
    			fullStatus = append(fullStatus, &xdsWriterStatus{
    				proxyID:               clientConfig.GetNode().GetId(),
    				clusterID:             meta.ClusterID.String(),
    				istiodID:              cp.ID,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 04:16:55 UTC 2024
    - 6.1K bytes
    - Viewed (0)
Back to top