Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for iexcl (0.04 sec)

  1. src/os/file_plan9.go

    func openFileNolog(name string, flag int, perm FileMode) (*File, error) {
    	var (
    		fd     int
    		e      error
    		create bool
    		excl   bool
    		trunc  bool
    		append bool
    	)
    
    	if flag&O_CREATE == O_CREATE {
    		flag = flag & ^O_CREATE
    		create = true
    	}
    	if flag&O_EXCL == O_EXCL {
    		excl = true
    	}
    	if flag&O_TRUNC == O_TRUNC {
    		trunc = true
    	}
    	// O_APPEND is emulated on Plan 9
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:35:30 UTC 2024
    - 16K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/mod/modfile/rule.go

    			if haveExclude[x.Mod] {
    				kill[x.Syntax] = true
    				continue
    			}
    			haveExclude[x.Mod] = true
    		}
    		var excl []*Exclude
    		for _, x := range *exclude {
    			if !kill[x.Syntax] {
    				excl = append(excl, x)
    			}
    		}
    		*exclude = excl
    	}
    
    	// Remove duplicate replacements.
    	// Later replacements take priority over earlier ones.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 18:34:56 UTC 2024
    - 46.5K bytes
    - Viewed (0)
Back to top