Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for fileSystem (0.26 sec)

  1. pkg/kubelet/kubelet_pods.go

    	"k8s.io/kubernetes/pkg/kubelet/metrics"
    	"k8s.io/kubernetes/pkg/kubelet/status"
    	kubetypes "k8s.io/kubernetes/pkg/kubelet/types"
    	"k8s.io/kubernetes/pkg/kubelet/util"
    	utilfs "k8s.io/kubernetes/pkg/util/filesystem"
    	utilkernel "k8s.io/kubernetes/pkg/util/kernel"
    	utilpod "k8s.io/kubernetes/pkg/util/pod"
    	volumeutil "k8s.io/kubernetes/pkg/volume/util"
    	"k8s.io/kubernetes/pkg/volume/util/hostutil"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet.go

    	// running. The actual set of running pods is stored on the podWorkers. The manager is populated
    	// by the kubelet config loops which abstracts receiving configuration from many different sources
    	// (api for regular pods, local filesystem or http for static pods). The manager may be consulted
    	// by other components that need to see the set of desired pods. Note that not all desired pods are
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  3. pkg/printers/internalversion/printers_test.go

    						api.ResourceStorage: resource.MustParse("4Gi"),
    					},
    				},
    			},
    			expected: []metav1.TableRow{{Cells: []interface{}{"test1", "Bound", "my-volume", "4Gi", "ROX", "", "<unset>", "<unknown>", "Filesystem"}}},
    		},
    		{
    			// Test name, num of containers, restarts, container ready status
    			pvc: api.PersistentVolumeClaim{
    				ObjectMeta: metav1.ObjectMeta{
    					Name: "test2",
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  4. cluster/gce/gci/configure-helper.sh

          if [[ "${i}" -lt "${scsiblocknum}" ]]; then
            mount-ext "${ssd}" "${devicenum}" "scsi" "block"
          else
            # GKE does not set NODE_LOCAL_SSDS so all non-block devices
            # are assumed to be filesystem devices
            mount-ext "${ssd}" "${devicenum}" "scsi" "fs"
          fi
          i=$((i+1))
        else
          echo "No local SCSI SSD disks found."
        fi
      done
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  5. src/net/http/server.go

    	ConnState func(net.Conn, ConnState)
    
    	// ErrorLog specifies an optional logger for errors accepting
    	// connections, unexpected behavior from handlers, and
    	// underlying FileSystem errors.
    	// If nil, logging is done via the log package's standard logger.
    	ErrorLog *log.Logger
    
    	// BaseContext optionally specifies a function that returns
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  6. cluster/gce/util.sh

        exit 2
      fi
      if [[ "${ssdopts[2]}" != "fs" && "${ssdopts[2]}" != "block" ]]; then
        echo -e "${color_red}Local SSD: Filesystem type must be fs or block, found: ${ssdopts[2]} ${color_norm}"  >&2
        exit 2
      fi
      local_ssd_ext_count=$((local_ssd_ext_count+ssdopts[0]))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
Back to top