PageRenderTime 866ms queryTime 685ms sortTime 17ms getByIdsTime 37ms findMatchingLines 19ms

100+ results results for 'List<Object> repo:bmizerany/jungerl' (866 ms)

Not the results you expected?
DelayedFilterCheckboxTree.java https://gitlab.com/essere.lab.public/qualitas.class-corpus | Java | 332 lines
                    
50	Object viewerInput;
                    
51	ArrayList<Object> checkState = new ArrayList<Object>();
                    
52	Set<Object> expanded = new HashSet<Object>();
                    
71					else {
                    
72						ArrayList<Object> toRemove = new ArrayList<Object>(1);
                    
73						// See bug 258117.  Ideally we would get check state changes 
                    
278		if (checkState == null)
                    
279			checkState = new ArrayList<Object>(checked.length);
                    
280		for (int i = 0; i < checked.length; i++)
                    
                
EqlSearchResponseTests.java https://github.com/imotov/elasticsearch.git | Java | 277 lines
                    
124                String fieldName = randomAlphaOfLengthBetween(3, 10);
                    
125                Tuple<List<Object>, List<Object>> tuple = RandomObjects.randomStoredFieldValues(random(), xType);
                    
126                DocumentField input = new DocumentField(fieldName, tuple.v1());
                    
129            case 1:
                    
130                List<Object> listValues = randomList(1, 5, () -> randomList(1, 5, ESTestCase::randomInt));
                    
131                DocumentField listField = new DocumentField(randomAlphaOfLength(5), listValues);
                    
133            case 2:
                    
134                List<Object> objectValues = randomList(
                    
135                    1,
                    
196            for (int i = 0; i < size; i++) {
                    
197                List<Object> joins = null;
                    
198                if (randomBoolean()) {
                    
                
PipelineResourceInner.java git://github.com/WindowsAzure/azure-sdk-for-java.git | Java | 353 lines
                    
246     */
                    
247    public List<Object> annotations() {
                    
248        return this.innerProperties() == null ? null : this.innerProperties().annotations();
                    
256     */
                    
257    public PipelineResourceInner withAnnotations(List<Object> annotations) {
                    
258        if (this.innerProperties() == null) {
                    
                
GenericClassProxyTestCase.cs https://github.com/dtchepak/Castle.Core.git | C# | 328 lines
                    
142		{
                    
143			GenClassWithGenMethodsConstrained<List<object>> proxy =
                    
144				generator.CreateClassProxy<GenClassWithGenMethodsConstrained<List<object>>>(logger);
                    
175			GenClassWithGenReturn<List<object>, List<object>> proxy =
                    
176				generator.CreateClassProxy<GenClassWithGenReturn<List<object>, List<object>>>(logger);
                    
177
                    
191			GenClassNameClash<List<object>, List<object>> proxy =
                    
192				generator.CreateClassProxy<GenClassNameClash<List<object>, List<object>>>(logger);
                    
193
                    
221			KeepDataInterceptor interceptor = new KeepDataInterceptor();
                    
222			GenClassWithGenMethods<List<object>> proxy = generator.CreateClassProxy<GenClassWithGenMethods<List<object>>>(interceptor);
                    
223
                    
251			GenClassWithGenReturn<List<object>, List<object>> proxy =
                    
252				generator.CreateClassProxy<GenClassWithGenReturn<List<object>, List<object>>>(interceptor);
                    
253
                    
                
CosmosAsyncStoredProcedure.java git://github.com/WindowsAzure/azure-sdk-for-java.git | Java | 246 lines
                    
120     */
                    
121    public Mono<CosmosStoredProcedureResponse> execute(List<Object> procedureParams,
                    
122                                                            CosmosStoredProcedureRequestOptions options) {
                    
212
                    
213    private Mono<CosmosStoredProcedureResponse> executeInternal(List<Object> procedureParams,
                    
214                                                             CosmosStoredProcedureRequestOptions options,
                    
                
ButtonsParser.java https://gitlab.com/essere.lab.public/qualitas.class-corpus | Java | 249 lines
                    
71    private String title;
                    
72    private List<Object> options;
                    
73    private List<Object> additionalOptions;
                    
144    public void createButtons() {
                    
145        options = new ArrayList<Object>();
                    
146        additionalOptions = new ArrayList<Object>();
                    
160            
                    
161            List<Object> addTo = "left".equals(align) ? additionalOptions : options;
                    
162
                    
192
                    
193    List<Object> getOptions() {
                    
194        return options;
                    
196
                    
197    List<Object> getAditionalOptions() {
                    
198        return additionalOptions;
                    
                
BufferedItemList.cs https://EventScavenger.svn.codeplex.com/svn | C# | 464 lines
                    
285
                    
286				List<object> newSortedList = new List<object>( _sortedListItems.Length + additions.Length );
                    
287				
                    
303				{
                    
304					newSortedList = new List<object>( _sortedListItems );
                    
305				}
                    
455		private Column[] _jobGroupColumns = null;
                    
456		private List<object> _jobSortedList = null;
                    
457		
                    
                
SeleccionHorizontalViewController.java https://gitlab.com/edddea/api_contratacion_arq | Java | 295 lines
                    
35	private LayoutInflater inflater;
                    
36	private ArrayList<Object> componentes;
                    
37	private ArrayList<ImageButton> arregloBotones;
                    
42	public SeleccionHorizontalViewController(Context context,LinearLayout.LayoutParams layoutParams, 
                    
43											ArrayList<Object> listaComponentes, BaseDelegate delegate,
                    
44											boolean addOtherElement) {
                    
                
NetworkAvailability.java http://mobicents.googlecode.com/svn/trunk/ | Java | 349 lines
                    
99    @XmlAnyElement(lax = true)
                    
100    protected List<Object> any;
                    
101    @XmlAnyAttribute
                    
155     */
                    
156    public List<Object> getAny() {
                    
157        if (any == null) {
                    
157        if (any == null) {
                    
158            any = new ArrayList<Object>();
                    
159        }
                    
217        @XmlAnyElement(lax = true)
                    
218        protected List<Object> any;
                    
219        @XmlAttribute(required = true)
                    
296         */
                    
297        public List<Object> getAny() {
                    
298            if (any == null) {
                    
                
LAStateTest.java https://gitlab.com/essere.lab.public/qualitas.class-corpus | Java | 148 lines
                    
89    public void testLAState() {
                    
90        List<Object> expected = new ArrayList<Object>();
                    
91        LAState laState = LAState.empty();
                    
98
                    
99        List<Object> expectedInner = expected;
                    
100        LAState laStateInner = laState;
                    
101
                    
102        expected = new ArrayList<Object>();
                    
103        laState = laState.empty();
                    
112
                    
113    private static LAState add(List<Object> expectedLAState, LAState laState, int lookahead, Object state) {
                    
114        expectedLAState.add(Integer.valueOf(lookahead));
                    
120
                    
121    private static LAState addAll(List<Object> expectedLAState, LAState laState, int index,
                    
122    List<Object> expectedLAStateToAdd, LAState laStateToAdd) {
                    
                
CompilerBlob.cs git://github.com/sorear/niecza.git | C# | 275 lines
                    
117                    VarDeque it = o.mo.mro_raw_iterator.Get(v);
                    
118                    var lo = new List<object>();
                    
119                    while (Kernel.IterHasFlat(it, true))
                    
128        public static Variable DownCall(Variable list) {
                    
129            List<object> lo = new List<object>();
                    
130            VarDeque it = Builtins.start_iter(list);
                    
160        static void SerializeNam(Variable v, StringBuilder sb,
                    
161                List<object> refs) {
                    
162
                    
202            StringBuilder sb = new StringBuilder();
                    
203            List<object> refs = new List<object>();
                    
204            SerializeNam(nam, sb, refs);
                    
                
TestExpressionEvaluator.java https://github.com/amorton/hive.git | Java | 299 lines
                    
54  TypeInfo colaType;
                    
55  ArrayList<Object> data;
                    
56  ArrayList<String> names;
                    
72    try {
                    
73      data = new ArrayList<Object>();
                    
74      data.add(col1);
                    
                
ComposablePartExtensibilityTests.cs https://github.com/louissalin/mono.git | C# | 292 lines
                    
253
                    
254                List<object> constructorArgs = new List<object>();
                    
255
                    
                
NotificationCenter.java https://gitlab.com/0072016/Telegram | Java | 276 lines
                    
112
                    
113    private SparseArray<ArrayList<Object>> observers = new SparseArray<>();
                    
114    private SparseArray<ArrayList<Object>> removeAfterBroadcast = new SparseArray<>();
                    
114    private SparseArray<ArrayList<Object>> removeAfterBroadcast = new SparseArray<>();
                    
115    private SparseArray<ArrayList<Object>> addAfterBroadcast = new SparseArray<>();
                    
116    private ArrayList<DelayedPost> delayedPosts = new ArrayList<>(10);
                    
198        broadcasting++;
                    
199        ArrayList<Object> objects = observers.get(id);
                    
200        if (objects != null && !objects.isEmpty()) {
                    
210                    int key = removeAfterBroadcast.keyAt(a);
                    
211                    ArrayList<Object> arrayList = removeAfterBroadcast.get(key);
                    
212                    for (int b = 0; b < arrayList.size(); b++) {
                    
220                    int key = addAfterBroadcast.keyAt(a);
                    
221                    ArrayList<Object> arrayList = addAfterBroadcast.get(key);
                    
222                    for (int b = 0; b < arrayList.size(); b++) {
                    
                
SessionImpl.java https://github.com/jrhoun/liferay-portal.git | Java | 391 lines
                    
178
                    
179		List<Object> scalarValues = defaultASTNodeListener.getScalarValues();
                    
180
                    
                
itemAdd.java https://gitlab.com/imughal/invent | Java | 318 lines
                    
158
                    
159    public ArrayList<Object> adding(String cat_id, int rows) {
                    
160        loading(cat_id);
                    
168    ArrayList<String> itemName = new ArrayList<>();
                    
169    ArrayList<Object> rList = new ArrayList<>();
                    
170
                    
                
UserControllerRest.java https://gitlab.com/MarcinWorkDev/ISOP | Java | 263 lines
                    
106		
                    
107		List<Object> param = new ArrayList<Object>();
                    
108		param.add(id);
                    
                
TopologicalSortException.java https://gitlab.com/essere.lab.public/qualitas.class-corpus | Java | 402 lines
                    
87
                    
88        ArrayList<Object> res = new ArrayList<Object>(vertexes.size());
                    
89
                    
                
DynaMenuModel.java https://gitlab.com/essere.lab.public/qualitas.class-corpus | Java | 348 lines
                    
82    
                    
83    public void loadSubmenu(List<Object> cInstances, JMenu m, Map<Object,FileObject> cookiesToFiles) {
                    
84        // clear first - refresh the menu's content
                    
                
DefaultDaemonConnectionTest.groovy https://github.com/andrewhj-mn/gradle.git | Groovy | 393 lines
                    
351        final Object endInput = new Object()
                    
352        final LinkedList<Object> receiveQueue = new LinkedList<Object>()
                    
353
                    
                
QueryBatchItemBase.cs https://github.com/ngbrown/nhibernate-core.git | C# | 391 lines
                    
26		private DbDataReader _reader;
                    
27		private List<object>[] _hydratedObjects;
                    
28
                    
181			var dialect = Session.Factory.Dialect;
                    
182			var hydratedObjects = new List<object>[_queryInfos.Count];
                    
183			var isDebugLog = Log.IsDebugEnabled();
                    
200					var entitySpan = loader.EntityPersisters.Length;
                    
201					hydratedObjects[i] = entitySpan == 0 ? null : new List<object>(entitySpan);
                    
202					var keys = new EntityKey[entitySpan];
                    
223					var optionalObjectKey = Loader.Loader.GetOptionalObjectKey(queryParameters, Session);
                    
224					var tmpResults = new List<object>();
                    
225					var queryCacheBuilder = queryInfo.IsCacheable ? new QueryCacheResultBuilder(loader) : null;
                    
356
                    
357		private void InitializeEntitiesAndCollections(DbDataReader reader, List<object>[] hydratedObjects)
                    
358		{
                    
                
ListHDFSStoresFunctionJUnitTest.java https://gitlab.com/kidaa/incubator-geode.git | Java | 319 lines
                    
295
                    
296    private final List<Object> results = new LinkedList<Object>();
                    
297
                    
299
                    
300    protected List<Object> getResults() throws Throwable {
                    
301      if (t != null) {
                    
                
Response.java https://github.com/apache/geronimo-specs.git | Java | 515 lines
                    
128        for (String headerName : response.getHeaders().keySet()) {
                    
129            List<Object> headerValues = response.getHeaders().get(headerName);
                    
130            for (Object headerValue : headerValues) {
                    
                
EditorProvider.java https://gitlab.com/essere.lab.public/qualitas.class-corpus | Java | 231 lines
                    
129        }
                    
130        List<Object> source = new ArrayList<Object>();
                    
131        source.add(document);
                    
                
OpenProjectAction.java https://gitlab.com/essere.lab.public/qualitas.class-corpus | Java | 240 lines
                    
122
                    
123	private int evaluateSelection(IStructuredSelection selection, List<Object> allClosedProjects) {
                    
124		Object[] array= selection.toArray();
                    
168	public void run(IStructuredSelection selection) {
                    
169		List<Object> allClosedProjects= new ArrayList<Object>();
                    
170		int selectionStatus= evaluateSelection(selection, allClosedProjects);
                    
                
AbstractCxfWsdlFirstTest.java https://gitlab.com/matticala/apache-camel | Java | 140 lines
                    
111        org.apache.camel.Message out = exchange.getOut();
                    
112        List<Object> result =  out.getBody(List.class);
                    
113        assertEquals("The result list should not be empty", result.size(), 4);
                    
125            public void process(final Exchange exchange) {
                    
126                final List<Object> params = new ArrayList<>();
                    
127                Holder<String> personId = new Holder<>();
                    
                
SellerController.cs https://hg.codeplex.com/xenta | C# | 385 lines
                    
273            });
                    
274            var data = new List<Object>();
                    
275
                    
307            });
                    
308            var data = new List<Object>();
                    
309
                    
330            });
                    
331            var data = new List<Object>();
                    
332
                    
                
BinaryShardedJedis.java https://github.com/gnprice/jedis.git | Java | 403 lines
                    
397
                    
398    public List<Object> pipelined(ShardedJedisPipeline shardedJedisPipeline) {
                    
399        shardedJedisPipeline.setShardedJedis(this);
                    
                
OppositeRestrictionsTest.java https://gitlab.com/MichelZuniga/drools | Java | 329 lines
                    
42
                    
43        Collection<Object> data = new ArrayList<Object>();
                    
44
                    
103
                    
104        Collection<Object> data = new ArrayList<Object>();
                    
105
                    
145
                    
146        Collection<Object> data = new ArrayList<Object>();
                    
147
                    
187
                    
188        Collection<Object> data = new ArrayList<Object>();
                    
189
                    
229
                    
230        Collection<Object> data = new ArrayList<Object>();
                    
231
                    
                
Method.java https://gitlab.com/jaragan/jersey | Java | 286 lines
                    
69    @XmlAnyElement(lax = true)
                    
70    protected List<Object> any;
                    
71    @XmlAttribute(name = "id")
                    
188     */
                    
189    public List<Object> getAny() {
                    
190        if (any == null) {
                    
190        if (any == null) {
                    
191            any = new ArrayList<Object>();
                    
192        }
                    
                
PSSessionConfigurationData.cs https://gitlab.com/unofficial-mirrors/PowerShell | C# | 237 lines
                    
34
                    
35        internal List<object> ModulesToImportInternal
                    
36        {
                    
152        private List<string> _modulesToImport;
                    
153        private List<object> _modulesToImportInternal;
                    
154
                    
190                        _modulesToImport = new List<string>();
                    
191                        _modulesToImportInternal = new List<object>();
                    
192                        object[] modulesToImport = optionValue.Split(new[] { "," }, StringSplitOptions.RemoveEmptyEntries);
                    
223            if (_modulesToImport == null) _modulesToImport = new List<string>();
                    
224            if (_modulesToImportInternal == null) _modulesToImportInternal = new List<object>();
                    
225        }
                    
                
MeasurementData.java https://github.com/cos/Jmol_parallelization.git | Java | 203 lines
                    
49  public int tokAction;
                    
50  public List<Object> points;
                    
51  public float[] rangeMinMax;
                    
60   */
                    
61  public MeasurementData(List<Object> points, int tokAction,
                    
62                 float[] rangeMinMax, String strFormat, String units,
                    
                
StandardStructObjectInspector.java https://github.com/amorton/hive.git | Java | 201 lines
                    
135    }
                    
136    // We support both List<Object> and Object[]
                    
137    // so we have to do differently.
                    
141    }
                    
142    int listSize = (isArray ? ((Object[]) data).length : ((List<Object>) data)
                    
143        .size());
                    
175    }
                    
176    List<Object> list = (List<Object>) data;
                    
177    assert (list.size() == fields.size());
                    
184  public Object create() {
                    
185    ArrayList<Object> a = new ArrayList<Object>(fields.size());
                    
186    for (int i = 0; i < fields.size(); i++) {
                    
194      Object fieldValue) {
                    
195    ArrayList<Object> a = (ArrayList<Object>) struct;
                    
196    MyField myField = (MyField) field;
                    
                
TestLoopThroughConditionsInAlgoFile.java https://bitbucket.org/Sathishsatz/iso-consumption-parser.git | Java | 360 lines
                    
132		
                    
133		List<Object> scopeList = new ArrayList<Object>();
                    
134		scopeList.addAll(reference.getContent());
                    
                
CxfHeaderHelper.java https://gitlab.com/matticala/apache-camel | Java | 312 lines
                    
171    public static void propagateCxfHeadersToCamelHeaders(HeaderFilterStrategy strategy,
                    
172            Map<String, List<Object>> responseHeaders, Map<String, Object> camelHeaders,
                    
173            Exchange camelExchange) throws Exception {
                    
                
PredicateFinderVisitor.java https://bitbucket.org/openesb/netbeans-soa.git | Java | 240 lines
                    
190                }
                    
191                DirectedList<Object> predicatePath = BpelPathConverter.singleton().
                    
192                        constructObjectLocationList(stepContext, true, true);
                    
209                    case NODE:
                    
210                        DirectedList<Object> sStepPath = BpelPathConverter.singleton().
                    
211                                constructObjectLocationList(stepContext, true, true);
                    
226                    case PROCESSING_INSTR:
                    
227                        DirectedList<Object> sStepPath = BpelPathConverter.singleton().
                    
228                                constructObjectLocationList(stepContext, true, true);
                    
                
ContratacionAutenticacionServiceProxy.java https://gitlab.com/edddea/api_contratacion_arq | Java | 224 lines
                    
36    @Override
                    
37    public ArrayList<Object> getListaDatos() {
                    
38
                    
42        final ContratacionAutenticacionDelegate delegate = (ContratacionAutenticacionDelegate) baseDelegateCommons;
                    
43        ArrayList<Object> list = delegate.consultaOperationsDelegate().getDatosTablaConfirmacion();
                    
44        return list;
                    
                
GenericQuery.java https://gitlab.com/age-agh/age-legacy | Java | 244 lines
                    
148
                    
149			List<Object> list = Lists.newArrayList();
                    
150
                    
                
CassandraFetchFieldManager.java git://github.com/PedroGomes/datanucleus-cassandra.git | Java | 331 lines
                    
218
                    
219                List<Object> mapping = (List<Object>) value;
                    
220
                    
220
                    
221                Collection<Object> collection = new ArrayList<Object>(mapping.size());
                    
222                for (Object id : mapping) {
                    
                
IncompatibilityRestrictionsTest.java https://gitlab.com/MichelZuniga/drools | Java | 306 lines
                    
43
                    
44        Collection<Object> data = new ArrayList<Object>();
                    
45
                    
106
                    
107        Collection<Object> data = new ArrayList<Object>();
                    
108
                    
169
                    
170        Collection<Object> data = new ArrayList<Object>();
                    
171
                    
232
                    
233        Collection<Object> data = new ArrayList<Object>();
                    
234
                    
                
FeedItemAnimator.java https://gitlab.com/thanhbc/instamaterial | Java | 251 lines
                    
43                                                     @NonNull RecyclerView.ViewHolder viewHolder,
                    
44                                                     int changeFlags, @NonNull List<Object> payloads) {
                    
45        if (changeFlags == FLAG_CHANGED) {
                    
                
AnimationEngine.java https://bitbucket.org/erab6887/devgui2.git | Java | 429 lines
                    
50	//will hold all object that should be called by the animation engine when there's animations to be done
                    
51	private ArrayList<Object> animatableTargets = new ArrayList<Object>();	
                    
52
                    
                
DLFileEntryPersistenceTest.java https://github.com/Manishkg/liferay-portal.git | Java | 348 lines
                    
240
                    
241		List<Object> result = _persistence.findWithDynamicQuery(dynamicQuery);
                    
242
                    
258
                    
259		List<Object> result = _persistence.findWithDynamicQuery(dynamicQuery);
                    
260
                    
                
NotationLLSD.cs https://github.com/kow/gridsearch.git | C# | 346 lines
                    
106                    int pos = 0;
                    
107                    List<object> array = new List<object>();
                    
108
                    
                
SelectAlgorithmAndInputPanel.java git://github.com/lessthanoptimal/BoofCV.git | Java | 331 lines
                    
52	protected JCheckBox originalCheck;
                    
53	List<Object>[] algCookies;
                    
54	// list of input names and where to get the inputs
                    
                
ClpSerializer.java https://github.com/sez11a/liferay-plugins.git | Java | 354 lines
                    
118	public static Object translateInput(List<Object> oldList) {
                    
119		List<Object> newList = new ArrayList<Object>(oldList.size());
                    
120
                    
154		else if (obj instanceof List<?>) {
                    
155			return translateInput((List<Object>)obj);
                    
156		}
                    
242	public static Object translateOutput(List<Object> oldList) {
                    
243		List<Object> newList = new ArrayList<Object>(oldList.size());
                    
244
                    
258		else if (obj instanceof List<?>) {
                    
259			return translateOutput((List<Object>)obj);
                    
260		}
                    
                
CoordinatedBolt.java https://gitlab.com/hackbuteer59/jstorm | Java | 379 lines
                    
73		public List<Integer> emit(String stream, Collection<Tuple> anchors,
                    
74				List<Object> tuple) {
                    
75			List<Integer> tasks = _delegate.emit(stream, anchors, tuple);
                    
80		public void emitDirect(int task, String stream,
                    
81				Collection<Tuple> anchors, List<Object> tuple) {
                    
82			updateTaskCounts(tuple.get(0), Arrays.asList(task));
                    
                
MultiContextEventEndpointTest.java https://gitlab.com/matticala/apache-camel | Java | 190 lines
                    
142
                    
143        private final List<Object> objectEvents = new ArrayList<>();
                    
144
                    
166
                    
167        List<Object> getObjectEvents() {
                    
168            return objectEvents;
                    
                
Data_typesItemProviderAdapterFactory.java https://gitlab.com/jgsuess/uml-1.4.2 | Java | 467 lines
                    
61	 */
                    
62	protected Collection<Object> supportedTypes = new ArrayList<Object>();
                    
63
                    
                
Jt400PgmProducer.java https://github.com/gnodet/camel.git | Java | 229 lines
                    
167
                    
168        List<Object> results = new ArrayList<>();
                    
169
                    
                
SymbolResolver.cs https://github.com/pruiz/mono.git | C# | 424 lines
                    
41            {
                    
42                List<object> values = new List<object>(this.symbols.Count);
                    
43
                    
                
WebSocketExtensionTestUtil.java https://gitlab.com/taichu/netty | Java | 129 lines
                    
99        protected void encode(ChannelHandlerContext ctx, WebSocketFrame msg,
                    
100                List<Object> out) throws Exception {
                    
101            // unused
                    
107        protected void decode(ChannelHandlerContext ctx, WebSocketFrame msg,
                    
108                List<Object> out) throws Exception {
                    
109            // unused
                    
115        protected void encode(ChannelHandlerContext ctx, WebSocketFrame msg,
                    
116                List<Object> out) throws Exception {
                    
117            // unused
                    
123        protected void decode(ChannelHandlerContext ctx, WebSocketFrame msg,
                    
124                List<Object> out) throws Exception {
                    
125            // unused
                    
                
ShadowDocument.java https://gitlab.com/Liang1Zhang/stetho | Java | 374 lines
                    
105
                    
106    public void setElementChildren(Object element, List<Object> children) {
                    
107      // If we receive redundant information, then nothing needs to be done.
                    
224
                    
225      List<Object> children = (changesElementInfo != null)
                    
226          ? changesElementInfo.children
                    
                
ResolutionNode.java https://gitlab.com/essere.lab.public/qualitas.class-corpus | Java | 251 lines
                    
40
                    
41    private final List<Object> parents;
                    
42
                    
66        depth = parent.depth + 1;
                    
67        parents = new ArrayList<Object>();
                    
68        parents.addAll( parent.parents );
                    
                
WatchmanWatcher.java https://gitlab.com/smartether/buck | Java | 437 lines
                    
139    // Exclude any expressions added to this list.
                    
140    List<Object> excludeAnyOf = Lists.newArrayList("anyof");
                    
141
                    
205  @VisibleForTesting
                    
206  ImmutableList<Object> getWatchmanQuery(Path cellPath) {
                    
207    if (queries.containsKey(cellPath) && cursors.containsKey(cellPath)) {
                    
                
CriterionValue.java https://gitlab.com/XMCDA-library/XMCDA-java | Java | 276 lines
                    
69    })
                    
70    protected List<Object> valueOrValues;
                    
71    @XmlAttribute(name = "id")
                    
196     */
                    
197    public List<Object> getValueOrValues() {
                    
198        if (valueOrValues == null) {
                    
198        if (valueOrValues == null) {
                    
199            valueOrValues = new ArrayList<Object>();
                    
200        }
                    
                
Storage.java https://gitlab.com/briljant/briljant | Java | 171 lines
                    
35 */
                    
36public interface Storage extends DoubleSequence, ComplexSequence, IntSequence, List<Object> {
                    
37
                    
                
DuplicateEncounterTypeNameChangeSet.java https://gitlab.com/namratanehete/lh-toolkit | Java | 205 lines
                    
120					
                    
121					List<List<Object>> duplicateResult = null;
                    
122					boolean duplicateName = false;
                    
                
ConfirmacionRegistroDelegate.java https://gitlab.com/edddea/api_contratacion_arq | Java | 313 lines
                    
294	@Override
                    
295	public ArrayList<Object> getDatosRegistroOp() {
                    
296		return opDelegate.getDatosTablaConfirmacion();
                    
299	@Override
                    
300	public ArrayList<Object> getDatosRegistroExitoso() {
                    
301		return opDelegate.getDatosRegistroExitoso();
                    
                
UserProperty.java https://gitlab.com/rovero/2016mpcs53013-qydeng | Java | 496 lines
                    
291  public int hashCode() {
                    
292    List<Object> list = new ArrayList<Object>();
                    
293
                    
                
GroupManager.java https://github.com/elBukkit/PersistencePlugin.git | Java | 403 lines
                    
381                    {
                    
382                        List<Object> playerPermissions = (List<Object>)checkList;
                    
383                        
                    
                
org.apache.commons.collections.iterators.IteratorChain.cs git://github.com/gadfly/nofs.git | C# | 317 lines
                    
51        /** The chain of iterators */
                    
52        protected readonly java.util.List<Object> iteratorChain = new java.util.ArrayList<Object>();
                    
53        /** The index of the current iterator */
                    
183         */
                    
184        public java.util.List<Object> getIterators()
                    
185        {
                    
                
QueryCommand.cs https://bitbucket.org/moisesmiranda/subsonic-4.git | C# | 408 lines
                    
173        /// </summary>
                    
174        public List<object> OutputValues;
                    
175
                    
187            parameters = new QueryParameterCollection();
                    
188            OutputValues = new List<object>();
                    
189            Provider = provider;
                    
                
ComplaintsController.java https://bitbucket.org/Venkata_blickx/mycableproduction.git | Java | 270 lines
                    
177	@RequestMapping(value="/getComplaintStatusDetails",method = RequestMethod.GET, headers="Accept=application/json" )
                    
178	public @ResponseBody List<Object> getComplaintStatus(@PathVariable("client_id") String client_id)   {
                    
179
                    
180		
                    
181		List<Object> resultToAngular = new ArrayList<Object>();
                    
182		ComplaintStatusTo status = complaintService.getComplaintStatus(client_id);
                    
192		
                    
193		List<Object> result = new ArrayList<Object>();
                    
194		result.add(resultToAngular);
                    
                
BlockRPlacer.java https://gitlab.com/MineYourMind/ThaumicTinkerer | Java | 194 lines
                    
84    @Override
                    
85    public ArrayList<Object> getSpecialParameters() {
                    
86        return null;
                    
                
AbstractYamlReader.java https://gitlab.com/CORP-RESELLER/SeLion | Java | 152 lines
                    
85
                    
86    protected List<String> parseKeysForContainer(String fileName, List<Object> allElements) {
                    
87        List<String> elementKeys = new ArrayList<String>();
                    
                
ResultRowList.java https://gitlab.com/jsr38/intermine | Java | 237 lines
                    
29 */
                    
30public class ResultRowList implements List<Object>, Iterable<Object>
                    
31{
                    
147    public Iterator<Object> iterator() {
                    
148        List<Object> values = getValuesInternal();
                    
149        return values.iterator();
                    
170    private List<Object> getValuesInternal() {
                    
171        List<Object> values = new ArrayList<Object>();
                    
172        for (int i = 0; i < data.length(); i++) {
                    
222    @Override
                    
223    public List<Object> subList(int arg0, int arg1) {
                    
224        return getValuesInternal().subList(arg0, arg1);
                    
                
Array.cs https://github.com/mdavid/dlr.git | C# | 170 lines
                    
151                int dimensions = 1;
                    
152                List<object> shape = new List<object>();
                    
153                shape.Add((BigInteger)__len__());
                    
                
ObjectLiteralImpl.java https://github.com/FURCAS-dev/FURCAS.git | Java | 251 lines
                    
157        try {
                    
158            Boolean result = (Boolean) IS_EQUAL_TO_OBJECT_LITERAL__EINVOCATION_DELEGATE.dynamicInvoke(this, new BasicEList.UnmodifiableEList<Object>(1, new Object[]{o}));
                    
159            return result;
                    
                
SecurityContextToken.java https://github.com/pinopisello/SpringInAction.git | Java | 262 lines
                    
94    public SecurityContextToken(SecurityContextTokenType sTokenType, SOAPVersion sv){
                    
95        List<Object> list = sTokenType.getAny();
                    
96        for (int i = 0; i < list.size(); i++) {
                    
                
GraphDescBuilder.java https://gitlab.com/mesophoyx/jrds | Java | 171 lines
                    
151
                    
152    List<Object> enumerateTree(JrdsElement roottree) {
                    
153        if(roottree == null)
                    
158
                    
159        List<Object> pathString = new ArrayList<Object>(path.size());
                    
160        for(JrdsElement te: path) {
                    
                
URLParser.cs https://github.com/kuba85/sones.git | C# | 440 lines
                    
181        /// <returns>The methodInfo callback and the optional parameters</returns>
                    
182        public Tuple<UrlNode, List<Object>> GetCallback(String url, String webMethod = "GET")
                    
183        {
                    
205
                    
206            return GetCallback(_RootNodes[webMethod], urlParts, new List<Object>(), url, 0);
                    
207
                    
218        /// <returns></returns>
                    
219        private Tuple<UrlNode, List<Object>> GetCallback(Dictionary<String, UrlNode> urlNodes, IEnumerable<String> urlParts, List<Object> parameters, String url, Int32 posInUrl)
                    
220        {
                    
252                    posInUrl = url.Length;
                    
253                    return new Tuple<UrlNode, List<object>>(curUrlNode, parameters);
                    
254                }
                    
290                // we have some more childs defined
                    
291                Tuple<UrlNode, List<object>> retval = null;
                    
292                var newParams = new List<Object>();
                    
                
ReplayingDecoderTest.java https://bitbucket.org/htdzzc/netty.git | Java | 316 lines
                    
69        @Override
                    
70        protected void decode(ChannelHandlerContext ctx, ByteBuf in, List<Object> out) {
                    
71            ByteBuf msg = in.readBytes(in.bytesBefore((byte) '\n'));
                    
143            @Override
                    
144            protected void decode(ChannelHandlerContext ctx, ByteBuf in, List<Object> out) throws Exception {
                    
145                assertFalse(removed);
                    
165            @Override
                    
166            protected void decode(ChannelHandlerContext ctx, ByteBuf in, List<Object> out) throws Exception {
                    
167                assertFalse(removed);
                    
191            @Override
                    
192            protected void decode(ChannelHandlerContext ctx, ByteBuf in, List<Object> out) throws Exception {
                    
193                assertFalse(removed);
                    
216            @Override
                    
217            protected void decode(ChannelHandlerContext ctx, ByteBuf in, List<Object> out) throws Exception {
                    
218                int readable = in.readableBytes();
                    
                
Stringify.java https://gitlab.com/github-cloud-corp/poll-mailbox-trigger-plugin | Java | 405 lines
                    
218        }
                    
219        List<Object> list = new ArrayList<Object>();
                    
220        while (allHeaders.hasMoreElements()) {
                    
359        }
                    
360        List<Object> tmp = new ArrayList<Object>();
                    
361        tmp.addAll(Arrays.asList(flags.getSystemFlags()));
                    
                
Pcl.Dynamic.cs https://github.com/sidecut/ServiceStack.git | C# | 188 lines
                    
59                {
                    
60                    container[mapKey] = DeserializeList<List<object>, TSerializer>.Parse(elementValue);
                    
61                }
                    
                
FetchLookupFieldsPhaseTests.java https://github.com/elasticsearch/elasticsearch.git | Java | 209 lines
                    
82                    final TermQueryBuilder query = (TermQueryBuilder) r.source().query();
                    
83                    final Map<String, List<Object>> fields = switch (query.value().toString()) {
                    
84                        case "term_1" -> Map.of("field_a", List.of("a1", "a2"), "field_b", List.of("b2"));
                    
                
InputListModel.java git://github.com/bcdev/beam.git | Java | 179 lines
                    
36
                    
37    private final List<Object> list = new ArrayList<>();
                    
38    private List<Product> sourceProducts = new ArrayList<>();
                    
96    void removeElementsAt(int[] selectedIndices) {
                    
97        List<Object> toRemove = new ArrayList<>();
                    
98        int startIndex = Integer.MAX_VALUE;
                    
                
EditarCajero.java https://gitlab.com/victorprens/SADIN | Java | 308 lines
                    
25    Coordinador coordinador;
                    
26    List<Object> campos;
                    
27    List<Object> botones;
                    
                
ListUtils.java https://bitbucket.org/maxgoebel/tableannotator.git | Java | 237 lines
                    
49	public static void unique (Collection<?> list) {
                    
50		Collection<Object> copyList = new LinkedList<Object> ();
                    
51		Iterator<?> it = list.iterator();
                    
89	public static List<Object> toList(Object[] objs) {
                    
90		List<Object> l = new LinkedList<Object>();
                    
91		for (int i=0; i<objs.length; i++) {
                    
                
NotificationHistoryResponse.java http://grails-google-checkout.googlecode.com/svn/trunk/ | Java | 339 lines
                    
289        })
                    
290        protected List<Object> newOrderNotificationOrOrderStateChangeNotificationOrChargeAmountNotification;
                    
291
                    
319         */
                    
320        public List<Object> getNewOrderNotificationOrOrderStateChangeNotificationOrChargeAmountNotification() {
                    
321            if (newOrderNotificationOrOrderStateChangeNotificationOrChargeAmountNotification == null) {
                    
321            if (newOrderNotificationOrOrderStateChangeNotificationOrChargeAmountNotification == null) {
                    
322                newOrderNotificationOrOrderStateChangeNotificationOrChargeAmountNotification = new ArrayList<Object>();
                    
323            }
                    
                
SessionUtils.java https://gitlab.com/essere.lab.public/qualitas.class-corpus | Java | 264 lines
                    
111            {
                    
112                final List<Object> tapestryArray = new ArrayList<Object>();
                    
113                for (Enumeration<String> enumeration = in_session.getAttributeNames(); enumeration.hasMoreElements();) {
                    
145            {
                    
146                final List<Object> localeArray = new ArrayList<Object>();
                    
147                for (Enumeration<String> enumeration = in_session.getAttributeNames(); enumeration.hasMoreElements();) {
                    
209            {
                    
210                final List<Object> principalArray = new ArrayList<Object>();
                    
211                for (Enumeration<String> enumeration = httpSession.getAttributeNames(); enumeration.hasMoreElements();) {
                    
                
NettyHttpHelper.java https://gitlab.com/matticala/apache-camel | Java | 295 lines
                    
85            Object existing = headers.get(key);
                    
86            List<Object> list;
                    
87            if (existing instanceof List) {
                    
87            if (existing instanceof List) {
                    
88                list = (List<Object>) existing;
                    
89            } else {
                    
                
ServicioTestimonio.cs https://gitlab.com/oscarsalazarsevilla/ITELCA | C# | 194 lines
                    
50
                    
51        public List<object> Eliminar(decimal testimonio)
                    
52        {
                    
52        {
                    
53            List<object> lista = new List<object>();
                    
54            try
                    
                
Constraints.java https://gitlab.com/KiaraGrouwstra/playframework | Java | 511 lines
                    
52    public static List<Tuple<String,List<Object>>> displayableConstraint(Set<ConstraintDescriptor<?>> constraints) {
                    
53        List<Tuple<String,List<Object>>> displayable = new ArrayList<Tuple<String,List<Object>>>();
                    
54        for(ConstraintDescriptor<?> c: constraints) {
                    
58                String name = d.name();
                    
59                List<Object> attributes = new ArrayList<Object>();
                    
60                Map<String,Object> annotationAttributes = c.getAttributes();
                    
                
AbstractLatLonBox.java http://javaapiforkml.googlecode.com/svn/trunk/ | Java | 479 lines
                    
98    @XmlSchemaType(name = "anySimpleType")
                    
99    protected List<Object> abstractLatLonBoxSimpleExtension;
                    
100    /**
                    
224     */
                    
225    public List<Object> getAbstractLatLonBoxSimpleExtension() {
                    
226        if (abstractLatLonBoxSimpleExtension == null) {
                    
226        if (abstractLatLonBoxSimpleExtension == null) {
                    
227            abstractLatLonBoxSimpleExtension = new ArrayList<Object>();
                    
228        }
                    
313     */
                    
314    public void setAbstractLatLonBoxSimpleExtension(final List<Object> abstractLatLonBoxSimpleExtension) {
                    
315        this.abstractLatLonBoxSimpleExtension = abstractLatLonBoxSimpleExtension;
                    
358    @Override
                    
359    public void setObjectSimpleExtension(final List<Object> objectSimpleExtension) {
                    
360        super.setObjectSimpleExtension(objectSimpleExtension);
                    
                
SelectorBasedResponseHandler.java git://github.com/JetBrains/intellij-community.git | Java | 269 lines
                    
164    }
                    
165    List<Object> tasks = selectTasksList(response, max);
                    
166    LOG.debug(String.format("Total %d tasks extracted from response", tasks.size()));
                    
230  @NotNull
                    
231  protected abstract List<Object> selectTasksList(@NotNull String response, int max) throws Exception;
                    
232
                    
                
CollectionSerialization.cs https://github.com/skolima/mono.git | C# | 460 lines
                    
242
                    
243			Assert.That (Serialize<IList<object>> (list),
                    
244			             InstanceOf (typeof (InvalidCastException)), "#4");
                    
                
README.md https://gitlab.com/learn-co-curriculum/cs-application-crawling-lab | Markdown | 307 lines
                    
63```java
                    
64public List<Object> pushTermCounterToRedis(TermCounter tc) {
                    
65    Transaction t = jedis.multi();
                    
79    }
                    
80    List<Object> res = t.exec();
                    
81    return res;
                    
                
MapJoinDoubleKeys.java https://github.com/amorton/hive.git | Java | 184 lines
                    
102
                    
103      ArrayList<Object> list = (ArrayList<Object>) ObjectInspectorUtils.copyToStandardObject(ctx
                    
104          .getSerDe().deserialize(val), ctx.getSerDe().getObjectInspector(),
                    
128
                    
129      ArrayList<Object> list = MapJoinMetaData.getList();
                    
130      list.add(obj1);
                    
                
MantenimientoAlertasDelegate.java https://gitlab.com/edddea/api_contratacion_arq | Java | 440 lines
                    
222	public ArrayList<Object> getDatosTablaConfirmacion() {
                    
223		final ArrayList<Object> lista = new ArrayList<Object>();
                    
224
                    
224
                    
225		ArrayList<Object> registros = new ArrayList<Object>();
                    
226		registros.add("Operación");
                    
235
                    
236		registros = new ArrayList<Object>();
                    
237		registros.add("Número Celular");
                    
257	public ArrayList<Object> getDatosTablaResultados() {
                    
258		final ArrayList<Object> datosResultados = new ArrayList<Object>();
                    
259
                    
259
                    
260		ArrayList<Object> registros = new ArrayList<Object>();
                    
261		registros.add("Operación");
                    
                
PluginPropertiesConfigurationLayout.java https://gitlab.com/4615833/liferay-ide | Java | 321 lines
                    
246
                    
247            List<Object> keyList = Arrays.asList( getKeys().toArray() );
                    
248
                    
                
GotoTargetHandler.java git://github.com/JetBrains/intellij-community.git | Java | 376 lines
                    
114
                    
115    List<Object> allElements = new ArrayList<>(targets.length + additionalActions.size());
                    
116    Collections.addAll(allElements, targets);
                    
                
TestDocumentObjectBinder.java https://github.com/lucidimagination/lucene-solr.git | Java | 260 lines
                    
45    XMLResponseParser parser = new XMLResponseParser();
                    
46    NamedList<Object> nl = parser.processResponse(new StringReader(xml));
                    
47    QueryResponse res = new QueryResponse(nl, null);
                    
88    XMLResponseParser parser = new XMLResponseParser();
                    
89    NamedList<Object> nl = parser.processResponse(new StringReader(xml));
                    
90    QueryResponse res = new QueryResponse(nl, null);
                    
                
ServicioFeriado.cs https://gitlab.com/oscarsalazarsevilla/ITELCA | C# | 208 lines
                    
63
                    
64        public List<object> Eliminar(decimal id)
                    
65        {
                    
65        {
                    
66            List<object> lista = new List<object>();
                    
67            try
                    
                
EjbRelation.java https://github.com/stratwine/openejb.git | Java | 120 lines
                    
73    })
                    
74    protected List<Object> content;
                    
75
                    
112     */
                    
113    public List<Object> getContent() {
                    
114        if (content == null) {
                    
114        if (content == null) {
                    
115            content = new ArrayList<Object>();
                    
116        }
                    
                
TextProviderSupport.java https://gitlab.com/essere.lab.public/qualitas.class-corpus | Java | 327 lines
                    
148    public String getText(String key, String defaultValue, String arg) {
                    
149        List<Object> args = new ArrayList<Object>();
                    
150        args.add(arg);
                    
165     */
                    
166    public String getText(String key, List<Object> args) {
                    
167        return getText(key, key, args);
                    
198     */
                    
199    public String getText(String key, String defaultValue, List<Object> args) {
                    
200        Object[] argsArray = ((args != null && !args.equals(Collections.emptyList())) ? args.toArray() : null);
                    
240     */
                    
241    public String getText(String key, String defaultValue, List<Object> args, ValueStack stack) {
                    
242        Object[] argsArray = ((args != null) ? args.toArray() : null);
                    
                
OioSctpServerChannel.java https://gitlab.com/taichu/netty | Java | 308 lines
                    
181    @Override
                    
182    protected int doReadMessages(List<Object> buf) throws Exception {
                    
183        if (!isActive()) {
                    
                
ObjectMapperTest.java https://gitlab.com/Liang1Zhang/stetho | Java | 300 lines
                    
130  public void testSerializeMultitypedList() throws JSONException {
                    
131    List<Object> list = new ArrayList<Object>();
                    
132    list.add("foo");
                    
164    ArrayOfPrimitivesContainer container = new ArrayOfPrimitivesContainer();
                    
165    ArrayList<Object> primitives = container.primitives;
                    
166    primitives.add(Long.MIN_VALUE);
                    
177    JSONArray array = obj.getJSONArray("primitives");
                    
178    ArrayList<Object> actual = new ArrayList<>();
                    
179    for (int i = 0, N = array.length(); i < N; i++) {
                    
186    @JsonProperty
                    
187    public final ArrayList<Object> primitives = new ArrayList<>();
                    
188  }
                    
292    @JsonProperty
                    
293    public List<Object> multitypedList;
                    
294  }
                    
                
Library.java https://gitlab.com/jakenherman7/sql-project | Java | 725 lines
                    
11{
                    
12	private ArrayList<Object> bookList = new ArrayList<Object>();         // to store the entire library book list
                    
13
                    
13
                    
14	private ArrayList<Object>myList = new ArrayList<Object>();           // to store a user's specific book list
                    
15	private int location =-1;                                            // used in LookUp() default set to -1
                    
17	private ArrayList<User>users = new ArrayList<User>();               
                    
18	private ArrayList<Object>tempMyList = new ArrayList<Object>();
                    
19	private User tempUser;
                    
                
RulesItemManager.java https://github.com/bibulous/SkyrackJbill2.2.git | Java | 299 lines
                    
71        session = knowledgeBase.newStatefulKnowledgeSession();
                    
72        List<Object> rulesMemoryContext = new ArrayList<Object>();
                    
73        rulesMemoryContext.add(helperOrder);
                    
                
ImpalaLinkedService.java git://github.com/WindowsAzure/azure-sdk-for-java.git | Java | 355 lines
                    
61    @Override
                    
62    public ImpalaLinkedService withAnnotations(List<Object> annotations) {
                    
63        super.withAnnotations(annotations);
                    
                
LazyObjectInspectorFactory.java https://github.com/amorton/hive.git | Java | 141 lines
                    
48      byte escapeChar) {
                    
49    ArrayList<Object> signature = new ArrayList<Object>();
                    
50    signature.add(structFieldNames);
                    
67
                    
68  static HashMap<ArrayList<Object>, LazyListObjectInspector> cachedLazySimpleListObjectInspector = new HashMap<ArrayList<Object>, LazyListObjectInspector>();
                    
69
                    
72      Text nullSequence, boolean escaped, byte escapeChar) {
                    
73    ArrayList<Object> signature = new ArrayList<Object>();
                    
74    signature.add(listElementObjectInspector);
                    
88
                    
89  static HashMap<ArrayList<Object>, LazyMapObjectInspector> cachedLazySimpleMapObjectInspector = new HashMap<ArrayList<Object>, LazyMapObjectInspector>();
                    
90
                    
95      byte escapeChar) {
                    
96    ArrayList<Object> signature = new ArrayList<Object>();
                    
97    signature.add(mapKeyObjectInspector);
                    
                
CreateSnapshotCmd.java https://github.com/apache/solr.git | Java | 229 lines
                    
64  @Override
                    
65  public void call(ClusterState state, ZkNodeProps message, NamedList<Object> results)
                    
66      throws Exception {
                    
98
                    
99    NamedList<Object> shardRequestResults = new NamedList<>();
                    
100    Map<String, Slice> shardByCoreName = new HashMap<>();
                    
143        @SuppressWarnings("unchecked")
                    
144        NamedList<Object> resp = (NamedList<Object>) success.getVal(i);
                    
145
                    
                
DbSessionImplTest.java https://github.com/SonarSource/sonarqube.git | Java | 266 lines
                    
59    Object randomObject = new Object();
                    
60    List<Object> randomList = new ArrayList<>();
                    
61    Map<Object, Object> randomMap = new HashMap<>();
                    
                
DataSetTestEndpoint.java https://github.com/gnodet/camel.git | Java | 161 lines
                    
77
                    
78        final List<Object> expectedBodies = new ArrayList<>();
                    
79        EndpointHelper.pollEndpoint(expectedMessageEndpoint, new Processor() {
                    
                
CommonServiceImpl.java https://gitlab.com/spiderworts/ab_weixin_cms | Java | 459 lines
                    
380	
                    
381	public Integer executeSql(String sql, List<Object> param) {
                    
382		return commonDao.executeSql(sql, param);
                    
                
MultiAuthRuleBasedAuthorizationPlugin.java https://github.com/apache/solr.git | Java | 164 lines
                    
62
                    
63    List<Object> schemeList = (List<Object>) o;
                    
64    if (schemeList.size() < 2) {
                    
                
AmazonRedshiftLinkedService.java git://github.com/WindowsAzure/azure-sdk-for-java.git | Java | 232 lines
                    
59    @Override
                    
60    public AmazonRedshiftLinkedService withAnnotations(List<Object> annotations) {
                    
61        super.withAnnotations(annotations);
                    
                
 

Source

Language