query_id
stringlengths
32
32
query
stringlengths
7
129k
positive_passages
listlengths
1
1
negative_passages
listlengths
88
101
9dc3bf45475c465f7c74737c1ec3f627
MassPrintBean Initializes the MassPrintBean
[ { "docid": "d7e1a3569e4f1f307d2ad92516b48488", "score": "0.86185366", "text": "public MassPrintBean() {\n super();\n }", "title": "" } ]
[ { "docid": "1f14c93d17299039741c063c89c0c769", "score": "0.6777201", "text": "public PdfPrint() {\n initComponents();\n }", "title": "" }, { "docid": "f302710e01bc9d8ebd5a2d7c06382189", "score": "0.6398709", "text": "private PdfPrinter(){\n \n }", "title": "" ...
9b895c9381e7956bbb4c8ada1b390d9a
Add a UniChannel to the channels list.
[ { "docid": "4ec59b69844a8f0b7c21e2b41d28a1d9", "score": "0.7663796", "text": "protected final void addChannel(UniChannel channel)\n\t{\n\t\tchannels.add(channel);\n\t}", "title": "" } ]
[ { "docid": "b11a7e6b0bfb409420e6fb8eb77d7081", "score": "0.7036361", "text": "@Override\r\n\tpublic void addChannel(final Channel c)\r\n\t{\n\t\tchannels.add(c);\r\n\t}", "title": "" }, { "docid": "6b34c2049142410f7f69b9b01644f2de", "score": "0.65926266", "text": "public void addChan...
ba77ce7ac9567afb37a587072331f337
f0 > Label() f1 > ":"
[ { "docid": "1725d483611a23d32ad284e9cdd3849b", "score": "0.5153755", "text": "public void visit(LabelWithColon n, A argu);", "title": "" } ]
[ { "docid": "d6e8bdd99650b2622a258c3426647529", "score": "0.638295", "text": "public String visit(Label n) {\n String _ret=\"\";\n String s = n.f0.accept(this);\n _ret += \" \" + s;\n _ret += \" \" + n.f1.accept(this);\n lastLabel = s;\n return _ret;\n }", "title": "" ...
08984967fbc59665ec810e1e7bbfc2cb
/ renamed from: e
[ { "docid": "5366b0751f23e5adf2782210661fba98", "score": "0.0", "text": "protected /* synthetic */ Object mo1083e() {\n return m6943c();\n }", "title": "" } ]
[ { "docid": "273a357f66bdd181f4df7f7fd7ab26ae", "score": "0.72328156", "text": "@Override\n\tpublic void e() {\n\n\t}", "title": "" }, { "docid": "3ca752f7b33a4f7bda8fdf76f89fb905", "score": "0.66032064", "text": "public void e() {\n }", "title": "" }, { "docid": "5d693...
8c00a73fedf2717f137aa7e2f7172c8f
import com.tangosol.run.component.EventDeathException; not enough information here to determine why the receive failed
[ { "docid": "69e853933e3155ef0073195838ded2c6", "score": "0.6314603", "text": "public void onReceiveException(Exception e)\n {\n throw new EventDeathException(e.toString());\n }", "title": "" } ]
[ { "docid": "800f584ca76eee038413ef34b7b58175", "score": "0.6328294", "text": "@Override\r\n public void onReceive(Object obj) throws Exception\r\n {\n\r\n }", "title": "" }, { "docid": "5606e5afe8804f772cbcaa8245d0d37e", "score": "0.6079532", "text": "@Override\n...
871affa61499442f6f57fe0e7b59e6f9
return all tasks of process
[ { "docid": "b741b0a4ce853fd82e17c1f7bede1b1a", "score": "0.76153183", "text": "String getAllTasks(String processKeyInfo) ;", "title": "" } ]
[ { "docid": "bea3061bec3614f0cb8b37252b9a454f", "score": "0.754585", "text": "Collection<ProcessExecutor> getAllProcesses();", "title": "" }, { "docid": "65bcd1025df622d36c1210e651e821e2", "score": "0.71187186", "text": "@Override\n public Task[] getAllTasks() {\n return thi...
fddb423ea7fc5ee33a00b0ae6ae46035
Called when the player loads a saved game.
[ { "docid": "b36d891141a0f01fff9e8c07f7727633", "score": "0.0", "text": "@Override\n public void onGameLoad(boolean newGame) {\n super.onGameLoad(newGame);\n\n BarEventManager barEventManager = BarEventManager.getInstance();\n\n // If the prerequisites for the quest have been met ...
[ { "docid": "a18225c7a1e4e993873c5ab307298aab", "score": "0.8262674", "text": "private void loadSavedGame() {\n\t\t// new GameScreen(Level.load());\n\t}", "title": "" }, { "docid": "d85c526813ef4a89aa204297a8d823af", "score": "0.7957946", "text": "public void loadSavedGame() {\r\n ...
bec30d61ab26914ccbe9c2241ddc3b99
Require that the directory we'll be writing into exists. If not, stop the thread, the configuration needs fixing.
[ { "docid": "434459d309ef2e9cddcc113fcf7ee20b", "score": "0.0", "text": "protected static void require(File dataDir) throws Exception {\r\n require(dataDir,\"h3a\");\r\n }", "title": "" } ]
[ { "docid": "d9105ec7dcc3548096e2dfc6435aff4b", "score": "0.58376515", "text": "private static void checkArgsAndSetUp()\n {{\n File outDir= new File( arg_outDirname );\n\n if ( outDir.exists() ) {\n\t if ( !outDir.isDirectory() ) {\n\t System.err.println( PROGRAM_NAME+ \n\t\t\t\t\": output...
d3a2675a46845fdc2982941dbf952c9c
.thenCompose() is used to chain one future dependent on the other .thenCompose() should be used when using the result of first CompletableFuture to convert to another CompletableFuture. e.g. when using thenApply() it should return a CompletableFuture> and flatMap to CompletableFuture
[ { "docid": "0141541e47bd1b5d2524024b003cf73b", "score": "0.58549243", "text": "@Test\n public void testThenCompose() throws ExecutionException, InterruptedException {\n CompletableFuture<Optional<Map.Entry<String, String>>> future = CompletableFuture.supplyAsync(() -> System.getenv().entrySet(), thi...
[ { "docid": "99d5f8dfb9d753961a5e5251b43a151b", "score": "0.7016218", "text": "@SuppressWarnings(\"unchecked\")\n\tpublic static <T1,T2,R> R compose (FutureDecorator<? extends T1>future1, \n\t\t\tFutureDecorator<? extends T2> future2, BiFunction<? super T1, ? super T2, ? extends R> composer) throws TaskE...
c3c10a020d15a116fe767d16facc67f8
Crea un tag de tipo "td".
[ { "docid": "02b27a71eb60df5ca83cc4523d0760fd", "score": "0.7747225", "text": "public static Tag getTagTd() {\n Tag tag = new Tag(\"td\");\n return tag;\n }", "title": "" } ]
[ { "docid": "c676382e721795188a2bf80e59f652ba", "score": "0.7685283", "text": "default TSelf td() {\n return tag(\"td\");\n }", "title": "" }, { "docid": "914f330a181b1d549d97a4790c2ef3e9", "score": "0.75646466", "text": "private HTMLElement newtd(String contenido) {\n/* 598...
c42666ad8c7ea898b3de425bd2217c37
Returns the current item without changing the position.
[ { "docid": "cbc0f89f9cc440e9910391a9b9c802a1", "score": "0.7320806", "text": "public E current() {\r\n\t\treturn history.get(position);\r\n\t}", "title": "" } ]
[ { "docid": "66a7c6b9f55901b0d9c50c6b638a30f7", "score": "0.8024142", "text": "public Item getCurrentItem(){\n\t\treturn currentItem;\n\t}", "title": "" }, { "docid": "8a17f50d66ed9da9c28bc2c5e844e1c1", "score": "0.77120733", "text": "int getCurrentItem();", "title": "" }, { ...
1e48cdfe1fdcc00d8a48b8b47cae6102
This is a parameterized constructor with two parameters
[ { "docid": "1ba72dc3a50b3d239e3c599ed291fb2b", "score": "0.0", "text": "public CRadio(Icon icon, boolean selected) {\r\n\t\tsuper(icon, selected);\r\n\r\n\t}", "title": "" } ]
[ { "docid": "46ec13cde5fd169800719601d11b0b40", "score": "0.7121525", "text": "thisConstructor (){\n\t\t\n\t\tthis(\"Hello\");\t\t// calling parameterized constructor\t\n\t}", "title": "" }, { "docid": "97f4286e7ba064060f0d5bfed9cb6d24", "score": "0.70790064", "text": "public Construc...
56733c4210f6e21e76cfb2cc1494f656
Find the _Fields constant that matches fieldId, throwing an exception if it is not found.
[ { "docid": "a4d5d88614df739c818695017fb05ade", "score": "0.0", "text": "public static _Fields findByThriftIdOrThrow(int fieldId) {\n _Fields fields = findByThriftId(fieldId);\n if (fields == null) throw new java.lang.IllegalArgumentException(\"Field \" + fieldId + \" doesn't exist!\");\n ...
[ { "docid": "0f0d2aece5032ba23ae36e49e573d8ed", "score": "0.7671767", "text": "@org.apache.thrift.annotation.Nullable\n public static _Fields findByThriftId(int fieldId) {\n switch(fieldId) {\n case 1: // NEEDS_MORE_INPUT\n return NEEDS_MORE_INPUT;\n case 2: // EX...
ced32ce4b2f31461da091d9a97fe4f0d
Path from Dinning Room starting position to the Library
[ { "docid": "1439cfd1e883f43f6260078c4455bcc7", "score": "0.0", "text": "@Test\n public void testFindValidPath_2() throws Throwable {\n List<Position> path = findPath(new Position(7, 12), new Position(17, 16));\n assertEquals(14, path.size());\n }", "title": "" } ]
[ { "docid": "d9af9545852919cabe67dabd9155431c", "score": "0.6385122", "text": "private String pathFinder()\r\n\t\t{\r\n\t\t\tString directions = \"\";\r\n\t\t\tif(currentRoom != null)\r\n\t\t\t{\r\n\t\t\t\tif(currentRoom.getRoomExits(0) != null)\r\n\t\t\t\t{\r\n\t\t\t\t\tdirections += wrapIt(\"To the nor...
dc0a8b98476d05e38cc3923d93f0a758
Builds a new Direction of flow layer.
[ { "docid": "223d04bf629a2274e540b1ae0b817817", "score": "0.6924462", "text": "public DirectionOfFlowLayer() {\n super(DirectionOfFlowGuiConfig.getInstance().getLayerName(), new DirectionOfFlowPaintHandler());\n }", "title": "" } ]
[ { "docid": "97716ce7c597e42f554b18aaded71c0f", "score": "0.6283388", "text": "protected Direction makeDirection(KeyFrame start, KeyFrame end) {\n return new Direction(start.getPosition(), end.getPosition(),\n start.getWidth(), end.getWidth(),\n start.getHeight(), end.getHeight()...
d00ae136a605e12e7b8e25b66a39f293
Specify the number of segments to write to a subdirectory before starting a new one. You must also set Directory structure to Subdirectory per stream for this setting to have an effect.
[ { "docid": "7dc93f7d63f2f6ceaa5dc0df98814afe", "score": "0.45625052", "text": "public HlsGroupSettings withSegmentsPerSubdirectory(Integer segmentsPerSubdirectory) {\n setSegmentsPerSubdirectory(segmentsPerSubdirectory);\n return this;\n }", "title": "" } ]
[ { "docid": "bc49a7a4bdc5430a97957a1109ef3ce6", "score": "0.643134", "text": "public void setSegmentsPerSubdirectory(Integer segmentsPerSubdirectory) {\n this.segmentsPerSubdirectory = segmentsPerSubdirectory;\n }", "title": "" }, { "docid": "dc9534749fccdd5bff98e09d0f9f2197", "...
5249c5da6a6237c03566560434604bc8
/ Blueprint for Operation. Sub classes must override the methods below.
[ { "docid": "845f194513ac683c099a84126bd9fd2c", "score": "0.0", "text": "public abstract Error errorCheck(Model m, String command);", "title": "" } ]
[ { "docid": "38d1825af3341c7fbe919892d1c07c48", "score": "0.7211647", "text": "Operation createOperation();", "title": "" }, { "docid": "38d1825af3341c7fbe919892d1c07c48", "score": "0.7211647", "text": "Operation createOperation();", "title": "" }, { "docid": "d61298d2e422...
81306be45119cdf5d31079fed16847f0
Returns value of this digest as base64 string.
[ { "docid": "8dc219fdced3f6637bf1ba0bff2b4fb2", "score": "0.855958", "text": "public String base64() {\n\t\treturn new String(Bindings.rhash_print_bytes(digest_ptr, BASE64));\n\t}", "title": "" } ]
[ { "docid": "69fe9d03e0eeb48102566b6ff142402d", "score": "0.66318476", "text": "public java.lang.String getDigest() {\n java.lang.Object ref = digest_;\n if (!(ref instanceof java.lang.String)) {\n java.lang.String s = ((com.google.protobuf.ByteString) ref)\n .toStringUtf8();\...
9c1a6054cf36a9b65ad24c58d353b41d
return the month of a Date
[ { "docid": "90de3db6fb8471dcc9c3db983fe5628f", "score": "0.5979914", "text": "public String getMonth(){\n return month;\n}", "title": "" } ]
[ { "docid": "e093f2620394cb8c2b55f323618f867e", "score": "0.8052398", "text": "Month getMonth();", "title": "" }, { "docid": "79d1f19090b428ac8c0557e1061b4d98", "score": "0.8022851", "text": "long getMonth();", "title": "" }, { "docid": "52c4b7f67b0c76ab02dbb067ffeaf795", ...
b7fa0949dec257376560fcb571890ec5
Default implementations. Subclasses should feel free to override if it's more efficient to do so.
[ { "docid": "2d7eb1f09ed76130572041c9aaa774db", "score": "0.0", "text": "public Entity getEntity(@Nonnull final Urn urn, @Nonnull final Set<String> aspectNames) {\n return getEntities(Collections.singleton(urn), aspectNames).values().stream().findFirst().orElse(null);\n }", "title": "" } ]
[ { "docid": "0056b38abf02cf94e7a1afab1755d909", "score": "0.63239783", "text": "@Override\r\n\tpublic void defendre() {\n\t\t\r\n\t}", "title": "" }, { "docid": "838a915c9ea69d56cc37df198cff9cb2", "score": "0.6323454", "text": "@Override\n\t\t\t\tpublic void pintar() {\n\t\t\t\t\t\n\t...
489f150bdc7cf22927bf05bc034e073e
$ANTLR end "whiles" $ANTLR start "fors" /home/miguel/Documentos/ACS/ATS/Code/Gramatica_MSP/lingi.g:77:1: fors : FOR '(' forsexpr ';' expr ';' forsexpr ')' bloco ;
[ { "docid": "cd46ea5e55b69b9e371166f953449ebb", "score": "0.7910352", "text": "public final void fors() throws RecognitionException {\n try { dbg.enterRule(getGrammarFileName(), \"fors\");\n if ( getRuleLevel()==0 ) {dbg.commence();}\n incRuleLevel();\n dbg.location(77, 0);\n\...
[ { "docid": "5f065ad93c7cdc165d5bf88dcbcfa5c9", "score": "0.69499373", "text": "private void forStatement() {\r\n\t\tswitch (lookAhead.getIdentifier()) {\r\n\t\t\tcase \"mp_for\": // forStatement -> \"for\", controlVariable, \":=\", initialValue, (\"to\"|\"downto\"), finalVariable, \"do\", statement\\\r\...
d2b4d749745437f6b8ff1ae75f4a91fc
Use BrandInstSe.newBuilder() to construct.
[ { "docid": "31a664d842ce731339a8d360d43b31f8", "score": "0.72522986", "text": "private BrandInstSe(com.google.protobuf.GeneratedMessage.Builder<?> builder) {\n super(builder);\n this.unknownFields = builder.getUnknownFields();\n }", "title": "" } ]
[ { "docid": "341012ec2746baeae9daa171728b042f", "score": "0.73132443", "text": "public jd.search.request.JdSearchRequest.BrandInstSe.Builder addBrandInstSeBuilder() {\n return getBrandInstSeFieldBuilder().addBuilder(\n jd.search.request.JdSearchRequest.BrandInstSe.getDefaultInstance());...
3a8a38e088d35d792401ff11f5c939b3
Create a data transform object with given class name, method name, inputs and outputs
[ { "docid": "15ce4f2942f1946d44680a10127c5760", "score": "0.0", "text": "public InnerFormula2(FunctionInterface func, Vector ins, Vector outs) {\n\t\tsuper(func,ins,outs);\n\t}", "title": "" } ]
[ { "docid": "be66144d2f86202c222d33466d8d766c", "score": "0.6384223", "text": "public T transform(Map<String, String> data)\r\n {\r\n try {\r\n T object = _clazz.newInstance();\r\n for (Field f : _clazz.getFields()) {\r\n if (isValid(f)) {\r\n String value = data.get(getName...
cdced5c72a779c1ab376dce341a764e8
.teledon.client.Donator donator = 3;
[ { "docid": "08e4ee9d9ba31737808d747fb2277fa9", "score": "0.565057", "text": "public teledon.network.protobuffprotocol.TeledonProtobufs.DonatorOrBuilder getDonatorOrBuilder() {\n if ((payloadCase_ == 3) && (donatorBuilder_ != null)) {\n return donatorBuilder_.getMessageO...
[ { "docid": "b1ecb5c27594f9f66175eadecfae5e79", "score": "0.7225099", "text": "teledon.network.protobuffprotocol.TeledonProtobufs.Donator getDonator();", "title": "" }, { "docid": "b1ecb5c27594f9f66175eadecfae5e79", "score": "0.7225099", "text": "teledon.network.protobuffprotocol.Tele...
608f10fdf2826baeb67b3201a0cf0b96
A constructor which creates a new bracket, and gives it a char 'symbol' to store. The character is intended to be either '(' or ')', depending on which type of bracket is desired
[ { "docid": "b25be1f94337dda73eb105217b1b9295", "score": "0.82232606", "text": "public Bracket(char symbol) {\n\n this.symbol = symbol;\n\n }", "title": "" } ]
[ { "docid": "6288a2b817234c2002d0de30d5142988", "score": "0.66907525", "text": "public CurlyBracketsAction(final char c) {\n aChar = c;\n }", "title": "" }, { "docid": "f80370622157493ae5758e29482bec89", "score": "0.6559771", "text": "public MBracket createTwinBracket() {\n ...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "b8398022dc68e696a4bae20d929f9da4", "score": "0.0", "text": "@Override\n\t\tpublic long getItemId(int position) {\n\t\t\treturn 0;\n\t\t}", "title": "" } ]
[ { "docid": "da34ed11fe7c5649b3cd0bdad6dca5df", "score": "0.7115143", "text": "@Override\n\t\tpublic void 비행() {\n\t\t\t\n\t\t}", "title": "" }, { "docid": "99cfe01c5035e9a9ca6dafada0e4a005", "score": "0.67343336", "text": "@Override\r\n\tpublic void caminar() {\r\n\t\t// TODO Auto-g...
996289471bca5e3d30690c4c5d973c4a
$ANTLR end "ruleSwitchCase" $ANTLR start "entryRuleSwitchDefaultClause" ../org.eclipse.papyrus.alf.ui/srcgen/org/eclipse/papyrus/alf/ui/contentassist/antlr/internal/InternalAlf.g:5490:1: entryRuleSwitchDefaultClause : ruleSwitchDefaultClause EOF ;
[ { "docid": "0e179e3b359c533532afc1486f27092b", "score": "0.7982566", "text": "public final void entryRuleSwitchDefaultClause() throws RecognitionException {\r\n try {\r\n // ../org.eclipse.papyrus.alf.ui/src-gen/org/eclipse/papyrus/alf/ui/contentassist/antlr/internal/InternalAlf.g:5491...
[ { "docid": "27740d3e760fbbfc4894060b00c141be", "score": "0.75648916", "text": "public final void ruleSwitchDefaultClause() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../org.eclipse.papyrus.alf.ui/src-gen/org/eclips...
3221e037f141c06ccb643761ef9375a2
It rounds 'x' with 'numDecimals' exact decimals
[ { "docid": "3385b7fe849cf5a8ba7f86fda04f5c01", "score": "0.79130346", "text": "public static double roundWithPrecision(double x, int numDecimals) {\n\n\t\tdouble xRounded;\n\t\tdouble scale;\n\n\t\tscale = Math.pow(10, numDecimals);\n\t\txRounded = Math.round(x * scale);\n\t\txRounded = xRounded / scale...
[ { "docid": "538d5c943910d37c19405177c11d781f", "score": "0.69335485", "text": "int decimalPlaces(double x) {\n return -(int) Math.floor(Math.log(x) / Math.log(10));\n }", "title": "" }, { "docid": "cdcc675999450df2970915448f1c84f5", "score": "0.6764507", "text": "private vo...
107f214ed604a4520d148cbcd192e930
Sets the accountingLineForValidation attribute value.
[ { "docid": "c660caf3f2c312592eafdd8d51282fe3", "score": "0.8236275", "text": "public void setAccountingLineForValidation(BudgetAdjustmentAccountingLine accountingLineForValidation) {\n this.accountingLineForValidation = accountingLineForValidation;\n }", "title": "" } ]
[ { "docid": "c072bae195763ab8d1be068fdb62d261", "score": "0.83909434", "text": "public void setAccountingLineForValidation(AccountingLine accountingLineForValidation) {\n this.accountingLineForValidation = accountingLineForValidation;\n }", "title": "" }, { "docid": "fdb6faaaec9167f...
5f377d154abfa41b673000ae0a44fb40
Creates the pagination with the lines defined
[ { "docid": "42ec2618f8cd9e41646f634bd5b749c1", "score": "0.72684485", "text": "public Pagination(List<? extends Line> lines){\n\t\tthis.lines = lines;\n\t}", "title": "" } ]
[ { "docid": "5a556126522d57156d0bd5685308efdf", "score": "0.6456656", "text": "void setLinesPerPage(short linesPerPage);", "title": "" }, { "docid": "6fec66e42716344ec2a7c14e7bd015a9", "score": "0.6306578", "text": "public abstract void setHorizontalPagination(int mode);", "title"...
0c27412e6f090e0041a461eb922dddff
method to hit ufo
[ { "docid": "22a1c31babb20aec220e0f5e38e6a5cb", "score": "0.6527994", "text": "public void hitUFO() {\r\n\t\tufo.hitUFO(totalDamage);\r\n\t}", "title": "" } ]
[ { "docid": "c2af98cdc29d9d7534a264767a71a042", "score": "0.54301447", "text": "public void hit(){\n }", "title": "" }, { "docid": "724bf89e9bb180349be43de3d614fc00", "score": "0.5334964", "text": "@Override\r\n\t\t\tpublic void hitTarget() {\n\t\t\t}", "title": "" }, { ...
31286feefac9a43742cf3c3c7adf16f5
end empty argument constructor / preferred constructor sets instance variables to their values
[ { "docid": "eed42fdc61d85da0330cabb9038245ef", "score": "0.0", "text": "public SingleFamilyHome(String projectName, String completeAddress, double totalSquareFeet, String occupancyGroup, String subgroup) {\n\t\tsuper();\n\t\tgarage = false;\n\t}", "title": "" } ]
[ { "docid": "2591c6e76daaf5a1f1a70ad88720d0f3", "score": "0.6625066", "text": "ConstructorOverloding(){\n\t\tSystem.out.println(\"i am non-argument constructor\");\n\t}", "title": "" }, { "docid": "906a0a0e5dd298a20538623c0ed424e5", "score": "0.6593631", "text": "ConsCalling() {\n\t\t...
e4361b9d23e2b587cee30bdb11cc9347
create a new console
[ { "docid": "9d383363ea143b0cf0be320fbfbe52b8", "score": "0.0", "text": "@Test\n public void updateConsole() {\n Console console = new Console();\n console.setModel(\"Wii\");\n console.setManufacturer(\"Nitendo\");\n console.setMemory_amount(\"32GB\");\n console.setP...
[ { "docid": "9d99c21283681ed11bbd292cd1396866", "score": "0.6919087", "text": "public Object createConsole(boolean visible) {\n\t\treturn platform.createConsole(visible);\n\t}", "title": "" }, { "docid": "eb6fe8ac0c4f8d78f4d63689e39a9e51", "score": "0.66894037", "text": "private Messa...
12134d7f36715ccfb574209938959f49
return size of linked list.
[ { "docid": "7f03855f61b8b06e22552ee196b902c4", "score": "0.0", "text": "public int size() {\n return this.size;\n }", "title": "" } ]
[ { "docid": "ec12230278c342b0ab919a188c8d5ec4", "score": "0.8485846", "text": "public int getSize() {\n int size = 0;\n Node temp = head;\n while (temp != null) {\n temp = temp.next;\n size++;\n }\n return size;\n }", "title": "" }, { ...
7e4d2b78a0c193e4573cd70b477e67b0
Internal method for creating a new database checkpoint. This involves the following steps: snapshot all indices of all databases create new log file for subsequent insertions write index snapshots to new ondisk index files link new ondisk files to index structures delete any obsolete ondisk files delete any obsolete lo...
[ { "docid": "0220ba8a610bda750a5d185b62c27cd5", "score": "0.7925092", "text": "private void createCheckpoint() throws BabuDBException, InterruptedException {\n Logging.logMessage(Logging.LEVEL_INFO, Category.babudb, this, \"initiating database checkpoint...\");\n \n Collection<Databa...
[ { "docid": "5fa8623de8c1a9888f2df824cadad7ca", "score": "0.70596886", "text": "public void checkpoint() throws BabuDBException, InterruptedException {\n \n List<LSMDatabase> dbListCopy;\n \n synchronized (dbModificationLock) {\n dbListCopy = new ArrayList(databases.size());\n...
d80e4af14733e22aa399d280018bffa8
update display with Account balance
[ { "docid": "5d4060198769a6b1d65fae4296277e71", "score": "0.8163396", "text": "public void updateDisplay() {\r\n\t\t// set text in balanceTextField to formatted balance\r\n\t\tbalanceTextField.setText(moneyFormat.format(getAccount().getBalance()));\r\n\t}", "title": "" } ]
[ { "docid": "02cea961b5fe6307c41ab6eca98269c3", "score": "0.78166115", "text": "public void showBalance() {\r\n balancetf.setText(String.valueOf(getCurrent().getBalance()));\r\n }", "title": "" }, { "docid": "b74c9024be1d7130bbbcf6435c7d2b08", "score": "0.7775423", "text": "...
61d50e86887d36371ea5d67b4e9bfdfe
Tests DiagramElementUndoableActiongetRedoPresentationName() for failure. Expects UnsupportedOperationException.
[ { "docid": "e6e29ec57b8411c401129fddb0d2f01f", "score": "0.8647975", "text": "public void testGetRedoPresentationName() {\n try {\n action.getRedoPresentationName();\n fail(\"UnsupportedOperationException expected.\");\n } catch (UnsupportedOperationException e) {\n ...
[ { "docid": "68aee2bc9386b2a71410f3ad03a79ed8", "score": "0.8237243", "text": "public void testGetUndoPresentationName() {\n try {\n action.getUndoPresentationName();\n fail(\"UnsupportedOperationException expected.\");\n } catch (UnsupportedOperationException e) {\n ...
1e3c46b65d10f6bf48b3a627ae5f5582
The real constructor that supports dependency injection.
[ { "docid": "1c65205381ae4eb53e627afbe8ad677c", "score": "0.0", "text": "public PlayerGameCountsRefresher(ObjectWriter updatePlayerCountsWriter, PlayerGameCountsUpdatedReader cacheReader) {\n \tthis.updatePlayerCountsWriter = updatePlayerCountsWriter;\n \tthis.cacheReader = cacheReader;\n }", ...
[ { "docid": "3507cf7037c692c62cee81f871796c74", "score": "0.72557616", "text": "protected void constructor() {\n\t\t/* this is intentionally empty to override the parent class */\n\t}", "title": "" }, { "docid": "645c87b511e9d93f74f30d51f379d036", "score": "0.7083668", "text": "privat...
a0451cc2c312bfdb4405da031b96644a
Activate a context that this view uses. It will be tied to this view activation events and will be removed when the view is disposed. Copied from org.eclipse.ui.examples.contributions.InfoView.java
[ { "docid": "0785347a652efb3f659427cf69ee7813", "score": "0.7704816", "text": "private void activateContext(){\n\t\tIContextService contextService =\n\t\t\t(IContextService) getSite().getService(IContextService.class);\n\t\tcontextService.activateContext(Constants.VIEW_CONTEXT_ID);\n\t}", "title": ""...
[ { "docid": "632b5f5d77ceba8d894ce729e3b72ee7", "score": "0.62989414", "text": "public void activate() {\n \t\tfinal Thread activationThread = new Thread() {\n \t\t\t@Override\n \t\t\tpublic void run() {\n \t\t\t\tfinal IWorkbench wb = PlatformUI.getWorkbench();\n \t\t\t\tfinal IWorkbenchWindow window = ...
04c5bd18186cbffc0930f394e93caba6
Updates the view when the user navigates back
[ { "docid": "63f2104ffc35ce8c9356038a274381f7", "score": "0.0", "text": "private static void updateUI(List<GeoNote> geoNotes){//Sets the adapter to the current list of GeoNotes\n Log.d(TAG, \"Update with \"+ geoNotes.size());\n mAdapter = new GeoNoteAdapter(geoNotes);\n mRecyclerView...
[ { "docid": "29946e4d63ff31252d83adf5491e02c6", "score": "0.7900063", "text": "@Override\n\tpublic void back(View view) {\n\t\t\n\t}", "title": "" }, { "docid": "fb7a18f9fb6705f1bc9587a7577902be", "score": "0.7676728", "text": "@FXML\r\n void backClicked(ActionEvent event) {\r\n ...
263dcb9838302d75cdd3db372cfbdb5b
Inflate the layout for this fragment
[ { "docid": "b2ce3c2e84b120c19aa8bab0d8982eb5", "score": "0.0", "text": "@Override\r\n public View onCreateView(LayoutInflater inflater, ViewGroup container,\r\n Bundle savedInstanceState) {\n View root = inflater.inflate(R.layout.fragment_register_view, container, f...
[ { "docid": "8b5df47011cc799d795dc7120e1c0c49", "score": "0.68263656", "text": "@Override\n public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {\n return inflater.inflate(R.layout.kuliahfragisidata, container, false);\n }", "title": "" }, ...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "db56559e979cdc774a1e0937cce0fef1", "score": "0.0", "text": "@Override\r\n\t\t\tpublic void playViewClick() {\n\t\t\t\t\r\n\t\t\t}", "title": "" } ]
[ { "docid": "d7194e467f51e022c107531d8614b6a3", "score": "0.6905833", "text": "@Override\r\n\tpublic void anular() {\n\t\t\r\n\t}", "title": "" }, { "docid": "cdf542363f5b089e84183e3d9020935f", "score": "0.6697644", "text": "@Override\n\t protected void ramana() {\n\t\t\n\t}", "ti...
0a358f710f879d2f59b99eb5d7294d4c
Validar que existe proyecto Listo Validar que existe concepto Listo Validar que los atributos estan relacionados al concepto Crear instancia y asociar los atributos de instancia Validar que existe proyecto
[ { "docid": "0b0e43b1dc244cb72b11edccb475fd9f", "score": "0.6981726", "text": "public void crearElementosCargados(Proyecto proyecto, Concepto concepto, ArrayList<Instancia> listaInstancia, ArrayList<Glosario> listaGlosario){ Listo\n//\t\tValidar que existe concepto Listo\n//\t\tValidar que los atribu...
[ { "docid": "5653afd2af814aea55ddbc080ce34b43", "score": "0.60053456", "text": "@Override\n\tprotected void validar(Projeto tipo) throws RGMSException {\n\t\t\n\t}", "title": "" }, { "docid": "02384c5834ce009df738a852b8d47e13", "score": "0.5987522", "text": "@Test\n public void ens...
58ccba6971738337fe2780ff8cb7ca04
TODO Autogenerated method stub / menu.add(0, 0, 0, "Reload"); return true;
[ { "docid": "010331f53ef3ec86378133963875e07c", "score": "0.0", "text": "@Override\n public boolean onCreateOptionsMenu(Menu menu)\n {\n MenuInflater inflater = getMenuInflater();\n inflater.inflate(R.menu.players_contextmenu, menu);\n return true;\n }", "title": "" } ...
[ { "docid": "017bb16d1ce718303aebc5bf04220ffc", "score": "0.72433877", "text": "@Override\r\n\tpublic boolean onCreateOptionsMenu(Menu menu) {\n\t\tgetMenuInflater().inflate(R.menu.refresh_menu, menu);\r\n\t\t// mainMenu = menu;\r\n\t\trefreshItem = menu.findItem(R.id.refresh);\r\n\t\tmsgMenuItem = menu....
516cd430e678cf7646ed3ab284c7b68a
Calculates the total principal repaid based on payments made.
[ { "docid": "e913fe666f962d73a2dad986d3d74d4b", "score": "0.7690516", "text": "public double getTotalPrincipalRepaid() {\n\t\t\n\t\tdouble totalPrincipalPaid = 0;\n\t\t\n\t\tfor (Payment payment : paymentsList) {\n\t\t\ttotalPrincipalPaid += payment.getPrincipalPaid();\n\t\t}\n\t\t\n\t\treturn totalPrinc...
[ { "docid": "7d3997b115358c44b22fd402d327a5ec", "score": "0.68692213", "text": "public double getNextPrincipalRepayment() {\n \treturn Math.min(getPrincipalRemaining(), getMonthlyPrincipalRepayment());\n }", "title": "" }, { "docid": "2262fcf11160f1f30c76805a449f68fb", "score": "0.6...
92a5dc536ad8a892a3591c420f972b55
This builder is only instanciated once, no parallel builds are possible with the same builder!
[ { "docid": "62abb5b2f0f331daa041f4aca51143f2", "score": "0.66300046", "text": "public Builder() {\n\t\tsuper();\n\t\tchecker = null;\n\t\tproject = null;\n\t\tconsole = Console.getInstance();\n\t\tproblemReporter = new ProblemReporter();\n\t\tUpdateCheck.startUpdateCheck();\n\t}", "title": "" } ]
[ { "docid": "2d4c64c972d4b3adb1e07ccf3cb91548", "score": "0.73365796", "text": "private Builder() {}", "title": "" }, { "docid": "aef74748089da68ad9cd881f52ed0ce3", "score": "0.7289612", "text": "Builder build() throws IllegalStateException;", "title": "" }, { "docid": "c3...
8eff304c944495c146d41da0b7cb1730
Method Name : animateTopRatedRiderPager Description : animate images in view pager automatically
[ { "docid": "1e764a3525e9c0430ff66384ebf0e9b5", "score": "0.5929501", "text": "public void animateWallOfFamePager(final ViewPager mViewPager) {\n handlerBottom = new Handler(Looper.getMainLooper());\n updateBottom = new Runnable() {\n public void run() {\n if (curr...
[ { "docid": "8a4f64c03910bb9890794f1a73db426d", "score": "0.8234188", "text": "public void animateTopRatedRiderPager(final ViewPager mViewPager) {\n handlerTop = new Handler(Looper.getMainLooper());\n updateTop = new Runnable() {\n public void run() {\n if (current...
22ede6fc7e135a1dd33da1ef8ea85431
Construct a resolution to add a missing stereotype
[ { "docid": "53b4a0f4d6b2c7572e255a41cf91f3b2", "score": "0.5698122", "text": "public AddMissingStereotypeFromConstraintResolution(IDeployResolutionContext aContext,\r\n\t\t\tIDeployResolutionGenerator aGenerator) {\r\n\t\tsuper(aContext, aGenerator);\r\n\r\n\t\tsetDescription(computeDescription(context)...
[ { "docid": "f40464b387958941bc0719174ac9c90c", "score": "0.54754764", "text": "protected void createStereotypesAnnotations() {\n\t\tString source = \"stereotypes\";\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\taddAnnotation\n\t\t (getRPortPrototype_RequiredInterface(), \n\t\t source, \n\t\t new S...
95c989857e43ba63d480084e644b644d
Provide the custom implementation on entering the specific state.
[ { "docid": "70a436218290cdf18bc6778542b7bcf4", "score": "0.70390004", "text": "protected void entryState() {}", "title": "" } ]
[ { "docid": "d8046af36a512c53035b798c97f0620f", "score": "0.71879387", "text": "@Override\n\tpublic void enter() {\n\t\tthis.state.enter();\n\t}", "title": "" }, { "docid": "cd7b9969f060a845257830f030a004fb", "score": "0.68906164", "text": "protected abstract void enter();", "titl...
af2cf9d0b68a15cd9cf404ce6953c01c
this.button2 = new JButton("Use Webs' account");
[ { "docid": "aefd1a35e46f3832967f8d8398b49160", "score": "0.6732135", "text": "private void setButton2() {\n this.button2 = new JButton(new ImageIcon(this.iconPath + \"\\\\steam2.png\"));\n // this.button2.setBounds(220, 45, 180, 35);\n this.button2.setBounds(365, 50, 300, 300);\n this.button...
[ { "docid": "218baf4f004c9863b49c3320ded61731", "score": "0.70541656", "text": "private void initComponents() {\r\n\t\tButton button1 = new Button();\r\n\t\tbutton1.setStyleName(\"PlainWhite\");\r\n\t\tResourceImageReference imageReference1 = new ResourceImageReference(\r\n\t\t\t\t\"/pds/web/resource/ima...
501efdcdde174c5a94fd95fadf59a501
Add the cars to the back of the queue.
[ { "docid": "3589c6149d54ac584713a232639759b6", "score": "0.5208251", "text": "private void addArrivingCars(int numberOfCars, String type){\n \tswitch(type) {\n \tcase AD_HOC: \n for (int i = 0; i < numberOfCars; i++) {\n \tentranceCarQueue.addCar(new AdHocCar());\n ...
[ { "docid": "7f506f1badc1096620e32d887ee97585", "score": "0.6890374", "text": "private void moveCarsIn() {\n\t\t// YOUR CODE HERE\n\t\tint carCount = 0;\n\t\tfor(Enumeration eIn = inQueue.elements(); eIn.hasMoreElements(); ) {\n\t\t\tCar newCar = (Car)eIn.nextElement();\n\t\t\tif (newCar.move(step, waitQ...
5f4a574320f269a6bbfbdeca3fd609ae
.Common commonHeader = 1;
[ { "docid": "f8745e553f63754ea149993a9970f737", "score": "0.0", "text": "public Builder clearCommonHeader() {\n if (commonHeaderBuilder_ == null) {\n commonHeader_ = null;\n onChanged();\n } else {\n commonHeader_ = null;\n commonHeaderBuilder_ = null;\n ...
[ { "docid": "b94fdccc7f8408e0ea41adced3eca7af", "score": "0.789926", "text": "CommonHeader.Common getCommonHeader();", "title": "" }, { "docid": "b94fdccc7f8408e0ea41adced3eca7af", "score": "0.789926", "text": "CommonHeader.Common getCommonHeader();", "title": "" }, { "doc...
616f6b7155cb2681489c92d8460c1d47
makeValid modifies message to remove any character that is not a letter and turn Upper Case into Lower Case
[ { "docid": "9d37458f7c55fe8288c2d9e2e5abea5b", "score": "0.79013467", "text": "public void makeValid(){\n char temp;\n String result=\"\";\n \n for (int i=0 ; i< message.length() ; i++) {\n temp=message.charAt(i);\n if(Character.isLetter(temp)){\n ...
[ { "docid": "ec47d532fc85b0cfbf190a7180002f38", "score": "0.58231", "text": "public String alterToLettersOnly(String testName) {\n //use regex\n String result = testName.trim().replaceAll(\"[^a-zA-Z0-9\\\\s]\", \"\");\n /*\n StringBuilder sb = new StringBuilder();\n for...
8d863410304d66620613646e8dce85d9
String NumberFormat="0.000"; privateNumberFormat format = new NumberFormat(NumberFormat);
[ { "docid": "35ed82e10850c72ebff058f787813ee8", "score": "0.0", "text": "public ChannelRiskIncomeDownExport() {\n\t\tsuper();\n\t\t// TODO Auto-generated constructor stub\n\t}", "title": "" } ]
[ { "docid": "1f9390565af8c3b9cb59b4047d4d57ef", "score": "0.6755203", "text": "public void setDecimalFormat(String format) { _decimalFormat = new DecimalFormat(format); }", "title": "" }, { "docid": "8db2f0c2d053472be4565630bee79472", "score": "0.67510825", "text": "public NumberForma...
660497b7b8a294a8f86e4c1556975ca5
Prepares the data for tests.
[ { "docid": "2199d15f48303f7b3e425f306ebb43f1", "score": "0.0", "text": "private void prepareVolumeData() throws Exception {\n s_logger.info(\"Preparing Volumes for FullCopyVolumeDetachedStateMigrationTest\");\n for (int i = 0; i < INSTANCES_TO_CREATE; i++) {\n Volume fullCopyVol...
[ { "docid": "5a4d8ccaaac33af115ca9890ecb01d17", "score": "0.8137647", "text": "@Before\n public void prepareData() {\n }", "title": "" }, { "docid": "24c807f706c97e927e53b1e9a19287ba", "score": "0.81205726", "text": "protected void prepareData() {\n\t}", "title": "" }, {...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "55df59522df2559490f4205a1c7e1e8a", "score": "0.0", "text": "@Override\n\tpublic boolean create(Tcc tcc) throws UnknownHostException {\n\t\tList<Tcc> lista = listarTcc();\n\t\tfor(Tcc t : lista) {\n\t\t\tif(t.equals(tcc)) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t}\n\t\tDriver driver = new Conne...
[ { "docid": "d7194e467f51e022c107531d8614b6a3", "score": "0.6905833", "text": "@Override\r\n\tpublic void anular() {\n\t\t\r\n\t}", "title": "" }, { "docid": "cdf542363f5b089e84183e3d9020935f", "score": "0.6697644", "text": "@Override\n\t protected void ramana() {\n\t\t\n\t}", "ti...
01fab286de16978d437a4f85e5d6dc66
Define a projection that specifies which columns from the database you will actually use after this query.
[ { "docid": "fc9ae5a478d2bacaad3270263156f17b", "score": "0.0", "text": "public Verse getVerse(String verseText) {\n String[] projection = {\n PoemContract.PoemTable.COLUMN_NAME_POEM_ID,\n PoemContract.PoemTable.COLUMN_NAME_SENTENCE\n };\n // Filter resu...
[ { "docid": "16f732b67cedc7425b9d2d3c60e9ad68", "score": "0.7302696", "text": "@Override\n protected String[] getProjection() {\n return projection;\n }", "title": "" }, { "docid": "5720eeb63234b75e943e78b994eb872c", "score": "0.6587547", "text": "public void setProjectio...
38c0136bf5b076154ffa152d8a925e4b
Increment the number of items sold for a specific client.
[ { "docid": "9c0acd82e460655c84cb28a49c457b3e", "score": "0.63400567", "text": "protected void incrementSold(String username) throws DbException {\n\t\tString query = \"UPDATE User SET totSold = totSold + 1\"\n\t\t\t\t+ \" WHERE name=?\";\n\t\ttry {\n\t\t\t PreparedStatement stmt = con.prepareStatement(q...
[ { "docid": "c9d6b0002e40168e04aebbd99923243b", "score": "0.645013", "text": "void increaseItemCount(Product product, int increaseBy);", "title": "" }, { "docid": "d118c01299c1c0e27480ab0833ce67f7", "score": "0.6417201", "text": "public void increaseNumberOfCheese()\r\n\t{\r\n\t\tthis...
10e7db88b853ad2bf840d09766d46014
/ Create the client call
[ { "docid": "926654abe171e653461b1c7ee73c2cb9", "score": "0.0", "text": "@Override\r\n\tpublic void nextTuple() {\r\n\t\tCloseableHttpClient client = HttpClientBuilder.create().setDefaultCredentialsProvider(credentialProvider)\r\n\t\t\t\t.build();\r\n\t\tHttpGet get = new HttpGet(STREAMING_API_URL + trac...
[ { "docid": "b6a5e1553046d31cd5254010be57c0fe", "score": "0.64451617", "text": "RosSrvClient createRosSrvClient();", "title": "" }, { "docid": "9b535582cba0c1459d8cc70aa7af05af", "score": "0.64448047", "text": "CallOperationAction createCallOperationAction();", "title": "" }, ...
91e4b2505fe5ac2f1285eee37480d8e5
Do not allow undo if a player is in the middle of a move
[ { "docid": "adbf7dc7340166c7a1e733f3a09e0e78", "score": "0.6130177", "text": "public void undoLastMove() {\n\t\tif (currentMove == null) {\n\t\t\tMove lastMove = board.getMoveHistory().get(board.getMoveHistory().size() - 1);\n\t\t\tboard.removeMoveFromBoard(lastMove);\n\t\t\tSystem.out.println(\"Undid l...
[ { "docid": "9e2726cd3718df6eb54c79829062e57c", "score": "0.720764", "text": "public void askForUndo(Player player) {\n }", "title": "" }, { "docid": "ec9bc08c79f4d1b0090c8cab49ec4330", "score": "0.7170823", "text": "protected abstract void undoMoveSpecific();", "title": "" }...
dfb3734bd926b040eac7c88ef7e1304e
Returns the police/box range for the specified band.
[ { "docid": "25be781a1a1085482ab3a84cd9d0558b", "score": "0.70003295", "text": "public static Range getDefaultPoliceRange(V1Band band) {\n // Police ranges are the same for V1.8 and V1.9\n switch(band){\n case K:\n return new Range(V1FrequencyInfo.V3_8920_BAND_K_PO...
[ { "docid": "2c449424678081f9e512abcf4cfda024", "score": "0.5652343", "text": "public Band getBand() \r\n\t{\r\n\t\treturn band;\r\n\t}", "title": "" }, { "docid": "c242fba0d0e0cc691a57932839596b88", "score": "0.5610729", "text": "private double getInterval(Range range) {\r\n \t\tretu...
a8f193cdb44dfe338c4628411f950dcf
no output parameters repeated .dstore.engine.pm_ModifyPersonRelationship_Ad.Response.Row row = 4;
[ { "docid": "aaa01f27fccba9f9d89237fbba0e197d", "score": "0.52993304", "text": "public io.dstore.engine.procedures.PmModifyPersonRelationshipAd.Response.Row getRow(int index) {\n if (rowBuilder_ == null) {\n return row_.get(index);\n } else {\n return rowBuilder_.getMessag...
[ { "docid": "9ba48079a9fe2cdcec4ba90c9743b416", "score": "0.7366749", "text": "io.dstore.engine.procedures.PmModifyPersonRelationshipAd.Response.Row getRow(int index);", "title": "" }, { "docid": "bc7977dbb4ad0a0b44886840da60f178", "score": "0.66957927", "text": "io.dstore.engine.proc...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "7a0e91bb7195902b8a683e8d2cfd3ef3", "score": "0.0", "text": "@Override \n public void startUpdate(View arg0) {\n \n }", "title": "" } ]
[ { "docid": "1acc57d42c31dee937ac33ea6f2a5b0b", "score": "0.6836411", "text": "@Override\r\n\tpublic void comer() {\n\t\t\r\n\t}", "title": "" }, { "docid": "33d41636b65afa8267c9085dae3d1a2d", "score": "0.6679176", "text": "private void apparence() {\r\n\r\n\t}", "title": "" }, ...
3902fefe683084a2e44f033165b077b2
make a background panel
[ { "docid": "e42e7a74e315f9161d8803b95362d4e8", "score": "0.76287824", "text": "public JPanel makeBackgroundPanel() {\n JPanel result = new JPanel();\n result.setBounds(0, 0,bgImg.getIconWidth(),bgImg.getIconHeight());\n\n // make a new label and add it to the background panel\n ...
[ { "docid": "ae72091770f3234170b2eaaa89cac331", "score": "0.7876146", "text": "private void createBackground(){\r\n _signUpFrame.add(new ContentPanel());\r\n }", "title": "" }, { "docid": "df3e940427171b3bbd54dec89a5bba70", "score": "0.74631023", "text": "public BackgroundPa...
8ab8760c7a13250fdc7c254b195f7097
Identification of a BigQuery source used in the Dataflow job. repeated .google.dataflow.v1beta3.BigQueryIODetails bigquery_details = 3;
[ { "docid": "e8b9a9bcdbfdfc5d79b61ff651347bc6", "score": "0.56473017", "text": "public java.util.List<com.google.dataflow.v1beta3.BigQueryIODetails> getBigqueryDetailsList() {\n if (bigqueryDetailsBuilder_ == null) {\n return java.util.Collections.unmodifiableList(bigqueryDetails_);\n } ...
[ { "docid": "043195efcb951dd384380aa1d945cdfc", "score": "0.6824617", "text": "@java.lang.Override\n public com.google.dataflow.v1beta3.BigQueryIODetails getBigqueryDetails(int index) {\n return bigqueryDetails_.get(index);\n }", "title": "" }, { "docid": "5dff4e09526c99f7d7d906258c17918...
63f99dca7e9a7a298cd03e6870456fa3
Called just before this Command runs the first time
[ { "docid": "235772828b460a414a66709e6096b938", "score": "0.0", "text": "@Override\r\n protected void initialize() {\r\n }", "title": "" } ]
[ { "docid": "18333e3f2b64f47be53e34791675b478", "score": "0.628722", "text": "public void setupOneTime() {\n }", "title": "" }, { "docid": "4d5a7ebaaa4bebd6ee1936e533cc65d2", "score": "0.62822306", "text": "@Override\n\t\tprotected void onPreExecute() {\n\t\t\tUtils.log(\"onPreExecut...
ce71f51eaa753c61df3b64de2b79d1ec
$ANTLR end "rule__RoleProhibition__Group__5__Impl" $ANTLR start "rule__RoleProhibition__Group__6" ../org.xtext.example.rmodp.ui/srcgen/org/xtext/example/rmodp/ui/contentassist/antlr/internal/InternalRmOdp.g:14004:1: rule__RoleProhibition__Group__6 : rule__RoleProhibition__Group__6__Impl rule__RoleProhibition__Group__7 ...
[ { "docid": "98deda5015e16b39126cd781a8535bc0", "score": "0.77444464", "text": "public final void rule__RoleProhibition__Group__6() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../org.xtext.example.rmodp.ui/src-gen/or...
[ { "docid": "9c0ac890b010b30f52f8f02d33193b06", "score": "0.75527954", "text": "public final void rule__RoleProhibition__Group__6__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../org.xtext.example.rmodp.ui/src-...
f98e7a38e95110e3dad35987a11e5fe1
Lookup method to convert from an integer
[ { "docid": "9b8c3fc14276ad37a5fcc02633088d63", "score": "0.0", "text": "public static int toInteger(PassageType type) {\n return type.ordinal();\n }", "title": "" } ]
[ { "docid": "f06569067b38421a3410989f409f41a1", "score": "0.72267836", "text": "scrabbleInt toInt();", "title": "" }, { "docid": "f808371aaab4f462eb83c711ccd65538", "score": "0.7008584", "text": "Integer getInteger(Integer number);", "title": "" }, { "docid": "65a4ae4ac4df...
2830cbfcf24fbec86dc076ebd021e34d
Tear down after class.
[ { "docid": "01ebcc224212c109f546011a2013b110", "score": "0.0", "text": "@AfterClass\n\tpublic static void tearDownAfterClass() throws Exception {\n\t}", "title": "" } ]
[ { "docid": "1e25ac8b8ce3a36813e3a349ea938355", "score": "0.7205562", "text": "public static void afterClass() throws Exception {\n\t\t// reset traces\n\t\tresetTrace();\n\t}", "title": "" }, { "docid": "a6feec8d477305cb6f99dba2b3d79870", "score": "0.7106551", "text": "@AfterClass()\r...
7ae9dc139ec857368dd39ad06696ff94
Launch the application. Nalezy odkomentowac konstruktor aby moc uruchomic okienko bezposrednio
[ { "docid": "b6381d0c77dd4216f0237d54751bd8b1", "score": "0.0", "text": "public static void main(String[] args) {\n EventQueue.invokeLater(() -> {\n try {\n addEvent window = new addEvent(date,model,dayView);\n frame.setVisible(true);\n } catch (...
[ { "docid": "03b598254be9c9ab3c6f86f73a75b815", "score": "0.7085623", "text": "public static void main(String[] args){\r\n\t\tApplication.launch(args);\r\n\t}", "title": "" }, { "docid": "e67d4a4399b10a3b1e379046b31f84c7", "score": "0.70825", "text": "public static void launchApplicat...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "4c6bfb6f7a1fafe111f13b9d7856407e", "score": "0.0", "text": "@Override\n public void run() {\n if (cprType != CprType.xunlian && !isPlayBack && history.size() >= cprSetting.xunhuancishu) {\n notifyStop();\n ...
[ { "docid": "fd7df110e087032be8c98522c4493f41", "score": "0.6681592", "text": "@Override\n public void otvori() {\n }", "title": "" }, { "docid": "fd7df110e087032be8c98522c4493f41", "score": "0.6681592", "text": "@Override\n public void otvori() {\n ...
8a1819fc0597cc43555072130ada3dac
need to initialize parentID
[ { "docid": "6c4d882c371f808ba9d5b54b4c5fc8fc", "score": "0.0", "text": "@Override\n protected String addKeyToOpenKeyTable(String volumeName, String bucketName)\n throws Exception {\n String parentDir = keyName;\n String fileName = \"file1\";\n keyName = parentDir + OzoneConsts.OM_KEY_...
[ { "docid": "3ac71e9b8bd69448b1720998864755dd", "score": "0.8111178", "text": "public int getParentID(){\n return localParentID;\n }", "title": "" }, { "docid": "3ac71e9b8bd69448b1720998864755dd", "score": "0.8111178", "text": "...
a9bba7b3bd8c70411506144b253a94a1
This method was generated by MyBatis Generator. This method corresponds to the database table redeemsecure
[ { "docid": "2480b171b45c33f1c8af5d73a7377157", "score": "0.0", "text": "int deleteByExample(RedeemsecureExample example);", "title": "" } ]
[ { "docid": "d828403c2847f258fd3c4ffd633199d0", "score": "0.64443415", "text": "Redeemsecure selectByPrimaryKey(String redeemId);", "title": "" }, { "docid": "88207b0309577c96d193f9c0876a3cd5", "score": "0.5748119", "text": "List<Redeemsecure> selectByExample(RedeemsecureExample examp...
5e185150f8b61ce5105970ef4a853eb6
This method is called from within the constructor to initialize the form. WARNING: Do NOT modify this code. The content of this method is always regenerated by the Form Editor.
[ { "docid": "826dd6ebde7b9d0d9f0fec2abc3697be", "score": "0.0", "text": "@SuppressWarnings(\"unchecked\")\n // <editor-fold defaultstate=\"collapsed\" desc=\"Generated Code\">//GEN-BEGIN:initComponents\n private void initComponents() {\n\n jLabel1 = new javax.swing.JLabel();\n jLabel2...
[ { "docid": "17113ab7a06544a62482637e283ac13d", "score": "0.7394068", "text": "@SuppressWarnings(\"unchecked\")\n // <editor-fold defaultstate=\"collapsed\" desc=\"Generated Code\">//GEN-BEGIN:initComponents\n private void initComponents() {\n }", "title": "" }, { "docid": "156c28fa8...
9e63d21ca49cdd47e0a4c55f73699635
/ I imagine the simulator doing something like this: If a car does not have a command, give it a command, else update all the cars. If a car has a command go then call car.go(); If a car has the change speed command then call car.changeSpeed(); If a car has the stop command then call car.stop(); / Call this to give a c...
[ { "docid": "f1897e98ab39edb764300ea5f61e01d2", "score": "0.5423796", "text": "public void giveChangeSpeedCommand(double target){\n\t\ttarget_velocity = target;\n\t\tcalculateEnergyUsed(velocity, target_velocity);\n\t\tchangeSpeed();\n\t}", "title": "" } ]
[ { "docid": "7dd94cba475f151e38f29d03ec92edc8", "score": "0.6418485", "text": "int update(Car car);", "title": "" }, { "docid": "079d0ec2454fff0525cd583578f0fa61", "score": "0.61721224", "text": "public void giveGoCommand(){\n\t\ttarget_velocity = speed_limit;\n\t\tcalculateEnergyUsed...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "efa57264cf845005617fd2c9a45ee3bc", "score": "0.0", "text": "@Override\n\tpublic boolean equals(Object obj) {\n\t\treturn super.equals(obj);\n\t}", "title": "" } ]
[ { "docid": "c4efc9f9911178a27ec9261384d5f141", "score": "0.66616714", "text": "public void mo12644zk() {\n }", "title": "" }, { "docid": "81758c2988d9979c7d4b3fd5b3cce0e5", "score": "0.6566483", "text": "@Override\r\n\tpublic void pular() {\n\r\n\t}", "title": "" }, { ...
3653bf0ee56543855765249f0408120b
Get the number of points.
[ { "docid": "a8e367914fbe4b825d239836178b597e", "score": "0.8655852", "text": "public int getNumberOfPoints() {\n return numberOfPoints;\n }", "title": "" } ]
[ { "docid": "499bdd9123d809e324d8e1abb14ff701", "score": "0.8502095", "text": "public int getNbPoints() {\n return nbPoints;\n }", "title": "" }, { "docid": "17bbd8c80c52c6da980a1ee7e765dcac", "score": "0.8414204", "text": "int getPointCount();", "title": "" }, { ...
436744eb3c4d42053cc961425ac8247a
Adds a source code input to this chunk.
[ { "docid": "03ddbb4a467b70a0dd951f9e259f10df", "score": "0.7052012", "text": "public void add(CompilerInput input) {\n String inputName = input.getName();\n checkArgument(\n !inputs.containsKey(inputName), \"%s already exist in chunk %s\", inputName, this.getName());\n inputs.put(inputNa...
[ { "docid": "af7bfdacafddcff8e62c745089a47aa3", "score": "0.6404842", "text": "public void add(SourceFile file) {\n add(new CompilerInput(file));\n }", "title": "" }, { "docid": "6cdd5d1deae311c224423bd8244fa6f7", "score": "0.5765545", "text": "void addAndOverrideChunk(CompilerInp...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "8d26224520aa6de9fa33b4290393de34", "score": "0.0", "text": "public static void main(String[] args) {\n\t\tAuthor b1=new Author(\"tan b1\",\"simmy@gmail.com\",'m');\n\t\tSystem.out.println(b1);\n\t\tb1.setEmail(\"simmy@gmail.com\");\n\t\tSystem.out.println(b1);\n\t\tSystem.out.println(\"name ...
[ { "docid": "9208773f8d675a45ef2786d0cb668514", "score": "0.654538", "text": "@Override\n\tpublic void addiion() {\n\t\t\n\t}", "title": "" }, { "docid": "80d20df1cc75d8fa96c12c49a757fc43", "score": "0.65323734", "text": "@Override\n\tprotected void getExras() {\n\t\t\n\t}", "titl...
961711e3477c90d1165ba6aa921b3e27
returns the temporary version of this link
[ { "docid": "2fbbc334593f70a6645995f3a6dc118a", "score": "0.6891495", "text": "public LinkTemp getTempVersion()\n\t\t{\n\t\t\treturn new LinkTemp(getClass(), other);\n\t\t}", "title": "" } ]
[ { "docid": "1eac22a0a3038d7882aef9e0874dabe4", "score": "0.58085316", "text": "private MediaFile downloadTempCopy(MediaEntry e) {\n return getCurrentFile(e, false);\n }", "title": "" }, { "docid": "8b450a5f82d29d3382d60c7d9a47fddf", "score": "0.5586703", "text": "String get...
70875843dcffd47e0ececdffdbb942e0
This method was generated by MyBatis Generator. This method sets the value of the database column lt_google_adwords_report_ad.device
[ { "docid": "0c4e2c1ff500259f9d4ee165fd88dc66", "score": "0.6526087", "text": "public void setDevice(String device) {\r\n this.device = device;\r\n }", "title": "" } ]
[ { "docid": "3007d74b7ac1b9b89489bd4f438511ca", "score": "0.6411115", "text": "public void setDevice(final String device)\n {\n this.device = device;\n }", "title": "" }, { "docid": "81670763790477412f0519c7e7f23131", "score": "0.60850537", "text": "public void setDeviceP...
1508896b21222049bb40237d5b8f3ec7
Calculates the volume or area of the image between the two values from the upper and lower bounds (inclusive).
[ { "docid": "b13fa96486021bddd70c3e9221fe9cb2", "score": "0.6672551", "text": "private void calculateThreshold(float lower, float upper) {\r\n\r\n if (panelParent.getImageA().getNDims() == 3) {\r\n calculateThresholdVolume(lower, upper);\r\n } else {\r\n calculateThres...
[ { "docid": "9116ecb94ca500459afaad579cc6b980", "score": "0.7478774", "text": "private void calculateThresholdArea(float lower, float upper) {\r\n ModelImage image;\r\n\r\n if (isImageASelected()) {\r\n image = panelParent.getImageA();\r\n } else {\r\n image = p...
3cc21096b6eca779a688539d1968913e
Handle action bar item clicks here. The action bar will automatically handle clicks on the Home/Up button, so long as you specify a parent activity in AndroidManifest.xml.
[ { "docid": "1a239553d1a9a50807c9256d7901f3e1", "score": "0.0", "text": "@Override\n public boolean onOptionsItemSelected(MenuItem item) {\n int id = item.getItemId();\n\n //noinspection SimplifiableIfStatement\n if (id == R.id.action_settings) {\n return true;\n ...
[ { "docid": "7c8036532d9f85ff825fd1f6fa38243a", "score": "0.78718156", "text": "@Override\n public boolean onOptionsItemSelected(MenuItem item) {\n switch (item.getItemId()) {\n // Respond to the action bar's Up/Home button\n case android.R.id.home:\n // Lau...
41df05a43bddfba98a46efb474bff04f
This method was generated by MyBatis Generator. This method corresponds to the database table rule_record
[ { "docid": "8965425384f88360a6b86e937ee09acb", "score": "0.4979433", "text": "int updateByPrimaryKeySelective(RuleRecord record);", "title": "" } ]
[ { "docid": "979bbbbc9cb30f0c15349a3ed4de0870", "score": "0.6502421", "text": "RuleRecord selectByPrimaryKey(Integer ruleId);", "title": "" }, { "docid": "2310b6c5fe38234dc1b3874d38c12aec", "score": "0.5797204", "text": "public String getRuleId() {\n ret...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "228b4f25ef193f1b812d3aa218404fd2", "score": "0.0", "text": "@Override\r\n\tpublic List<Site> getAllSitesLimit5() {\n\t\treturn null;\r\n\t}", "title": "" } ]
[ { "docid": "d7194e467f51e022c107531d8614b6a3", "score": "0.6905833", "text": "@Override\r\n\tpublic void anular() {\n\t\t\r\n\t}", "title": "" }, { "docid": "941cb2826e3c700358fcaba402e6bb01", "score": "0.66775143", "text": "@Override\r\n\tpublic void hissetmek() {\n\r\n\t}", "ti...
1a29135b8c0d80087a124294c69ab616
Required. The workflow config's name.
[ { "docid": "5ea43216d25c63a4a4fda042dfa9bc16", "score": "0.5131857", "text": "public Delete setName(java.lang.String name) {\n if (!getSuppressPatternChecks()) {\n com.google.api.client.util.Preconditions.checkArgument(NAME_PATTERN.matcher(name).matches(),\n ...
[ { "docid": "e50c994e904bd40b2250f8ddb870b785", "score": "0.7087362", "text": "public String getWorkflowName();", "title": "" }, { "docid": "54cab87a7ad2c47f53deceb7205763dc", "score": "0.7032339", "text": "public String getName() {\n return config.getName();\n }", "titl...
4a9603e534cc432db0a781fec5a47772
Checks if there is an empty slot in the modulelist to fit the schedule
[ { "docid": "dc099b543b8b67a839196ec5c3af5229", "score": "0.7221323", "text": "private Boolean checkEmptySpace(ScheduleProtected sched)\n\t{\n\t\tFREQ freq = sched.getFrequency();\n\t\tswitch (freq)\n\t\t{\n\t\tcase ODD_WEEK:\n\t\tcase EVEN_WEEK:\n\t\t\tif (calculateIndexInsert(sched, modulelistType(freq...
[ { "docid": "6fd420186abda8233697c9a5619e13e5", "score": "0.6785903", "text": "public boolean checkNoSchedule(){\n boolean noSchedule = true;\n HashMap<String, List<Schedule>> allSchedules = sm.getSchedulesList();\n for (List<Schedule> slist : allSchedules.values()) {\n if...
00c1731e2c2d7ab867c2857d9f698d29
Elementbyelement left division in place, A = A.\B
[ { "docid": "9dfa37674e13fab25d11cecbf62cb5a5", "score": "0.5961926", "text": "public Matrix arrayLeftDivideEquals (Matrix B) {\n checkMatrixDimensions(B);\n for (int i = 0; i < m; i++) {\n for (int j = 0; j < n; j++) {\n A[i][j] = B.A[i][j] / A[i][j];\n ...
[ { "docid": "c6d9b55214b16bb73a6fa4da8dc495f8", "score": "0.64764863", "text": "T dividedBy(T other);", "title": "" }, { "docid": "8bfe6ac032919e4b2edcd9e0623fc031", "score": "0.6180664", "text": "public Matrix arrayLeftDivide (Matrix B) {\n checkMatrixDimensions(B);\n M...
4fa4f53556472f4509a968ca9ee506b7
button handles the creation of game for 2 players
[ { "docid": "f35768497be8cf4a6d477ed90d552159", "score": "0.66524905", "text": "Button btnForTwoPlayers(Stage primaryStage) {\n Button btn = new Button (\"2 players\");\n btn.setOnAction(new EventHandler<ActionEvent>() {\n @Override\n public void handle(ActionEvent eve...
[ { "docid": "2d9d862bb035ce24fb227ed92b0f84d0", "score": "0.75136036", "text": "public void startNewGame(View view) {\n //Provera da li su sva polja popunjena i da li su korektno popunjena\n if (player1Name.getText().toString().trim().isEmpty()){\n Toast.makeText(this, \"Player 1...
22fc2594a66e7c63cb3d4a70aa63fab1
/ access modifiers changed from: private / access modifiers changed from: public
[ { "docid": "5bf5ed32fdc6f4033f594f94a1bf1124", "score": "0.0", "text": "private void clearVersionCode() {\n this.bitField0_ &= -5;\n this.versionCode_ = 0;\n }", "title": "" } ]
[ { "docid": "663ac6f718361fb243bf093a1c7ded6a", "score": "0.69511634", "text": "@Override\r\n\tprotected void Goukakyuu() {\n\t\t\r\n\t}", "title": "" }, { "docid": "06012d51723afddd7b9003b92d7d49c3", "score": "0.6548904", "text": "protected void mo1734a() {\n }", "title": "" ...
ca78f3e5a97725062f485d76956d5697
$ANTLR end synpred110_InternalReactiveXD $ANTLR start synpred111_InternalReactiveXD
[ { "docid": "ba03402a46bde57fb59b35c538a98231", "score": "0.5685286", "text": "public final void synpred111_InternalReactiveXD_fragment() throws RecognitionException { \n // InternalReactiveXD.g:6255:3: ( rule__XAndExpression__Group_1__0 )\n // InternalReactiveXD.g:6255:3: rule__XAndExpre...
[ { "docid": "e8e8f5de7bd814887f8d5827de50a142", "score": "0.61745644", "text": "public final boolean synpred176_InternalReactiveXD() {\n state.backtracking++;\n int start = input.mark();\n try {\n synpred176_InternalReactiveXD_fragment(); // can never throw exception\n ...
6ecff92f9d75521d005b2f797634c4d4
Initializes instance of GasCar
[ { "docid": "ced6b1c3c1f6dbfbc1e877a8298291a3", "score": "0.60797703", "text": "public GasCar(String name, String desc, String make, String model, String year, int odometer) {\n\t\tsuper(name, desc, make, model, year, odometer);\n\t\tvalidMaintenance.add(OilChange.MAINTENANCE_TYPE);\n\t\tvalidMaintenance...
[ { "docid": "7407b0771792da190cd1b16e6e9c15ef", "score": "0.75278485", "text": "public Car()\n\t{\n\t\tspeed = 0;\n\t\tgear = 0;\n\t}", "title": "" }, { "docid": "5c0f7c4add56fb0e98b9adee6e4c04aa", "score": "0.7438411", "text": "public Car() {\n fuel = TANK_CAPACITY;\n c...
5a3d018ce025e782bf6b529beac84d56
Build repair state factory with table repair metrics.
[ { "docid": "5f668fc7b9668abf3b964b63ff545f2a", "score": "0.50223297", "text": "public Builder withTableRepairMetrics(final TableRepairMetrics tableRepairMetrics)\n {\n myTableRepairMetrics = tableRepairMetrics;\n return this;\n }", "title": "" } ]
[ { "docid": "93b5ae27f9e1396a46abf7fa92290724", "score": "0.5954576", "text": "public void buildStateTable() {\r\n RBBIStateDescriptor rBBIStateDescriptor;\r\n int numCharCategories = this.fRB.fSetBuilder.getNumCharCategories() - 1;\r\n this.fDStates.add(new RBBIStateDescriptor(numCh...
93440f65c5a9cf3cd183f9350d5475b4
go to each image verify text user1, user2, user3
[ { "docid": "eb5b53c5847ff37d26e826a31db7646b", "score": "0.5143612", "text": "@Test\n public void Test1() throws InterruptedException {\n String text=\"\";\n for (int i = 1; i < 4; i++) {\n\n WebElement image = driver.findElement(By.xpath(\"//div[@class='figure']\"+\"[\"+i+\...
[ { "docid": "91f807afae091fa79e2ca5d62b159f4c", "score": "0.61494875", "text": "public static void main(String[] args) throws FindFailed, InterruptedException {\n\t\t \r\n\t\tScreen screen = new Screen();\r\n\t\t \r\n\t\t// Create object of Pattern class and specify the images path\r\n\t\t \r\n\t\tPatter...
974e5d621d7c925adb57d5d2ce09a9ba
TODO add your handling code here:
[ { "docid": "66a90d0e0cc234101b17545710549cb5", "score": "0.0", "text": "private void chontimsach1ActionPerformed(java.awt.event.ActionEvent evt) {\n }", "title": "" } ]
[ { "docid": "070e1adb9bfd59cb643407a2dabe9b7a", "score": "0.55482566", "text": "private void hinzufügen() {\n\t\t\r\n\t}", "title": "" }, { "docid": "e5fa0eebc721dea67da872fd14413bc7", "score": "0.5506853", "text": "@Override\n\tpublic void formule() {\n\t\t\n\t}", "title": "" }...
cbf7aa1adff8f42f607d9431bbaf1309
global filters were reverted before, so no need to take care of them
[ { "docid": "17588fd12076b7fcf8bf7a9005cc1977", "score": "0.0", "text": "@Override\n public List<SpelledWord> revert(SpelledWord word, FormInfo fi) {\n SpelledWord candidateSuffix = new SpelledWord();\n SpelledWord candidateBase = new SpelledWord();\n SpelledWord realSuffix = new ...
[ { "docid": "2aa54053bf9874794af90ef8005279dc", "score": "0.7303926", "text": "public void clearFilters(){ filters.clear(); }", "title": "" }, { "docid": "a9d59f928f48d4eb812d542ba83ae8b0", "score": "0.71702677", "text": "protected void resetFilters() {\n if (filter != null) {\n ...
b0111bd4e97a8688fa1eb97c6c18eeae
Constructor calls super constructor.
[ { "docid": "10be3048eee522fb9948c41d25ea2b35", "score": "0.0", "text": "public FunnyPen() {\n\t\tsuper(Constants.PEN_ID_POINT, 1, Color.black, \n\t\t Constants.PATH_PEN_FILLER_LINE);\n\t}", "title": "" } ]
[ { "docid": "dbbd7b49b6e995b1ad0eb748f67c6126", "score": "0.74957454", "text": "Super() {\n }", "title": "" }, { "docid": "27afccac3a7ebbadea5a7f1d0d252e2a", "score": "0.7237232", "text": "protected abstract void pseudoConstructor();", "title": "" }, { "docid": "b6c7e8c...
e1b8fe1c6d90b014bd182e3966d3a424
List of destinations that the item can be moved to by the current user.
[ { "docid": "e53f395c138bb62070bc045af8714b0f", "score": "0.6314614", "text": "public Collection<ItemGroup<?>> listDestinations(Item item) {\n Collection<ItemGroup<?>> result = new LinkedHashSet<ItemGroup<?>>();\n for (RelocationHandler handler : ExtensionList.lookup(RelocationHandler.class...
[ { "docid": "1a77d3fc99a870e8b61c846d75548f20", "score": "0.71547604", "text": "public java.util.List<String> getDestinations() {\n if (destinations == null) {\n destinations = new com.amazonaws.internal.SdkInternalList<String>();\n }\n return destinations;\n }", "t...
ddb6eed0c678ed3f480e1476ecb11ac0
verify the membership constraint that sum(D_ijk) = 1, for all i,j
[ { "docid": "02dd5df0e40f9b70da6f8f07ad09d296", "score": "0.7403914", "text": "public void VerifyMembershipConstraint()\n\t{\n\t\tdouble sum_D_ijk = 0;\n\t\tfor(int i = 0; i < NTrain+NTest; i++)\n\t\t{\n\t\t\tfor(int j = 0; j < NSegments; j++)\n\t\t\t{\n\t\t\t\tsum_D_ijk = 0;\n\t\t\t\t\n\t\t\t\tfor(int k...
[ { "docid": "177ea2e1dbae45f5dadbeac9e59688c5", "score": "0.634901", "text": "public boolean constraint2_viability(){\n boolean viable = false;\n for(int index=0; index<numberOfCell && !viable; index++){\n for(int j=0; j<N; j++){\n if(!problem.isSolved(index) && pr...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "68308bf196bbe2c0447fde51be335ad2", "score": "0.0", "text": "@Override\n\tpublic int getChildrenCount(int groupPosition) {\n\t\treturn 1;\n\t}", "title": "" } ]
[ { "docid": "b7c706d331e2b507ec0ff8404ad87dc7", "score": "0.69742316", "text": "@Override\r\n\t\t\tpublic void crispel() {\n\t\t\t\t\r\n\t\t\t}", "title": "" }, { "docid": "76b3966c8e3f64884c4127d1a3df09a8", "score": "0.68059677", "text": "@Override\r\n\t\t\tpublic void maruti() {\n\t...