Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 65 for inode (0.11 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/go/printer/printer.go

    	}
    	return nil
    }
    
    func (p *printer) printNode(node any) error {
    	// unpack *CommentedNode, if any
    	var comments []*ast.CommentGroup
    	if cnode, ok := node.(*CommentedNode); ok {
    		node = cnode.Node
    		comments = cnode.Comments
    	}
    
    	if comments != nil {
    		// commented node - restrict comment list to relevant range
    		n, ok := node.(ast.Node)
    		if !ok {
    			goto unsupported
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 41.6K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/go/format/format.go

    			// We should never get here. If we do, provide good diagnostic.
    			return fmt.Errorf("format.Node internal error (%s)", err)
    		}
    		ast.SortImports(fset, file)
    
    		// Use new file with sorted imports.
    		node = file
    		if cnode != nil {
    			node = &printer.CommentedNode{Node: file, Comments: cnode.Comments}
    		}
    	}
    
    	return config.Fprint(dst, fset, node)
    }
    
    // Source formats src in canonical gofmt style and returns the result
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zerrors_solaris_amd64.go

    	{49, "EDQUOT", "disc quota exceeded"},
    	{50, "EBADE", "bad exchange descriptor"},
    	{51, "EBADR", "bad request descriptor"},
    	{52, "EXFULL", "message tables full"},
    	{53, "ENOANO", "anode table overflow"},
    	{54, "EBADRQC", "bad request code"},
    	{55, "EBADSLT", "invalid slot"},
    	{56, "EDEADLOCK", "file locking deadlock"},
    	{57, "EBFONT", "bad font file format"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 59K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/html.go

    function graphReduce(id) {
        var node = document.getElementById(id);
        if (node) {
        		node.width.baseVal.value *= 0.9;
        		node.height.baseVal.value *= 0.9;
        }
        return false;
    }
    
    function graphEnlarge(id) {
        var node = document.getElementById(id);
        if (node) {
        		node.width.baseVal.value *= 1.1;
        		node.height.baseVal.value *= 1.1;
        }
        return false;
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 15:11:40 UTC 2023
    - 34.8K bytes
    - Viewed (0)
Back to top