Home
last modified time | relevance | path

Searched refs:the_input (Results 1 – 10 of 10) sorted by relevance

/dports/devel/py-knack/knack-0.8.2/tests/
H A Dtest_util.py17 the_input = None
18 actual = todict(the_input)
23 the_input = {}
24 actual = todict(the_input)
29 the_input = {'a': 'b'}
30 actual = todict(the_input)
35 the_input = [{'a': 'b'}]
36 actual = todict(the_input)
43 actual = todict(the_input)
50 the_input = {'a': mo}
[all …]
/dports/graphics/opendx/dx-4.4.4/src/exec/dxmods/
H A Dsimplesurf.c441 int result=0, the_input; in doLeaf() local
909 for(the_input=3;the_input<8;the_input++) { in doLeaf()
911 if (! in[the_input]) in doLeaf()
915 in_data[the_input] = NULL; in doLeaf()
916 in_knt[the_input] = 0; in doLeaf()
920 if (DXGetObjectClass(in[the_input]) == CLASS_ARRAY) in doLeaf()
922 array = (Array)in[the_input]; in doLeaf()
926 in_data[the_input] = (Pointer)DXGetString((String)in[the_input]); in doLeaf()
927 in_knt[the_input] = 1; in doLeaf()
966 in_data[the_input] = DXGetArrayData(array); in doLeaf()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/native_client/pnacl/driver/
H A Dpnacl-as.py84 the_input = inputs[0]
87 the_input = '-'
99 env.set('input', the_input)
/dports/math/py-keras/Keras-2.4.3/examples/
H A Dimage_ocr.py432 the_input = word_batch['the_input'][i, 0, :, :]
434 the_input = word_batch['the_input'][i, :, :, 0]
435 pylab.imshow(the_input.T, cmap='Greys_r')
/dports/math/giacxcas/giac-1.6.0/src/
H A DEditeur.cc854 if (Multiline_Input_tab * the_input =dynamic_cast<Multiline_Input_tab *>(widget)){ in in_Xcas_input_1arg() local
857 the_input->insert_replace(s,false); in in_Xcas_input_1arg()
860 if (Fl_Input * the_input =dynamic_cast<Fl_Input *>(widget)){ in in_Xcas_input_1arg() local
861 string t(the_input->value()); in in_Xcas_input_1arg()
862 size_t sel1=the_input->position(),sel2=the_input->mark(); in in_Xcas_input_1arg()
876 the_input->value( s.c_str()); in in_Xcas_input_1arg()
880 the_input->position(pos2-1,pos2-1); in in_Xcas_input_1arg()
882 the_input->position(pos1,pos2); in in_Xcas_input_1arg()
/dports/math/xldlas/xldlas/
H A Danalysis.c86 float squasher_function(float the_input) in squasher_function() argument
90 if(the_input < 0.0) return(0.0); in squasher_function()
95 if(the_input < -1.0) return(0.0); in squasher_function()
96 if(the_input < 1.0) return((the_input + 1.0) / 2.0); in squasher_function()
101 return(1.0/(1.0 + pow(M_E,(-1.0 * the_input)))); in squasher_function()
107 float simulated_annealing(float the_input, int current_cycle, int total_cycles) in simulated_annealing() argument
112 return(the_input); in simulated_annealing()
117 return(the_input + scratch); in simulated_annealing()
/dports/misc/mxnet/incubator-mxnet-1.9.0/python/mxnet/
H A Dtest_utils.py341 def assign_each(the_input, function): argument
344 output = np.array(the_input)
346 it_input = np.nditer(the_input, flags=['f_index'])
348 output = np.zeros(the_input.shape)
/dports/misc/py-mxnet/incubator-mxnet-1.9.0/python/mxnet/
H A Dtest_utils.py341 def assign_each(the_input, function): argument
344 output = np.array(the_input)
346 it_input = np.nditer(the_input, flags=['f_index'])
348 output = np.zeros(the_input.shape)
/dports/devel/py-pyparsing2/pyparsing-2.4.7/
H A DunitTests.py2848 for the_input in [
2857 print_(the_input)
2860 p1res = parser1.parseString(the_input)
2861 p2res = parser2.parseString(the_input)
/dports/devel/py-pyparsing/pyparsing-3.0.6/tests/
H A Dtest_unit.py4932 for the_input in [
4941 print(the_input)
4946 p1res = parser1.parseString(the_input)
4947 p2res = parser2.parseString(the_input)