Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 94 for inode (0.04 sec)

  1. src/syscall/ztypes_linux_ppc64.go

    	Nodename   [65]uint8
    	Release    [65]uint8
    	Version    [65]uint8
    	Machine    [65]uint8
    	Domainname [65]uint8
    }
    
    type Ustat_t struct {
    	Tfree     int32
    	Pad_cgo_0 [4]byte
    	Tinode    uint64
    	Fname     [6]uint8
    	Fpack     [6]uint8
    	Pad_cgo_1 [4]byte
    }
    
    type EpollEvent struct {
    	Events  uint32
    	X_padFd int32
    	Fd      int32
    	Pad     int32
    }
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  2. src/syscall/ztypes_linux_riscv64.go

    type Utsname struct {
    	Sysname    [65]uint8
    	Nodename   [65]uint8
    	Release    [65]uint8
    	Version    [65]uint8
    	Machine    [65]uint8
    	Domainname [65]uint8
    }
    
    type Ustat_t struct {
    	Tfree  int32
    	Tinode uint64
    	Fname  [6]uint8
    	Fpack  [6]uint8
    	_      [4]byte
    }
    
    type EpollEvent struct {
    	Events uint32
    	_      int32
    	Fd     int32
    	Pad    int32
    }
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  3. src/syscall/ztypes_linux_s390x.go

    	Sysname    [65]uint8
    	Nodename   [65]uint8
    	Release    [65]uint8
    	Version    [65]uint8
    	Machine    [65]uint8
    	Domainname [65]uint8
    }
    
    type Ustat_t struct {
    	Tfree  int32
    	_      [4]byte
    	Tinode uint64
    	Fname  [6]uint8
    	Fpack  [6]uint8
    	_      [4]byte
    }
    
    type EpollEvent struct {
    	Events uint32
    	_      int32
    	Fd     int32
    	Pad    int32
    }
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  4. src/net/textproto/reader_test.go

    	if got, want := totalAlloc/count, uint64(32768); got > want {
    		t.Fatalf("ReadMIMEHeader allocated %v bytes, want < %v", got, want)
    	}
    }
    
    type readResponseTest struct {
    	in       string
    	inCode   int
    	wantCode int
    	wantMsg  string
    }
    
    var readResponseTests = []readResponseTest{
    	{"230-Anonymous access granted, restrictions apply\n" +
    		"Read the file README.txt,\n" +
    		"230  please",
    		23,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 05 18:31:56 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/internal/-UtilCommon.kt

        throw rethrown
      } catch (_: Exception) {
      }
    }
    
    /**
     * Returns true if file streams can be manipulated independently of their paths. This is typically
     * true for systems like Mac, Unix, and Linux that use inodes in their file system interface. It is
     * typically false on Windows.
     *
     * If this returns false we won't permit simultaneous reads and writes. When writes commit we need
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon May 13 13:42:37 UTC 2024
    - 11K bytes
    - Viewed (0)
  6. src/syscall/ztypes_linux_amd64.go

    	Sysname    [65]int8
    	Nodename   [65]int8
    	Release    [65]int8
    	Version    [65]int8
    	Machine    [65]int8
    	Domainname [65]int8
    }
    
    type Ustat_t struct {
    	Tfree     int32
    	Pad_cgo_0 [4]byte
    	Tinode    uint64
    	Fname     [6]int8
    	Fpack     [6]int8
    	Pad_cgo_1 [4]byte
    }
    
    type EpollEvent struct {
    	Events uint32
    	Fd     int32
    	Pad    int32
    }
    
    const (
    	_AT_FDCWD            = -0x64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 12K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/storage/v1alpha1/generated.proto

    //
    // For example this can express things like:
    // - StorageClass "standard" has "1234 GiB" available in "topology.kubernetes.io/zone=us-east1"
    // - StorageClass "localssd" has "10 GiB" available in "kubernetes.io/hostname=knode-abc123"
    //
    // The following three cases all imply that no capacity is available for
    // a certain combination:
    // - no object exists with suitable topology and storage class name
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  8. plugin/pkg/admission/noderestriction/admission.go

    		}
    
    		// Verify the node UID.
    		node, err := p.nodesGetter.Get(nodeName)
    		if apierrors.IsNotFound(err) {
    			return err
    		}
    		if err != nil {
    			return admission.NewForbidden(a, fmt.Errorf("error looking up node %s to verify uid: %v", nodeName, err))
    		}
    		if owner.UID != node.UID {
    			return admission.NewForbidden(a, fmt.Errorf("node %s UID mismatch: expected %s got %s", nodeName, owner.UID, node.UID))
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/storage/v1alpha1/types_swagger_doc_generated.go

    new PersistentVolumes.\n\nFor example this can express things like: - StorageClass \"standard\" has \"1234 GiB\" available in \"topology.kubernetes.io/zone=us-east1\" - StorageClass \"localssd\" has \"10 GiB\" available in \"kubernetes.io/hostname=knode-abc123\"\n\nThe following three cases all imply that no capacity is available for a certain combination: - no object exists with suitable topology and storage class name - such an object exists, but the capacity is unset - such an object exists, but...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:26:35 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/storage/v1alpha1/types.go

    //
    // For example this can express things like:
    // - StorageClass "standard" has "1234 GiB" available in "topology.kubernetes.io/zone=us-east1"
    // - StorageClass "localssd" has "10 GiB" available in "kubernetes.io/hostname=knode-abc123"
    //
    // The following three cases all imply that no capacity is available for
    // a certain combination:
    // - no object exists with suitable topology and storage class name
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:32 UTC 2023
    - 13.4K bytes
    - Viewed (0)
Back to top