当前位置: 首页>>代码示例>>Python>>正文


Python ShareYourSystem._attest方法代码示例

本文整理汇总了Python中ShareYourSystem._attest方法的典型用法代码示例。如果您正苦于以下问题:Python ShareYourSystem._attest方法的具体用法?Python ShareYourSystem._attest怎么用?Python ShareYourSystem._attest使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在ShareYourSystem的用法示例。


在下文中一共展示了ShareYourSystem._attest方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: MakerClass

# 需要导入模块: import ShareYourSystem [as 别名]
# 或者: from ShareYourSystem import _attest [as 别名]
})
class MakerClass(object):

	def default_init(self,
					_MakingMyFloat=0.,
					_MadeMyInt=0,
					**_KwarVariablesDict
				):
		object.__init__(self,**_KwarVariablesDict)

	def do_make(self):
		
		#cast
		self.MadeMyInt=int(self.MakingMyFloat)

#Definition the AttestedStr
SYS._attest(
	[
		'MakerClass.make is '+str(MakerClass.make),
		'MakerClass.DeriveClassor.ObservingWrapMethodStr is '+str(
			MakerClass.DeriveClassor.ObservingWrapMethodStr),
		'MakerClass.DeriveClassor.ObservedWrapMethodStr is '+str(
			MakerClass.DeriveClassor.ObservedWrapMethodStr),
	]
) 

#Print



开发者ID:BinWang20140601,项目名称:ShareYourSystem,代码行数:29,代码来源:01_ExampleDoc.py

示例2: do_multiply

# 需要导入模块: import ShareYourSystem [as 别名]
# 或者: from ShareYourSystem import _attest [as 别名]
		SYS.GriderClass.__init__(self,**_KwargVariablesDict)
		
	def do_multiply(self):
		
		#set the MultipliedTotalInt
		self.MultipliedTotalInt=self.MultiplyingFirstInt*self.MultiplyingSecondInt


MyMultiplier=MultiplierClass().grid(
		[
			('MultiplyingFirstInt',[0,1,2]),
			('MultiplyingSecondInt',[2,4]),
		]
	)

#Definition the AttestedStr
SYS._attest(
	[
		'MyMultiplier is '+SYS._str(
		MyMultiplier,
		**{
			'RepresentingBaseKeyStrsListBool':False,
			'RepresentingAlineaIsBool':False
		}
		),
		'hdf5 file is : '+MyMultiplier.hdfview().hdfclose().HdformatedConsoleStr
	]
) 

#Print
开发者ID:BinWang20140601,项目名称:ShareYourSystem,代码行数:32,代码来源:01_ExampleDoc.py

示例3:

# 需要导入模块: import ShareYourSystem [as 别名]
# 或者: from ShareYourSystem import _attest [as 别名]
					"hello"
				)
			)
		]
	)


#Map some gets
GatheredVariablesList=MyGatherer.gather(
							[
								['MyInt'],
								['/FirstChildGatherer/MyStr','/SecondChildGatherer/MyStr']
							]
						)
		
#Definition the AttestedStr
SYS._attest(
	[
		'GatheredVariablesList is '+SYS._str(
			GatheredVariablesList
			,**{
					'RepresentingBaseKeyStrsListBool':False,
					'RepresentingAlineaIsBool':False
			}
		)
	]
) 

#Print

开发者ID:BinWang20140601,项目名称:ShareYourSystem,代码行数:31,代码来源:01_ExampleDoc.py

示例4:

# 需要导入模块: import ShareYourSystem [as 别名]
# 或者: from ShareYourSystem import _attest [as 别名]
		)

#Walk to set the same structure in the hdf5
MyGrouper.walk(
		{
				'BeforeUpdateList':
				[
					('parent',{'LiargVariablesList':[['HdformatedFileVariable']]}),
					('group',{'LiargVariablesList':[]})
				],
				'GatherVariablesList':['<Tree>']
		}
).hdfclose()

#Definition the AttestedStr
SYS._attest(
	[
		'MyGrouper is '+SYS._str(
		MyGrouper,
		**{
			'RepresentingBaseKeyStrsListBool':False,
			'RepresentingAlineaIsBool':False
			}
		),
		'MyGrouper.hdfview().HdformatedConsoleStr is '+MyGrouper.hdfview().HdformatedConsoleStr
	]
) 

#Print

开发者ID:BinWang20140601,项目名称:ShareYourSystem,代码行数:31,代码来源:01_ExampleDoc.py

示例5:

# 需要导入模块: import ShareYourSystem [as 别名]
# 或者: from ShareYourSystem import _attest [as 别名]
)['<Joiners>ParametersJoiner'].insert()

#Update and insert in the results
MyModulizer.__setitem__(
	"Dis_<Components>",
	[
		[
			('MultiplyingFirstInt',2)
		],
		[
			('MultiplyingSecondInt',4)
		]
	]
)['<Joiners>ParametersJoiner'].insert()

"""
#Definition the AttestedStr
SYS._attest(
	[
		'MyModulizer is '+SYS._str(
		MyModulizer,
		**{
			'RepresentingBaseKeyStrsListBool':False,
			'RepresentingAlineaIsBool':False
		}
		)
	]
) 
"""

#print
开发者ID:BinWang20140601,项目名称:ShareYourSystem,代码行数:33,代码来源:07_ExampleDoc.py

示例6: id

# 需要导入模块: import ShareYourSystem [as 别名]
# 或者: from ShareYourSystem import _attest [as 别名]
				#		[
				#			{'SymbolStr':'1'},
				#			{'SymbolStr':'1'}
				#		]
				#	)
			}
		)
	).equation(
		_CodeStr='''
			double id(double t){
						return 1.;
					}
		'''
	)

'''
#Definition the AttestedStr
SYS._attest(
	[
		'MyEquationer is '+SYS._str(
		MyEquationer,
		**{
			'RepresentingBaseKeyStrsListBool':False,
			'RepresentingAlineaIsBool':False
		}
		),
	]
) 
'''

#print
开发者ID:BinWang20140601,项目名称:ShareYourSystem,代码行数:33,代码来源:07_ExampleCell.py

示例7:

# 需要导入模块: import ShareYourSystem [as 别名]
# 或者: from ShareYourSystem import _attest [as 别名]
			},
		'MyStr':'hello'
		}
	}

#Represent a TuplesList
TuplesList=[
				(
					'ParentTuplesList',
					[
						(
							'ChildDict',
							{
								'MyInt':0
							}
						)
					]
				),
				('MyStr','hello')
			]

#Definition the AttestedStr
SYS._attest(
	[
		'Dict is'+SYS._str(Dict),
		'TuplesList is'+SYS._str(TuplesList)
	]
) 

#Print
开发者ID:BinWang20140601,项目名称:ShareYourSystem,代码行数:32,代码来源:03_ExampleDoc.py

示例8:

# 需要导入模块: import ShareYourSystem [as 别名]
# 或者: from ShareYourSystem import _attest [as 别名]
							if _TestInt!=None else False,
						2
					)
				]
			),
			(
				'PickingKeyVariablesList',['NodeKeyStr']
			),
			('cumulate',{'LiargVariablesList':[]})
		],
		'GatherVariablesList':['<Cumulaters>']
	}
)
		
#Definition the AttestedStr
SYS._attest(
	[
		'MyCumulater is '+SYS._str(
		MyCumulater.CumulatedVariablesList,
		**{
			'RepresentingBaseKeyStrsListBool':False,
			'RepresentingAlineaIsBool':False
		}
		)
	]
) 

#Print


开发者ID:BinWang20140601,项目名称:ShareYourSystem,代码行数:30,代码来源:01_ExampleDoc.py

示例9:

# 需要导入模块: import ShareYourSystem [as 别名]
# 或者: from ShareYourSystem import _attest [as 别名]
			[
				"StateMoniters",
				['Rate'],
				SYS.MoniterClass,
				{
					'MoniteringVariableStr':'RatedPostFloatsList',
					'MoniteringIndexIntsList':[0,1]
				}
			]
		}
	}
).rate()
		
#Definition the AttestedStr
SYS._attest(
	[
		'MyRater is '+SYS._str(
		MyRater,
		**{
			'RepresentingBaseKeyStrsListBool':False,
			'RepresentingAlineaIsBool':False,
			'RepresentingKeyStrsList':[
			]
		}
		),
	]
) 

#Print

开发者ID:BinWang20140601,项目名称:ShareYourSystem,代码行数:31,代码来源:01_ExampleCell.py

示例10:

# 需要导入模块: import ShareYourSystem [as 别名]
# 或者: from ShareYourSystem import _attest [as 别名]
#ImportModules
import ShareYourSystem as SYS
from ShareYourSystem.Specials.Simulaters import Dynamizer

#Definition an instance
MyDynamizer=Dynamizer.DynamizerClass().dynamize()
		
#Definition the AttestedStr
SYS._attest(
	[
		'MyDynamizer is '+SYS._str(
		MyDynamizer,
		**{
			'RepresentingBaseKeyStrsListBool':False,
			'RepresentingAlineaIsBool':False,
			'RepresentingKeyStrsList':['PopulatingEquationStr','DynamizedPostStr']
		}
		),
	]
) 

#Print

开发者ID:BinWang20140601,项目名称:ShareYourSystem,代码行数:24,代码来源:01_ExampleCell.py

示例11: build

# 需要导入模块: import ShareYourSystem [as 别名]
# 或者: from ShareYourSystem import _attest [as 别名]
		#Init attributes
		self.BuiltMyFloat=0.

		#set the output hierarchy
		self['<Output>MyMaker']=MakerClass()

	@Outputer.OutputerClass()
	def build(self):

		#Print
		print('I build then !')

		#set
		self.BuiltMyFloat=float(2*self['<Output>MyMaker'].MadeMyInt)

#Definition an instance
MyBuilder=BuilderClass().build()

#Definition the AttestedStr
SYS._attest(
	[
		'MyBuilder.BuiltMyFloat is '+str(MyBuilder.BuiltMyFloat)
	]
) 

#Print




开发者ID:BinWang20140601,项目名称:ShareYourSystem,代码行数:28,代码来源:01_ExampleDoc.py

示例12: print

# 需要导入模块: import ShareYourSystem [as 别名]
# 或者: from ShareYourSystem import _attest [as 别名]
#make once
MyMaker.make(3.)

#Print
print('After the first make, MyMaker is ')
SYS._print(MyMaker)

#Reset
print('Now we reset')
MyMaker.WatchMakeWithMakerBool=False

#Print
print('After the reset, MyMaker is ')
SYS._print(MyMaker)

#Definition the AttestedStr
SYS._attest(
	[
		'MakerClass.WatchMakeBoolWithMaker is '+str(MakerClass.WatchMakeWithMakerBool),
		'MakerClass.setResetBoolWithMaker_ is '+str(MakerClass.setResetBoolWithMaker_),
		'MakerClass.make is '+str(MakerClass.make),
		'MyMaker is '+SYS._str(
			MyMaker,**{'RepresentingAlineaIsBool':False}
		),
	]
) 

#Print

开发者ID:BinWang20140601,项目名称:ShareYourSystem,代码行数:30,代码来源:01_ExampleDoc.py

示例13: make

# 需要导入模块: import ShareYourSystem [as 别名]
# 或者: from ShareYourSystem import _attest [as 别名]
	@Imitater.ImitaterClass()
	def make(self):

		#Call the parent method
		MakerClass.make(self)

		#Do something more
		self.MadeMyInt+=2

#Definition of a Builder instance that is going to make
MyBuilder=BuilderClass().make(3.)

#Definition the AttestedStr
SYS._attest(
	[
		'BuilderClass.make is '+str(BuilderClass.make),
		'MyBuilder.__dict__ is '+SYS._str(
		MyBuilder.__dict__,
		**{
			'RepresentingBaseKeyStrsListBool':False
		}
		)
	]
) 

#Print




开发者ID:BinWang20140601,项目名称:ShareYourSystem,代码行数:28,代码来源:01_ExampleDoc.py

示例14: print

# 需要导入模块: import ShareYourSystem [as 别名]
# 或者: from ShareYourSystem import _attest [as 别名]
		print('I make')
		
		#cast
		self.MadeMyInt=int(self.MakingMyFloat)

#Definition and do a first make
MyMaker=MakerClass().make(3.)

#Use the other binded method that is completely fooooo
MyMaker.foo_make()

#Definition the AttestedStr
SYS._attest(
	[
		'MakerClass.foo is '+str(MakerClass.foo),
		'MakerClass.foo_make is '+str(MakerClass.foo_make),
		'MyMaker is '+SYS._str(
		MyMaker,
		**{
			'RepresentingBaseKeyStrsListBool':False,
			'RepresentingAlineaIsBool':False
		}
		)
	]
) 

#Print



开发者ID:BinWang20140601,项目名称:ShareYourSystem,代码行数:29,代码来源:01_ExampleDoc+copy+2.py

示例15:

# 需要导入模块: import ShareYourSystem [as 别名]
# 或者: from ShareYourSystem import _attest [as 别名]
#FrozenIsBool False

#ImportModules
import ShareYourSystem as SYS
from ShareYourSystem.Standards.Objects.Hdformater import Drafts
		
#Definition the AttestedStr
SYS._attest(
	[
		'DefaultAttributeItemTuplesList is '+SYS._str(
			Drafts.DraftsClass.DefaultAttributeItemTuplesList,
			**{'RepresentingAlineaIsBool':False}
		)
	]
) 

#Print

开发者ID:BinWang20140601,项目名称:ShareYourSystem,代码行数:19,代码来源:01_ClassCell.py


注:本文中的ShareYourSystem._attest方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。