Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 878 for irregular (0.61 sec)

  1. src/cmd/vendor/golang.org/x/mod/zip/zip.go

    				omitted = append(omitted, FileError{Path: slashPath, Err: errSubmoduleDir})
    				return filepath.SkipDir
    			}
    			return nil
    		}
    
    		// Skip irregular files and files in vendor directories.
    		// Irregular files are ignored. They're typically symbolic links.
    		if !info.Mode().IsRegular() {
    			omitted = append(omitted, FileError{Path: slashPath, Err: errNotRegular})
    			return nil
    		}
    
    		files = append(files, dirFile{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 31K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/embed.txt

    stderr '^x.go:5:12: pattern [*]t: cannot embed file [.]git: invalid name [.]git$'
    rm .git
    
    # build rejects symlinks
    [symlink] symlink x.tzt -> x.txt
    [symlink] ! go build -x
    [symlink] stderr 'pattern [*]t: cannot embed irregular file x.tzt'
    [symlink] rm x.tzt
    
    # build rejects empty directories
    mkdir t
    ! go build -x
    stderr '^x.go:5:12: pattern [*]t: cannot embed directory t: contains no embeddable files$'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 09 18:03:59 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  3. src/crypto/ecdh/ecdh.go

    	// checking that the result is lower than the order of the curve. The zero
    	// private key is also rejected, as the encoding of the corresponding public
    	// key would be irregular.
    	//
    	// For X25519, this only checks the scalar length.
    	NewPrivateKey(key []byte) (*PrivateKey, error)
    
    	// NewPublicKey checks that key is valid and returns a PublicKey.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  4. src/os/os_windows_test.go

    	}
    	if tp := lfi.Mode().Type(); tp != fs.ModeIrregular {
    		// A reparse point is not a regular file, but we don't have a more appropriate
    		// ModeType bit for it, so it should be marked as irregular.
    		t.Errorf("%q should not be a an irregular file (mode=0x%x)", pythonPath, uint32(tp))
    	}
    
    	if sfi.Name() != pythonExeName {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  5. src/os/types_windows.go

    			// raw device files on Linux, POSIX FIFO special files, and so on), so
    			// to avoid files changing unpredictably from regular to irregular we will
    			// consider DEDUP files to be close enough to regular to treat as such.
    		default:
    			m |= ModeIrregular
    		}
    	}
    	return
    }
    
    // modePreGo1_23 returns the FileMode for the fileStat, using the pre-Go 1.23
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:44:48 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/arch/x86/x86asm/gnu.go

    	case FDIV, FDIVR, FSUB, FSUBR, FDIVP, FDIVRP, FSUBP, FSUBRP:
    		// DC E0, DC F0: libopcodes swaps FSUBR/FSUB and FDIVR/FDIV, at least
    		// if you believe the Intel manual is correct (the encoding is irregular as given;
    		// libopcodes uses the more regular expected encoding).
    		// TODO(rsc): Test to ensure Intel manuals are correct and report to libopcodes maintainers?
    		// NOTE: iant thinks this is deliberate, but we can't find the history.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 21.4K bytes
    - Viewed (0)
  7. src/go/types/stmt.go

    	// Iteration variables declared with := need to go in this scope (was go.dev/issue/51437).
    	check.openScope(s, "range")
    	defer check.closeScope()
    
    	// check assignment to/declaration of iteration variables
    	// (irregular assignment, cannot easily map to existing assignment checks)
    
    	// lhs expressions and initialization value (rhs) types
    	lhs := [2]Expr{sKey, sValue} // sKey, sValue may be nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/stmt.go

    	// Iteration variables declared with := need to go in this scope (was go.dev/issue/51437).
    	check.openScope(s, "range")
    	defer check.closeScope()
    
    	// check assignment to/declaration of iteration variables
    	// (irregular assignment, cannot easily map to existing assignment checks)
    
    	// lhs expressions and initialization value (rhs) types
    	lhs := [2]Expr{sKey, sValue} // sKey, sValue may be nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  9. src/main/webapp/css/fonts/fa-regular-400.svg

    fa-regular-400.svg...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Dec 14 21:22:25 UTC 2019
    - 140.9K bytes
    - Viewed (0)
  10. src/main/webapp/css/admin/fonts/fa-regular-400.svg

    fa-regular-400.svg...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Dec 14 21:22:25 UTC 2019
    - 140.9K bytes
    - Viewed (0)
Back to top