This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package life.league.genesis.core.theme.compose | |
import android.util.Log | |
import androidx.compose.foundation.layout.Column | |
import androidx.compose.material.Text | |
import androidx.compose.runtime.Composable | |
import androidx.compose.ui.graphics.Color | |
import androidx.compose.ui.text.TextStyle | |
import androidx.compose.ui.text.font.FontFamily | |
import androidx.compose.ui.text.font.FontWeight |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package co.tractionapp.traction.main.pages.products | |
import android.app.Activity.RESULT_OK | |
import android.app.Dialog | |
import android.content.Intent | |
import android.os.Bundle | |
import android.os.Handler | |
import android.os.Looper | |
import android.view.* | |
import co.tractionapp.data.room.objects.TractionProductCategory |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"results": [ { | |
"alternatives": [ { | |
"confidence": 0.7541675, | |
"transcript": "as we prepare for these meeting this is just", | |
"words": [ { | |
"endTime": "0.100s", | |
"startTime": "0s", | |
"word": "as" | |
}, { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.eyowo.android.report.ui.util | |
import android.widget.ImageView | |
import android.widget.TextView | |
import com.eyowo.android.core.utils.ext.isAvailable | |
import com.eyowo.android.core.utils.ext.isNotAvailable | |
import com.eyowo.android.core.utils.getTransactionsImage | |
import com.eyowo.android.core.utils.toTitleCase | |
import com.eyowo.android.report.R | |
import com.eyowo.android.report.model.ExpensesModel |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@DisplayName("Upload Profile") | |
@Test | |
public void execute() throws Exception { | |
// set timeout for driver actions (similar to step timeout) | |
// driver.manage().timeouts().implicitlyWait(15000, TimeUnit.MILLISECONDS); | |
By by; | |
boolean booleanResult; | |
FileUploader.UploadFileToInputElementAction uploadFileToInputElementAction; | |
RandomDataGenerator.GenerateName generateName; | |
RandomDataGenerator.GenerateNumberInRange generateNumberInRange; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.idealabs.Playground; | |
import io.testproject.sdk.drivers.ReportingDriver; | |
import io.testproject.sdk.drivers.web.RemoteWebDriver; | |
import io.testproject.sdk.interfaces.junit5.ExceptionsReporter; | |
import org.junit.jupiter.api.*; | |
import org.openqa.selenium.By; | |
import org.openqa.selenium.WebDriver; | |
import org.openqa.selenium.chrome.ChromeOptions; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.idealabs.Playground; | |
import io.testproject.sdk.drivers.ReportingDriver; | |
import io.testproject.sdk.drivers.web.RemoteWebDriver; | |
import io.testproject.sdk.interfaces.junit5.ExceptionsReporter; | |
import org.junit.jupiter.api.*; | |
import org.junit.jupiter.params.ParameterizedTest; | |
import org.junit.jupiter.params.provider.Arguments; | |
import org.junit.jupiter.params.provider.MethodSource; | |
import org.openqa.selenium.By; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// set timeout for driver actions (similar to step timeout) | |
driver.manage().timeouts().implicitlyWait(15000, TimeUnit.MILLISECONDS); | |
By by; | |
boolean booleanResult; | |
// 1. Navigate to '{{ApplicationURL}}' | |
// Navigates the specified URL (Auto-generated) | |
GeneratedUtils.sleep(500); | |
driver.navigate().to(ApplicationURL); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// set timeout for driver actions (similar to step timeout) | |
driver.manage().timeouts().implicitlyWait(15000, TimeUnit.MILLISECONDS); | |
By by; | |
boolean booleanResult; | |
// 1. Navigate to '{{ApplicationURL}}' | |
// Navigates the specified URL (Auto-generated) | |
GeneratedUtils.sleep(500); | |
driver.navigate().to(ApplicationURL); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package io.photizzo.station | |
fun optimalPoints(dataSet: Array<Pair<Int, Int>>): List<Int> { | |
// sort the pair according to the end points | |
var newDataSet = dataSet.sortedBy { | |
it.first < it.second | |
} | |
// create a list to store the common points in the segments | |
var points = mutableListOf<Int>() | |
var point = |
NewerOlder