Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 51 for inode (0.06 sec)

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

    )
    
    const (
    	LO_FLAGS_READ_ONLY = 0x1
    	LO_FLAGS_AUTOCLEAR = 0x4
    	LO_FLAGS_PARTSCAN  = 0x8
    	LO_FLAGS_DIRECT_IO = 0x10
    )
    
    type LoopInfo64 struct {
    	Device           uint64
    	Inode            uint64
    	Rdevice          uint64
    	Offset           uint64
    	Sizelimit        uint64
    	Number           uint32
    	Encrypt_type     uint32
    	Encrypt_key_size uint32
    	Flags            uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 251K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go

    	{50, "ENOCSI", "no CSI structure available"},
    	{51, "EL2HLT", "level 2 halted"},
    	{52, "EBADE", "invalid exchange"},
    	{53, "EBADR", "invalid request descriptor"},
    	{54, "EXFULL", "exchange full"},
    	{55, "ENOANO", "no anode"},
    	{56, "EBADRQC", "invalid request code"},
    	{57, "EBADSLT", "invalid slot"},
    	{59, "EBFONT", "bad font file format"},
    	{60, "ENOSTR", "device not a stream"},
    	{61, "ENODATA", "no data available"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  3. src/text/template/parse/parse.go

    	}
    }
    
    // IsEmptyTree reports whether this tree (node) is empty of everything but space or comments.
    func IsEmptyTree(n Node) bool {
    	switch n := n.(type) {
    	case nil:
    		return true
    	case *ActionNode:
    	case *CommentNode:
    		return true
    	case *IfNode:
    	case *ListNode:
    		for _, node := range n.Nodes {
    			if !IsEmptyTree(node) {
    				return false
    			}
    		}
    		return true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:57:51 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_mips64le.go

    	{45, "EDEADLK", "resource deadlock avoided"},
    	{46, "ENOLCK", "no locks available"},
    	{50, "EBADE", "invalid exchange"},
    	{51, "EBADR", "invalid request descriptor"},
    	{52, "EXFULL", "exchange full"},
    	{53, "ENOANO", "no anode"},
    	{54, "EBADRQC", "invalid request code"},
    	{55, "EBADSLT", "invalid slot"},
    	{56, "EDEADLOCK", "file locking deadlock error"},
    	{59, "EBFONT", "bad font file format"},
    	{60, "ENOSTR", "device not a stream"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 34.7K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_ppc.go

    	{50, "ENOCSI", "no CSI structure available"},
    	{51, "EL2HLT", "level 2 halted"},
    	{52, "EBADE", "invalid exchange"},
    	{53, "EBADR", "invalid request descriptor"},
    	{54, "EXFULL", "exchange full"},
    	{55, "ENOANO", "no anode"},
    	{56, "EBADRQC", "invalid request code"},
    	{57, "EBADSLT", "invalid slot"},
    	{58, "EDEADLOCK", "file locking deadlock error"},
    	{59, "EBFONT", "bad font file format"},
    	{60, "ENOSTR", "device not a stream"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  6. src/syscall/zerrors_solaris_amd64.go

    	47:  "operation canceled",
    	48:  "operation not supported",
    	49:  "disc quota exceeded",
    	50:  "bad exchange descriptor",
    	51:  "bad request descriptor",
    	52:  "message tables full",
    	53:  "anode table overflow",
    	54:  "bad request code",
    	55:  "invalid slot",
    	56:  "file locking deadlock",
    	57:  "bad font file format",
    	58:  "owner of the lock died",
    	59:  "lock is not recoverable",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 50.8K bytes
    - Viewed (0)
  7. src/go/types/expr.go

    			// that the lhs expression type is determined in the
    			// first round and thus deleted from the map, and then
    			// not found in the second round (double insertion of
    			// the same expr node still just leads to one entry for
    			// that node, and it can only be deleted once).
    			// Be cautious and check for presence of entry.
    			// Example: var e, f = int(1<<""[f]) // go.dev/issue/11347
    			if info, found := check.untyped[x.expr]; found {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_mipsle.go

    	{45, "EDEADLK", "resource deadlock avoided"},
    	{46, "ENOLCK", "no locks available"},
    	{50, "EBADE", "invalid exchange"},
    	{51, "EBADR", "invalid request descriptor"},
    	{52, "EXFULL", "exchange full"},
    	{53, "ENOANO", "no anode"},
    	{54, "EBADRQC", "invalid request code"},
    	{55, "EBADSLT", "invalid slot"},
    	{56, "EDEADLOCK", "file locking deadlock error"},
    	{59, "EBFONT", "bad font file format"},
    	{60, "ENOSTR", "device not a stream"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 34.7K bytes
    - Viewed (0)
  9. src/go/types/typexpr.go

    		default:
    			check.errorf(&x, NotAType, "%s is not a type", &x)
    		}
    
    	case *ast.IndexExpr, *ast.IndexListExpr:
    		ix := typeparams.UnpackIndexExpr(e)
    		check.verifyVersionf(inNode(e, ix.Lbrack), go1_18, "type instantiation")
    		return check.instantiatedType(ix, def)
    
    	case *ast.ParenExpr:
    		// Generic types must be instantiated before they can be used in any form.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_sparc64.go

    	{101, "EL2HLT", "level 2 halted"},
    	{102, "EBADE", "invalid exchange"},
    	{103, "EBADR", "invalid request descriptor"},
    	{104, "EXFULL", "exchange full"},
    	{105, "ENOANO", "no anode"},
    	{106, "EBADRQC", "invalid request code"},
    	{107, "EBADSLT", "invalid slot"},
    	{108, "EDEADLOCK", "file locking deadlock error"},
    	{109, "EBFONT", "bad font file format"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 38.7K bytes
    - Viewed (0)
Back to top