Code_Function
stringlengths 13
13.9k
| Message
stringlengths 10
1.46k
|
---|---|
fun LDC(x: Int) { env.topFrame().operandStack.pushBv32(ExpressionFactory.buildNewIntegerConstant(x)) } | Bytecode instruction stream : ... ,0x12 , index , ... < p > Push corresponding symbolic constant from constant pool ( at index ) onto the operand stack . http : //java.sun.com/docs/books/jvms/second_edition/html/Instructions2 . doc8.html # ldc |
private fun filter_regexp(unfilteredTrie: Trie?): SentenceFilteredTrie? { var trie: SentenceFilteredTrie? = nullif (unfilteredTrie.hasRules()) if (matchesSentence(unfilteredTrie))trie =SentenceFilteredTrie(unfilteredTrie) else return nullif (unfilteredTrie.hasExtensions()) for ((key, unfilteredChildTrie): Map.Entry<Int,Trie?> in unfilteredTrie.getChildren().entrySet()) {val nextTrie: SentenceFilteredTrie? = filter_regexp(unfilteredChildTrie)if (nextTrie != null) {if (trie == null) trie= SentenceFilteredTrie(unfilteredTrie)trie.children.put(key, nextTrie)}}return trie} | Alternate filter that uses regular expressions , walking the grammar trie and matching the source side of each rule collection against the input sentence . Failed matches are discarded , and trie nodes extending from that position need not be explored . |
protected fun engineUpdate(input: Byte) { if (first === true) {md.update(k_ipad) first = false }md.update(input)} | Processes the given byte . |
fun configureZone(zone: StendhalRPZone?, attributes: Map<String?, String?>?) { buildAdosGreetingSoldier(zone) } | Configure a zone . |
@Throws(sun.security.krb5.Asn1Exception::class, IOException::class) fun parse(data: sun.security.util.DerInputStream,explicitTag: Byte,optional: Boolean): sun.security.krb5.internal.KerberosTime? {if (optional && data.peekByte().toByte() and 0x1F.toByte() !=explicitTag.toInt()) return null val der: sun.security.util.DerValue = data.getDerValue()return if (explicitTag.toInt() != der.getTag() and 0x1F.toByte()) { throw sun.security.krb5.Asn1Exception(sun.security.krb5.internal.Krb5.ASN1_BAD_ID) } else { val subDer: sun.security.util.DerValue = der.getData().getDerValue() val temp: Date = subDer.getGeneralizedTime() sun.security.krb5.internal.KerberosTime(temp.time, 0) } } | Parse ( unmarshal ) a kerberostime from a DER input stream . This form parsing might be used when expanding a value which is part of a constructed sequence and uses explicitly tagged type . |
@DSGenerator( tool_name = "Doppelganger",tool_version = "2.0",generated_on = "2013-12-30 13:02:38.770-0500",hash_original_method = "C464D16A28A9DCABA3B0B8FD02F52155",hash_generated_method ="0A183B7841054C14E915336FD1A0DC9E") fun hasExtension(extension: String?): Boolean {return if (extension == null ||extension.isEmpty()) {false} else extensionToMimeTypeMap.containsKey(extension) } | Returns true if the given extension has a registered MIME type . |
@Throws(Exception::class) fun testExhaustContentSource() {val algLines = arrayOf("# ----- properties","content.source=org.apache.lucene.benchmark.byTask.feeds.SingleDocSource","content.source.log.step=1","doc.term.vector=false","content.source.forever=false","directory=RAMDirectory","doc.stored=false","doc.tokenized=false","# ----- alg ","CreateIndex","{ AddDoc } : * ","ForceMerge(1)","CloseIndex","OpenReader","{ CountingSearchTest } : 100","CloseReader","[ CountingSearchTest > : 30","[ CountingSearchTest > : 9")CountingSearchTestTask.numSearches = 0val benchmark: Benchmark = execBenchmark(algLines)assertEquals("TestSearchTask was supposed to be called!",139,CountingSearchTestTask.numSearches)assertTrue("Index does not exist?...!",DirectoryReader.indexExists(benchmark.getRunData().getDirectory())) val iw = IndexWriter(benchmark.getRunData().getDirectory(),IndexWriterConfig(MockAnalyzer(random())).setOpenMode(OpenMode.APP))iw.close()val ir: IndexReader = DirectoryReader.open(benchmark.getRunData().getDirectory())assertEquals("1 docs were added to the index, this is what we expect to find!",1,ir.numDocs())ir.close()} | Test Exhasting Doc Maker logic |
@DSSource([DSSourceKind.NETWORK]) @DSSafe(DSCat.SAFE_LIST) @DSGenerator(tool_name = "Doppelganger",tool_version = "2.0",generated_on = "2014-02-25 10:38:10.723 -0500",hash_original_method = "8EB7107FA2367D701AF7CBC234A81F19",hash_generated_method = "B23ED7B4CA5FBA5E6343C71EA6EDB1E4") override fun toString(): String? {val header = StringBuffer()header.append("From: ")header.append(__from)header.append("\nNewsgroups: ")header.append(__newsgroups.toString())header.append("\nSubject: ")header.append(__subject)header.append('\n')if (__headerFields.length() > 0) header.append(__headerFields.toString())header.append('\n')return header.toString()} | Converts the SimpleNNTPHeader to a properly formatted header in the form of a String , including the blank line used to separate the header from the article body . < p > |
private fun sincronizarBase() { listaOrganizacao = ControleDAO.getBanco().getOrganizacaoDAO().listar() } | Sincronizar dados com banco de dados |
protected fun newlines(text: CharArray): Int { var result = 0 for (i in text.indices) { if (text[i] == 10) { result++ } } return result } | Returns the number of newlines in the given char array . |
protected fun toBitmap(source: LuminanceSource?): BinaryBitmap? { return BinaryBitmap(HybridBinarizer(source)) } | Given an image source , convert to a binary bitmap . Override this to use a custom binarizer . |
protected fun handleMergeException(dir: Directory?, exc: Throwable?) { throw MergeException(exc, dir) } | Called when an exception is hit in a background merge thread |
fun merge(factory: FactoryDto, computedProjectConfig: ProjectConfigDto): FactoryDto? { val projects: List<ProjectConfigDto> = factory.getWorkspace().getProjects() if (projects == null || projects.isEmpty()) { factory.getWorkspace().setProjects(listOf(computedProjectConfig)) return factory } if (projects.size == 1) { val projectConfig: ProjectConfigDto = projects[0] if (projectConfig.getSource() == null) projectConfig.setSource(computedProjectConfig.getSource()) } return factory } | Apply the merging of project config dto including source storage dto into the existing factory < p > here are the following rules < ul > < li > no projects -- > add whole project < /li > < li > if projects < ul > < li > : if there is only one project : add source if missing < /li > < li > if many projects : do nothing < /li > < /ul > < /li > < /ul > |
@Throws(ParseException::class) fun parseSIPStatusLine(statusLine: String?): StatusLine? { var statusLine = statusLine statusLine += "\n" return StatusLineParser(statusLine).parse() } | Parse the SIP Response message status line |
fun initQuitAction(quitAction: QuitAction?) { requireNotNull(quitAction) { "quitAction is null" } require(quitAction == null) { "The method is once-call." } quitAction = quitAction } | Set the action to call from quit ( ) . |
fun isFileStoragePool(storagePool: StoragePool, dbClient: DbClient): Boolean { val storageSystemUri: URI = storagePool.getStorageDevice() val storageSystem: StorageSystem = dbClient.queryObject(StorageSystem::class.java, storageSystemUri) ArgValidator.checkEntity(storageSystem, storageSystemUri, false) val storageSystemType: StorageSystem.Type = StorageSystem.Type.valueOf(storageSystem.getSystemType()) return storageSystemType.equals(StorageSystem.Type.isilon) || storageSystemType.equals( StorageSystem.Type.vnxfile ) } | Finds if a pool is file storage pool |
fun invokeStatic( clazz: String?, methodName: String?, types: Array<Class<*>?>?, values: Array<Any?>?, defaultValue: Any? ): Any? { return try { invokeStatic(Class.forName(clazz), methodName, types, values) } catch (e: ClassNotFoundException) { defaultValue } catch (e: NoSuchMethodException) { defaultValue } } | Invokes the specified parameterless method if it exists . |
@Throws(IllegalArgumentException::class) fun internalsprintf(s: Double): String? { var s2: String? = "" when (conversionCharacter) { 'f' -> s2 = printFFormat(s) 'E', 'e' -> s2 = printEFormat(s) 'G', 'g' -> s2 = printGFormat(s) else -> throw IllegalArgumentException("Cannot format a double with a format using a $conversionCharacter conversion character.") } return s2 } | Format a double argument using this conversion specification . |
fun eInverseRemove( otherEnd: InternalEObject?, featureID: Int, msgs: NotificationChain? ): NotificationChain? { when (featureID) { N4mfPackage.MODULE_FILTER__MODULE_SPECIFIERS -> return (getModuleSpecifiers() as InternalEList<*>).basicRemove( otherEnd, msgs ) } return super.eInverseRemove(otherEnd, featureID, msgs) } | < ! -- begin-user-doc -- > < ! -- end-user-doc -- > |
fun hasUiObjectExpression(): Boolean { return !com.sun.tools.javac.util.StringUtils.isEmpty(getUiObjectExpression) } | If this databinding reference an ui element that is not the widget bound to this binding , then an expression is used to retrieve the target ui element |
fun restore() { try { if (inCurrentStorage) currentStorage.insertElementSafe(element) else currentStorage.removeElement( element ) if (inApiStorage) apiStorage.insertElementSafe(element) else apiStorage.removeElement( element ) } catch (e: StorageException) { e.printStackTrace() } element.osmId = osmId element.osmVersion = osmVersion element.state = state element.setTags(tags) if (parentRelations != null) { element.parentRelations = ArrayList<Relation>() element.parentRelations.addAll(parentRelations) } else { element.parentRelations = null } } | Restores the saved state of the element |
@DSGenerator( tool_name = "Doppelganger", tool_version = "2.0", generated_on = "2013-12-30 12:36:00.382 -0500", hash_original_method = "A7CC818E7F384DAEC54D76069E9C5019", hash_generated_method "E8FCEBA0D995DB6EE22CA1B5390C8697" ) @Throws( IOException::class ) protected fun available(): Int { return getInputStream().available() } | Returns the number of bytes available for reading without blocking . |
fun isOverwriteMode(): Boolean { return hexEditControl == null || hexEditControl.isOverwriteMode() } | Tells whether the input is in overwrite or insert mode |
fun loadStrings(filename: String): Array<String?>? { val `is`: InputStream = createInput(filename) if (`is` != null) return loadStrings(`is`) System.err.println("The file \"$filename\" is missing or inaccessible, make sure the URL is valid or that the file has been added to your sketch and is readable.") return null } | Load data from a file and shove it into a String array . < p/ > Exceptions are handled internally , when an error , occurs , an exception is printed to the console and 'null ' is returned , but the program continues running . This is a tradeoff between 1 ) showing the user that there was a problem but 2 ) not requiring that all i/o code is contained in try/catch blocks , for the sake of new users ( or people who are just trying to get things done in a `` scripting '' fashion . If you want to handle exceptions , use Java methods for I/O . |
private fun fieldsWithAnnotation(cls: Class<*>): Iterable<Field?>? { synchronized(mux) { var fields: MutableList<Field?>? = fieldCache.get(cls) if (fields == null) { fields = ArrayList() for (field in cls.declaredFields) { val ann: Annotation = field.getAnnotation(annCls) if (ann != null || needsRecursion(field)) fields!!.add(field) } if (!fields!!.isEmpty()) fieldCache.put(cls, fields) } return fields } } | Gets all entries from the specified class or its super-classes that have been annotated with annotation provided . |
@Throws(Exception::class) fun mapRelations( `object`: jdk.internal.loader.Resource, jsonObject: JSONObject, included: List<jdk.internal.loader.Resource?>? ): jdk.internal.loader.Resource? { val relationshipNames: HashMap<String, String> = getRelationshipNames(`object`.javaClass) for (relationship in relationshipNames.keySet()) { var relationJsonObject: JSONObject? = null relationJsonObject = try { jsonObject.getJSONObject(relationship) } catch (e: JSONException) { Logger.debug("Relationship named " + relationship + "not found in JSON") continue } var relationDataObject: JSONObject? = null try { relationDataObject = relationJsonObject.getJSONObject("data") var relationObject: jdk.internal.loader.Resource? = Factory.newObjectFromJSONObject(relationDataObject, null) relationObject = matchIncludedToRelation(relationObject, included) mDeserializer.setField(`object`, relationshipNames[relationship], relationObject) } catch (e: JSONException) { Logger.debug("JSON relationship does not contain data") } var relationDataArray: JSONArray? = null try { relationDataArray = relationJsonObject.getJSONArray("data") var relationArray: List<jdk.internal.loader.Resource?>? = Factory.newObjectFromJSONArray(relationDataArray, null) relationArray = matchIncludedToRelation(relationArray, included) mDeserializer.setField(`object`, relationshipNames[relationship], relationArray) } catch (e: JSONException) { Logger.debug("JSON relationship does not contain data") } } return `object` } | Loops through relation JSON array and maps annotated objects . |
override fun onDestroyView() { mIsWebViewAvailable = false super.onDestroyView() } | Called when the WebView has been detached from the fragment . The WebView is no longer available after this time . |
fun clearMovementData() {pathSprites = ArrayList<StepSprite>() movementTarget = null checkFoVHexImageCacheClear() repaint() refreshMoveVectors() } | Clears current movement data from the screen |
@Throws(Exception::class) fun execute( mapping: ActionMapping, form: ActionForm, request: HttpServletRequest, response: HttpServletResponse): ActionForward? { val editRoomDeptForm: EditRoomDeptForm = form as EditRoomDeptForm val rsc: MessageResources = getResources(request) val doit: String = editRoomDeptForm.getDoit() if (doit != null) { if (doit == rsc.getMessage("button.update")) { var errors = ActionMessages() errors = editRoomDeptForm.validate(mapping, request) if (errors.size() === 0) { doUpdate(editRoomDeptForm, request) return mapping.findForward("showRoomDetail") } else { saveErrors(request, errors) } } if (doit == rsc.getMessage("button.returnToRoomDetail")) { response.sendRedirect("roomDetail.do?id=" + editRoomDeptForm.getId()) return null } if (doit == rsc.getMessage("button.addRoomDept")) { if (editRoomDeptForm.getDept() == null || editRoomDeptForm.getDept() .length() === 0 ) { val errors = ActionMessages() errors.add("roomDept", ActionMessage("errors.required", "Department")) saveErrors(request, errors) } else if (editRoomDeptForm.getDepartmentIds() .contains(editRoomDeptForm.getDept()) ) { val errors = ActionMessages() errors.add("roomDept", ActionMessage("errors.alreadyPresent", "Department")) saveErrors(request, errors) } else { editRoomDeptForm.addDepartment(editRoomDeptForm.getDept()) } } if (doit == rsc.getMessage("button.removeRoomDept")) { if (editRoomDeptForm.getDept() == null || editRoomDeptForm.getDept() .length() === 0 ) { val errors = ActionMessages() errors.add("roomDept", ActionMessage("errors.required", "Department")) saveErrors(request, errors) } else if (!editRoomDeptForm.getDepartmentIds() .contains(editRoomDeptForm.getDept()) ) { val errors = ActionMessages() errors.add("roomDept", ActionMessage("errors.notPresent", "Department")) saveErrors(request, errors) } else { editRoomDeptForm.removeDepartment(editRoomDeptForm.getDept()) } } } val id: Long = java.lang.Long.valueOf(request.getParameter("id")) val ldao = LocationDAO() val location: Location = ldao.get(id) sessionContext.checkPermission(location, Right.RoomEditAvailability) if (doit != null && doit == rsc.getMessage("button.modifyRoomDepts")) { val roomDepts = TreeSet(location.getRoomDepts()) val i: Iterator<*> = roomDepts.iterator() while (i.hasNext()) { val roomDept: RoomDept = i.next() as RoomDept editRoomDeptForm.addDepartment(roomDept.getDepartment().getUniqueId().toString()) } } val timeVertical: Boolean = CommonValues.VerticalGrid.eq(UserProperty.GridOrientation.get(sessionContext.getUser())) val rtt: RequiredTimeTable = location.getRoomSharingTable( sessionContext.getUser(), editRoomDeptForm.getDepartmentIds() ) rtt.getModel().setDefaultSelection(UserProperty.GridSize.get(sessionContext.getUser())) if (doit != null && (doit == rsc.getMessage("button.removeRoomDept") || doit == rsc.getMessage( "button.addRoomDept" )) ) { rtt.update(request) } editRoomDeptForm.setSharingTable(rtt.print(true, timeVertical)) if (location is Room) { val r: Room = location as Room editRoomDeptForm.setName(r.getLabel()) editRoomDeptForm.setNonUniv(false) } else if (location is NonUniversityLocation) { val nonUnivLocation: NonUniversityLocation = location as NonUniversityLocation editRoomDeptForm.setName(nonUnivLocation.getName()) editRoomDeptForm.setNonUniv(true) } else { val errors = ActionMessages() errors.add("editRoomDept", ActionMessage("errors.lookup.notFound", "Room Department")) saveErrors(request, errors) } setupDepartments(editRoomDeptForm, request, location) return mapping.findForward("showEditRoomDept") } | Method execute |
fun execute(timeSeries: MetricTimeSeries, functionValueMap: FunctionValueMap) { if (timeSeries.isEmpty()) { functionValueMap.add(this, false, null) return } val points: DoubleList = timeSeries.getValues() val q1: Double = Percentile.evaluate(points, .25) val q3: Double = Percentile.evaluate(points, .75) val threshold = (q3 - q1) * 1.5 + q3 for (i in 0 until points.size()) { val point: Double = points.get(i) if (point > threshold) { functionValueMap.add(this, true, null) return } } functionValueMap.add(this, false, null) } | Detects outliers using the default box plot implementation . An outlier every value that is above ( q3-q1 ) *1.5*q3 where qN is the nth percentile |
fun DuplicatePrimaryPartitionException(message: String?) { super(message) } | Creates a new < code > DuplicatePrimaryPartitionException < /code > with the given detail message . |
fun buildFieldTypes(tableDef: TableDefinition) { (tableDef as JPAMTableDefinition).buildFieldTypes(getSession()) } | INTERNAL : builds the field names based on the type read in from the builder |
fun clearCache() { softCache = SoftReference<Array<String>>(null) } | Clear the cache . This method is used for testing . |
fun clear() { oredCriteria.clear() orderByClause = null distinct = false } | This method was generated by MyBatis Generator . This method corresponds to the database table activity |
protected fun remove(id: Int) { nodes.remove(id) } | Removes the node with the specified identifier from this problem instance . |
fun addHaptic(id: Int) { mHapticFeedback.add(id) } | Adds haptic feedback to this utterance . |
private fun init() { val grid = Grid() appendChild(grid) grid.setWidth("100%") grid.setStyle("margin:0; padding:0; position: absolute;") grid.makeNoStrip() grid.setOddRowSclass("even") val rows: jdk.internal.joptsimple.internal.Rows = jdk.internal.joptsimple.internal.Rows() grid.appendChild(rows) for (i in 0 until m_goals.length) { val row = Row() rows.appendChild(row) row.setWidth("100%") val pi = WPerformanceIndicator(m_goals.get(i)) row.appendChild(pi) pi.addEventListener(Events.ON_CLICK, this) } } | Static/Dynamic Init |
fun deleteBack(): Int { val oldBack: Int = getBack() size = size - 1 return oldBack } | Deletes item from back of the list and returns deleted item . |
fun isLicensed(): Boolean { return resourceExists(thresholdFileResource) && resourceExists(overlappingFileResource) } | This method returns true if the threshold and overlap files are present . |
protected fun SimplePhase(name: String?) { super(name) } | Construct a phase given just a name and a global/local ordering scheme . |
private fun URIUtil() {} | Prevent instance creation . |
@Synchronized fun processResponse( transactionResponse: SIPResponse, sourceChannel: MessageChannel?, dialog: SIPDialog ) { if (getState() == null) return if ((TransactionState.COMPLETED === this.getState() || TransactionState.TERMINATED === this.getState()) && transactionResponse.getStatusCode() / 100 === 1) { return } if (sipStack.isLoggingEnabled()) { sipStack.getStackLogger().logDebug( "processing " + transactionResponse.getFirstLine() .toString() + "current state = " + getState() ) sipStack.getStackLogger().logDebug("dialog = $dialog") } this.lastResponse = transactionResponse try { if (isInviteTransaction()) inviteClientTransaction( transactionResponse, sourceChannel, dialog ) else nonInviteClientTransaction(transactionResponse, sourceChannel, dialog) } catch (ex: IOException) { if (sipStack.isLoggingEnabled()) sipStack.getStackLogger().logException(ex) this.setState(TransactionState.TERMINATED) raiseErrorEvent(SIPTransactionErrorEvent.TRANSPORT_ERROR) } } | Process a new response message through this transaction . If necessary , this message will also be passed onto the TU . |
fun disable(adapter: BluetoothAdapter) { var mask: Int = BluetoothReceiver.STATE_TURNING_OFF_FLAG or BluetoothReceiver.STATE_OFF_FLAG or BluetoothReceiver.SCAN_MODE_NONE_FLAG var start: Long = -1 val receiver: BluetoothReceiver = getBluetoothReceiver(mask) var state = adapter.state when (state) { BluetoothAdapter.STATE_OFF -> { assertFalse(adapter.isEnabled) removeReceiver(receiver) return } BluetoothAdapter.STATE_TURNING_ON -> { assertFalse(adapter.isEnabled) start = System.currentTimeMillis() } BluetoothAdapter.STATE_ON -> { assertTrue(adapter.isEnabled) start = System.currentTimeMillis() assertTrue(adapter.disable()) } BluetoothAdapter.STATE_TURNING_OFF -> { assertFalse(adapter.isEnabled) mask = 0 } else -> { removeReceiver(receiver) fail(String.format("disable() invalid state: state=%d", state)) } } val s = System.currentTimeMillis() while (System.currentTimeMillis() - s < ENABLE_DISABLE_TIMEOUT) { state = adapter.state if (state == BluetoothAdapter.STATE_OFF && receiver.getFiredFlags() and mask === mask) { assertFalse(adapter.isEnabled) val finish: Long = receiver.getCompletedTime() if (start != -1L && finish != -1L) { writeOutput(String.format("disable() completed in %d ms", finish - start)) } else { writeOutput("disable() completed") } removeReceiver(receiver) return } sleep(POLL_TIME) } val firedFlags: Int = receiver.getFiredFlags() removeReceiver(receiver) fail( String.format( "disable() timeout: state=%d (expected %d), flags=0x%x (expected 0x%x)", state, BluetoothAdapter.STATE_OFF, firedFlags, mask ) ) } | Disables Bluetooth and checks to make sure that Bluetooth was turned off and that the correct actions were broadcast . |
fun isLocal(): Boolean { return local } | Indicates if the ejb referenced is a local ejb . |
fun PowerDecay() { this(10, 0.5) } | Creates a new Power Decay rate |
fun isStorageIORMSupported(): Boolean? { return storageIORMSupported } | Gets the value of the storageIORMSupported property . |
fun array(): ByteArray { return array } | Returns the underlying byte array . |
@Throws(Exception::class) fun buildClassifier(D: Instances) { val r = Random(m_seed) if (fastaram) { networks = arrayOfNulls<ARAMNetworkfast>(numberofnetworks) } else if (sparsearam) { networks = arrayOfNulls<ARAMNetworkSparse>(numberofnetworks) } else if (sparsearamH) { networks = arrayOfNulls<ARAMNetworkSparseV>(numberofnetworks) } else if (sparsearamHT) { networks = arrayOfNulls<ARAMNetworkSparseHT>(numberofnetworks) } else { networks = arrayOfNulls<ARAMNetwork>(numberofnetworks) } numClasses = D.classIndex() if (tfastaram) { val bc: Array<BuildClassifier?> = arrayOfNulls<BuildClassifier>(numberofnetworks) for (i in 0 until numberofnetworks) { val list: MutableList<Int?> = ArrayList() for (j in 0 until D.numInstances()) { list.add(j) } Collections.shuffle(list, r) if (fastaram) { networks.get(i) = ARAMNetworkfast() } else if (sparsearam) { networks.get(i) = ARAMNetworkSparse() } else if (sparsearamH) { networks.get(i) = ARAMNetworkSparseV() } else if (sparsearamHT) { networks.get(i) = ARAMNetworkSparseHT() } else { networks.get(i) = ARAMNetwork() } networks.get(i).order = list networks.get(i).roa = roa bc[i] = BuildClassifier(networks.get(i)) bc[i].setinstances(D) bc[i].start() } for (i in 0 until numberofnetworks) { bc[i].join() networks.get(i) = bc[i].m_network networks.get(i).learningphase = false } } else { for (i in 0 until numberofnetworks) { if (fastaram) { networks.get(i) = ARAMNetworkfast() } else if (sparsearam) { networks.get(i) = ARAMNetworkSparse() } else if (sparsearamH) { networks.get(i) = ARAMNetworkSparseV() } else if (sparsearamHT) { networks.get(i) = ARAMNetworkSparseHT() } else { networks.get(i) = ARAMNetwork() } networks.get(i).roa = roa networks.get(i).buildClassifier(D) networks.get(i).learningphase = false D.randomize(r) } } dc = arrayOfNulls<DistributionCalc>(numberofnetworks) } | Generates the classifier . |
private fun startCameraSource() { val code: Int = GoogleApiAvailability.getInstance() .isGooglePlayServicesAvailable(ApplicationProvider.getApplicationContext()) if (code != ConnectionResult.SUCCESS) { val dlg: Dialog = GoogleApiAvailability.getInstance().getErrorDialog(this, code, RC_HANDLE_GMS) dlg.show() } if (mCameraSource != null) { try { mPreview.start(mCameraSource, mGraphicOverlay) } catch (e: IOException) { Log.e(TAG, "Unable to start camera source.", e) mCameraSource.release() mCameraSource = null } } } | Starts or restarts the camera source , if it exists . If the camera source does n't exist yet ( e.g. , because onResume was called before the camera source was created ) , this will be called again when the camera source is created . |
fun Timezone(text: String?) { this(null, text) } | Creates a timezone property . |
fun <K, V> putAt(self: MutableMap<K, V>, key: K, value: V): V { self[key] = value return value } | A helper method to allow maps to work with subscript operators |
override fun toString(): String? { return toString(",") } | Form a string listing all elements with comma as the separator character . |
@DSSafe(DSCat.SAFE_LIST) @DSGenerator( tool_name = "Doppelganger", tool_version = "2.0", generated_on = "2014-09-03 14:59:51.857 -0400", hash_original_method = "8DBE36D3CC23C0C9E5FAAD9804EB9F8E", hash_generated_method = "B8E268DF01A1D59287B8F2ED5303EAE7" ) @Throws( IOException::class ) private fun processInput(endOfInput: Boolean) { decoderIn.flip() var coderResult: CoderResult while (true) { coderResult = decoder.decode(decoderIn, decoderOut, endOfInput) if (coderResult.isOverflow()) { flushOutput() } else if (coderResult.isUnderflow()) { break } else { throw IOException("Unexpected coder result") } } decoderIn.compact() } | Decode the contents of the input ByteBuffer into a CharBuffer . |
fun byte52ToFloat(b: Byte): Float { if (b.toInt() == 0) return 0.0f var bits: Int = b and 0xff shl 24 - 5 bits += 63 - 2 shl 24 return java.lang.Float.intBitsToFloat(bits) } | byteToFloat ( b , mantissaBits=5 , zeroExponent=2 ) |
private fun createAndRegisterObserverProxyLocked(observer: IContentObserver) { check(mObserver == null) { "an observer is already registered" } mObserver = ContentObserverProxy(observer, this) mCursor.registerContentObserver(mObserver) } | Create a ContentObserver from the observer and register it as an observer on the underlying cursor . |
fun compressEstim(src: ByteArray?, srcOff: Int, srcLen: Int): Int { var srcOff = srcOff if (srcLen < 10) return srcLen var stride: Int = LZ4_64K_LIMIT - 1 val segments = (srcLen + stride - 1) / stride stride = srcLen / segments if (stride >= LZ4_64K_LIMIT - 1 || stride * segments > srcLen || segments < 1 || stride < 1) throw RuntimeException( "?? $srcLen" ) var bytesIn = 0 var bytesOut = 0 var len = srcLen while (len > 0) { if (len > stride) len = stride bytesOut += compress64k(src, srcOff, len) srcOff += len bytesIn += len len = srcLen - bytesIn } val ratio = bytesOut / bytesIn.toDouble() return if (bytesIn == srcLen) bytesOut else (ratio * srcLen + 0.5).toInt() } | Estimates the length of the compressed bytes , as compressed by Lz4 WARNING : if larger than LZ4_64K_LIMIT it cuts it in fragments WARNING : if some part of the input is discarded , this should return the proportional ( so that returnValue/srcLen=compressionRatio ) |
fun eIsSet(featureID: Int): Boolean { when (featureID) { N4JSPackage.ARRAY_LITERAL__ELEMENTS -> return elements != null && !elements.isEmpty() N4JSPackage.ARRAY_LITERAL__TRAILING_COMMA -> return trailingComma !== TRAILING_COMMA_EDEFAULT } return super.eIsSet(featureID) } | < ! -- begin-user-doc -- > < ! -- end-user-doc -- > |
fun FilterStreamSpecRaw() {} | Default ctor . |
fun onMenuVisibilityChanged(isVisible: Boolean) { for (i in 0 until mObservers.size()) { mObservers.get(i).onMenuVisibilityChanged(isVisible) } } | Called by AppMenu to report that the App Menu visibility has changed . |
fun updateDownload() { val ongoingDownloads: ArrayList<DownloadInfoRunnable> = getOngoingDownloads() if (!ongoingDownloads.isEmpty()) { updateProgress() } else { timer.cancel() timer.purge() stopSelf() mBuilder = null stopForeground(true) isStopped = true } } | Updates the download list and stops the service if it 's empty . If not , updates the progress in the Notification bar |
private fun remoteAddPois(pois: List<Poi>, changeSetId: String): Int { var count = 0 for (poi in pois) { if (remoteAddPoi(poi, changeSetId)) { count++ } } return count } | Add a List of POIs to the backend . |
fun CopyOnWriteArraySet(c: Collection<E?>?) { al = CopyOnWriteArrayList<E>() al.addAllAbsent(c) } | Creates a set containing all of the elements of the specified collection . |
@Throws(SQLException::class) fun close() { try { super.close() } finally { this.outputLogger.close() } } | This method will close the connection to the output . |
@DSGenerator( tool_name = "Doppelganger", tool_version = "2.0", generated_on = "2013-12-30 12:55:41.688 -0500", hash_original_method = "1623111994CBCA0890DA0FF2A1E140E0", hash_generated_method = "478ACA79A313929F4EF55B9242DEEF4D" ) fun isBackToBackUserAgent(): Boolean { return super.isBackToBackUserAgent } | Get the `` back to back User Agent '' flag . return the value of the flag |
fun EnglishMinimalStemFilterFactory(args: Map<String?, String?>) { super(args) require(args.isEmpty()) { "Unknown parameters: $args" } } | Creates a new EnglishMinimalStemFilterFactory |
fun AABB(pos: ReadonlyVec3D?, extent: Float) { super(pos) setExtent(Vec3D(extent, extent, extent)) } | Creates a new instance from centre point and uniform extent in all directions . |
fun <T> subscriber(): JavaslangSubscriber<T>? { return JavaslangSubscriber<T>() } | A reactive-streams subscriber than can generate Javaslang traversable types |
fun SQLNonTransientException(reason: String?, cause: Throwable?) { super(reason, cause) } | Creates an SQLNonTransientException object . The Reason string is set to the given and the cause Throwable object is set to the given cause Throwable object . |
fun localTransactionCommitted(event: ConnectionEvent?) {} | Ignored event callback |
protected fun runAndReset(): Boolean { if (state !== NEW || !UNSAFE.compareAndSwapObject( this, runnerOffset, null,Thread.currentThread() ) ) return false var ran = false var s: Int = state try { val c: Callable<V> = callable if (c != null && s == NEW) { try { c.call() ran = true } catch (ex: Throwable) { setException(ex) } } } finally { runner = null s = state if (s >= INTERRUPTING) handlePossibleCancellationInterrupt(s) } return ran && s == NEW } | Executes the computation without setting its result , and then resets this future to initial state , failing to do so if the computation encounters an exception or is cancelled . This is designed for use with tasks that intrinsically execute more than once . |
fun addCookie(cookie: GoogleCookie?) { if (cookieManager != null) { cookieManager.addCookie(cookie) } } | Adds a new GoogleCookie instance to the cache . |
fun debug(trace: String?) { printTrace(trace, DEBUG_LEVEL) } | Debug trace |
fun isAutoIndentEnabled(): Boolean { return autoIndentEnabled } | Returns whether or not auto-indent is enabled . |
fun disableHardwareLayersForContent() { val widget: View = org.jcp.xml.dsig.internal.dom.DOMKeyInfo.getContent() if (widget != null) { widget.setLayerType(LAYER_TYPE_NONE, null) } } | Because this view has fading outlines , it is essential that we enable hardware layers on the content ( child ) so that updating the alpha of the outlines does n't result in the content layer being recreated . |
@Throws(ParseException::class) fun parseDateLong(dateString: String?, pattern: String?): Date? { return getSimplDateFormat(pattern).parse(dateString) } | Construct payment gateway descriptor . |
@Throws(ParseException::class) fun parseDateLong(dateString: String?, pattern: String?): Date? { return getSimplDateFormat(pattern).parse(dateString) } | Returns date parsed from string by given pattern |
fun add(i: Int, coord: Coordinate?, allowRepeated: Boolean) { if (!allowRepeated) { val size: Int = size() if (size > 0) { if (i > 0) { val prev: Coordinate = get(i - 1) as Coordinate if (prev.equals2D(coord)) return } if (i < size) { val next: Coordinate = get(i) as Coordinate if (next.equals2D(coord)) return } } } super.add(i, coord) } | Inserts the specified coordinate at the specified position in this list . |
private fun loadAppThemeDefaults() { val typedValue = TypedValue() val a = context!!.obtainStyledAttributes( typedValue.data, intArrayOf(attr.colorAccent, attr.textColorPrimary, attr.colorControlNormal) ) dialColor = a.getColor(0, dialColor) textColor = a.getColor(1, textColor) clockColor = a.getColor(2, clockColor) a.recycle() } | Sets default theme attributes for picker These will be used if picker 's attributes are'nt set |
fun increaseRefcount() { refcount++ } | Increase number of data points by one . |
fun computePolygonAreaFromVertices(points: Iterable<Vec4?>?): Double { if (points == null) { val message: String = Logging.getMessage("nullValue.IterableIsNull") Logging.logger().severe(message) throw IllegalArgumentException(message) } val iter: Iterator<Vec4?> = points.iterator() if (!iter.hasNext()) { return 0 } var area = 0.0 val firstPoint: Vec4? = iter.next() var point: Vec4? = firstPoint while (iter.hasNext()) { val nextLocation: Vec4? = iter.next() area += point.x * nextLocation.y area -= nextLocation.x * point.y point = nextLocation } if (!point.equals(firstPoint)) { area += point.x * firstPoint.y area -= firstPoint.x * point.y } area /= 2.0 return area } | Returns the area enclosed by the specified ( x , y ) points ( the z and w coordinates are ignored ) . If the specified points do not define a closed loop , then the loop is automatically closed by simulating appending the first point to the last point . |
fun init(param: KeyGenerationParameters) { this.params = param as NTRUEncryptionKeyGenerationParameters } | Constructs a new instance with a set of encryption parameters . |
fun createDemoPanel(): javax.swing.JPanel? { val chart: JFreeChart = createChart(createDataset()) val panel = ChartPanel(chart, false) panel.setFillZoomRectangle(true) panel.setMouseWheelEnabled(true) return panel } | Creates a panel for the demo ( used by SuperDemo.java ) . |
@Throws(Throwable::class) fun deleteVMsOnThisEndpoint( host: VerificationHost?, isMock: Boolean, parentComputeLink: String?, instanceIdsToDelete: List<String?>? ) { deleteVMsOnThisEndpoint(host, null, isMock, parentComputeLink, instanceIdsToDelete, null) } | A utility method that deletes the VMs on the specified endpoint filtered by the instanceIds that are passed in . |
fun isIn(i: Byte): Boolean { return i >= this.min && i <= this.max } | Check if given number is in range . |
fun completeAll() { val currentCompleted: Long = completedCount val size = Math.max(1, actionList.size()) while (completedCount - currentCompleted < size) { if (getState() !== Thread.State.BLOCKED && getState() !== Thread.State.RUNNABLE) break try { Thread.sleep(50) } catch (ex: InterruptedException) { break } } } | < p > Complete all scheduled actions at the time of this call . Since other threads may keep adding actions , this method makes sure that only the actions in the queue at the time of the call are waited upon . < /p > |
override fun toString(): String? { return image } | Returns the image . |
fun KtVisualPanel1() { initComponents() } | Creates new form KtVisualPanel1 |
@Throws(MalformedURIException::class) fun URI(p_scheme: String?, p_schemeSpecificPart: String?) { if (p_scheme == null || p_scheme.trim { it <= ' ' }.length == 0) { throw MalformedURIException("Cannot construct URI with null/empty scheme!") } if (p_schemeSpecificPart == null || p_schemeSpecificPart.trim { it <= ' ' }.length == 0) { throw MalformedURIException("Cannot construct URI with null/empty scheme-specific part!") } setScheme(p_scheme) setPath(p_schemeSpecificPart) } | Construct a new URI that does not follow the generic URI syntax . Only the scheme and scheme-specific part ( stored as the path ) are initialized . |
fun isDoingRangedAttack(): Boolean { return isDoingRangedAttack } | Check if the currently performed attack is ranged . |
@Throws(IOException::class) fun SdfReaderWrapper(sdfDir: File?, useMem: Boolean, checkConsistency: Boolean) { mIsPaired = jdk.internal.org.jline.reader.impl.ReaderUtils.isPairedEndDirectory(sdfDir) if (mIsPaired) { mSingle = null mLeft = createSequencesReader( jdk.internal.org.jline.reader.impl.ReaderUtils.getLeftEnd(sdfDir), useMem ) mRight = createSequencesReader( jdk.internal.org.jline.reader.impl.ReaderUtils.getRightEnd(sdfDir), useMem ) if (checkConsistency) { if (mLeft.numberSequences() !== mRight.numberSequences() || !mLeft.type() .equals(mRight.type()) || mLeft.hasQualityData() !== mRight.hasQualityData() || mLeft.hasNames() !== mRight.hasNames() ) { throw NoTalkbackSlimException( ErrorType.INFO_ERROR, "Paired end SDF has inconsistencies between arms." ) } } } else { mLeft = null mRight = null mSingle = createSequencesReader(sdfDir, useMem) } } | Wrapper for the readers . |
fun DefaultRenderStack() { stack = ArrayDeque() } | Constructs the stack . |
fun onLocationChanged(location: Location?) { if (location == null) { return } val distance: Float = getDistanceFromNetwork(location) mTrackerData.writeEntry(location, distance) } | Writes details of location update to tracking file , including recording the distance between this location update and the last network location update |
fun secondaryIndexFileName(data: File): File? { val extensionIndex: Int = data.getName().lastIndexOf('.') return if (extensionIndex != -1) { File( data.getParentFile(), data.getName().substring(0, extensionIndex) + BamIndexer.BAM_INDEX_EXTENSION ) } else indexFileName(data) } | Get the secondary possible name for an index to have for a given data file ( Will return same as indexFileName if there is no file extension ) |
@Throws(IOException::class) private fun cancelOrder(contract: Contract, order: TradeOrder) { val orderState = OrderState() orderState.m_status = OrderStatus.CANCELLED this.brokerModel.openOrder(order.getOrderKey(), contract, order, orderState) order.setStatus(OrderStatus.CANCELLED) } | Method cancelOrder . |
private fun TempTripleStore(store: TemporaryStore, properties: Properties) { this(store, UUID.randomUUID().toString() + "kb", ITx.UNISOLATED, properties) } | Note : This is here just to make it easy to have the reference to the [ store ] and its [ uuid ] when we create one in the calling ctor . |
fun <T> newSameSize(list: List<*>?, cpType: Class<T>?): Array<T>? { return if (list == null) create(cpType, 0) else create(cpType, list.size) } | Creates an array with the same size as the given list . If the list is null , a zero-length array is created . |
fun addPaintListener(pl: PaintListener?) { if (m_painters == null) { m_painters = CopyOnWriteArrayList() } m_painters.add(pl) } | Add a PaintListener to this Display to receive notifications about paint events . |
fun isNamed(): Boolean { return flags and NO_NAME === 0 } | Returns true if this method is anonymous . |
fun CopyOnWriteMap() { internalMap = HashMap<K, V>() } | Creates a new instance of CopyOnWriteMap . |
fun runTrialParallel( size: Int,set: TrialSuite,pts: Array<IPoint>,selector: IPivotIndex?,numThreads: Int,ratio: Int) {val ar = arrayOfNulls<Int>(size) run { var i = 0 var idx = 0 while (i < pts.size) { ar[idx++] = (pts[i].getX() * BASE) as Int ar[idx++] = (pts[i].getY() * BASE) as Int i++ } } val qs: MultiThreadQuickSort<Int> = MultiThreadQuickSort<Int>(ar) qs.setPivotMethod(selector) qs.setNumberHelperThreads(numThreads) qs.setThresholdRatio(ratio) System.gc() val start = System.currentTimeMillis() qs.qsort(0, size - 1) val end = System.currentTimeMillis() set.addTrial(size, start, end) for (i in 0 until ar.size - 1) { assert(ar[i]!! <= ar[i + 1]!!) } } | Change the number of helper threads inside to try different configurations . < p > Set to NUM_THREADS by default . |
Subsets and Splits