Did I find the right examples for you? yes no Crawl my project Python Jobs
All Samples(25) | Call(25) | Derive(0) | Import(0)
src/s/k/SkeinFox-HEAD/2010-02-25_skeinforge_withRaftless/skeinforge_tools/meta_plugins/polyfile.py SkeinFox(Download)
return [] if isDirectorySetting(): return gcodec.getFilesWithFileTypeWithoutWords( 'gcode', words, fileName ) return [ fileName ]
src/s/k/SkeinFox-HEAD/skeinforge-0006/skeinforge_tools/polyfile.py SkeinFox(Download)
return [] if isDirectoryPreference(): return gcodec.getFilesWithFileTypeWithoutWords( 'gcode', words, fileName ) return [ fileName ]
src/s/k/SkeinFox-HEAD/skeinforge-0005/skeinforge_tools/polyfile.py SkeinFox(Download)
return [] if isDirectoryPreference(): return gcodec.getFilesWithFileTypeWithoutWords( 'gcode', words, fileName ) return [ fileName ]
src/s/k/SkeinFox-HEAD/2010-02-25_skeinforge_withRaftless/miscellaneous/fabricate/extrude.py SkeinFox(Download)
def getGCodeFilesWhichAreNotLogFiles(): "Get gcode files which are not log files." return gcodec.getFilesWithFileTypeWithoutWords( 'gcode', [ '_log' ] ) def getIntegerString( number ):
src/s/k/SkeinFactory-HEAD/skeinforge/fabmetheus_utilities/miscellaneous/fabricate/extrude.py SkeinFactory(Download)
def getGCodeFilesWhichAreNotLogFiles(): "Get gcode files which are not log files." return gcodec.getFilesWithFileTypeWithoutWords('gcode', ['_log'] ) def getIntegerString(number):
src/m/a/MakerDroid-HEAD/assetsrc/public.mp3/miscellaneous/fabricate/extrude.py MakerDroid(Download)
def getGCodeFilesWhichAreNotLogFiles(): "Get gcode files which are not log files." return gcodec.getFilesWithFileTypeWithoutWords( 'gcode', [ '_log' ] ) def getIntegerString( number ):
src/s/k/SkeinFox-HEAD/2010-02-25_skeinforge_withRaftless/skeinforge_tools/skeinforge_utilities/wikifier.py SkeinFox(Download)
print( 'Failed to execute the following command in writeHypertext in docwrap.' ) print( shellCommand ) hypertextFiles = gcodec.getFilesWithFileTypeWithoutWords( 'html' ) if len( hypertextFiles ) <= 0: print( 'Failed to find any help files in writeHypertext in docwrap.' )
src/s/k/SkeinFox-HEAD/2010-02-25_skeinforge_withRaftless/skeinforge_tools/import_plugins/stl.py SkeinFox(Download)
def getCarving( fileName = '' ): "Get the triangle mesh for the stl file." if fileName == '': unmodified = gcodec.getFilesWithFileTypeWithoutWords( 'stl' ) if len( unmodified ) == 0:
src/s/k/SkeinFox-HEAD/skeinforge-0006/skeinforge_tools/import_plugins/obj.py SkeinFox(Download)
def getCarving( fileName = '' ): "Get the triangle mesh for the obj file." if fileName == '': unmodified = gcodec.getFilesWithFileTypeWithoutWords( 'obj' ) if len( unmodified ) == 0:
src/s/k/SkeinFox-HEAD/skeinforge-0005/skeinforge_tools/import_plugins/obj.py SkeinFox(Download)
def getCarving( fileName = '' ): "Get the triangle mesh for the obj file." if fileName == '': unmodified = gcodec.getFilesWithFileTypeWithoutWords( 'obj' ) if len( unmodified ) == 0:
1 | 2 | 3 Next