- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 27 for pipeline (0.1 sec)
-
common/scripts/tracing.sh
printf '%s' "ci.pipeline.id=${JOB_NAME},"\ "ci.pipeline.type=${JOB_TYPE},"\ "ci.pipeline.run.url=${url}"\ "ci.pipeline.run.number=${BUILD_ID},"\ "ci.pipeline.run.id=${PROW_JOB_ID},"\ "ci.pipeline.run.repo=${REPO_OWNER:-unknown}/${REPO_NAME:-unknown},"\ "ci.pipeline.run.base=${PULL_BASE_REF:-none},"\ "ci.pipeline.run.pull_number=${PULL_NUMBER:-none},"\
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Fri Jul 28 15:25:47 UTC 2023 - 4.1K bytes - Viewed (0) -
.teamcity/README.md
## How the configuration works We use Kotlin portable DSL to store TeamCity configuration, which means you can easily create a new pipeline based on a specific branch. Currently, we have two pipelines: `master` and `release`, but you can easily create and test another isolated pipeline from any branch. We'll explain everything via an example. Let's say you make some changes on your branch `myTestBranch`
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Mar 06 23:02:25 UTC 2024 - 4K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/ClosingFuture.java
} /** * Starts a {@link ClosingFuture} pipeline with a {@link ListenableFuture}. * * <p>If {@code future} succeeds, its value will be closed (using {@code closingExecutor)}) when * the pipeline is done, even if the pipeline is canceled or fails. * * <p>Cancelling the pipeline will not cancel {@code future}, so that the pipeline can access its * value in order to close it. *
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Oct 08 19:36:35 UTC 2024 - 98.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/CrawlingConfigHelper.java
if (config == null) { return OptionalThing.empty(); } final String pipeline = config.getConfigParameterMap(ConfigName.CONFIG).get(Config.PIPELINE); if (StringUtil.isBlank(pipeline)) { return OptionalThing.empty(); } return OptionalThing.of(pipeline); } public void refresh() { crawlingConfigCache.invalidateAll(); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 11.7K bytes - Viewed (0) -
disabled-Jenkinsfile.its
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ pipeline { agent { node { label 'ubuntu' } } options { durabilityHint('PERFORMANCE_OPTIMIZED') buildDiscarder(logRotator(numToKeepStr: '20', artifactNumToKeepStr: '5')) timeout(time: 180, unit: 'MINUTES') }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Mon Sep 30 14:11:55 UTC 2024 - 2.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/exentity/CrawlingConfig.java
public static final String HTML_CANONICAL_XPATH = "html.canonical.xpath"; public static final String HTML_PRUNED_TAGS = "html.pruned.tags"; public static final String PIPELINE = "pipeline"; public static final String IGNORE_ROBOTS_TAGS = "ignore.robots.tags"; public static final String SCRIPT_TYPE = "script.type";
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Oct 24 13:01:38 UTC 2024 - 5.5K bytes - Viewed (0) -
.teamcity/src/main/kotlin/promotion/StartReleaseCycleTest.kt
init { id("Promotion_AllBranchesStartReleaseCycleTest") name = "Start Release Cycle Test" description = "Test for Start Release Cycle pipeline" steps { gradleWrapper { name = "PromoteTest" tasks = "clean promoteStartReleaseCycle" useGradleWrapper = true
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Dec 05 00:08:14 UTC 2023 - 2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/CrawlingConfigHelperTest.java
final WebConfig webConfig = new WebConfig(); webConfig.setId(id); if (id.endsWith("P")) { webConfig.setConfigParameter("config.pipeline=wp"); } return OptionalEntity.of(webConfig); } @Override public OptionalEntity<WebConfig> getWebConfigByName(String name) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 23.2K bytes - Viewed (0) -
common/config/license-lint.yml
# Apache 2.0 # github.com/ghodss/yaml: MIT / BSD-3 # github.com/gogo/protobuf: BSD-3 # github.com/jmespath/go-jmespath: Apache 2.0 # sigs.k8s.io/yaml: MIT / BSD-3 - github.com/tektoncd/pipeline # MIT: https://github.com/kubernetes-sigs/yaml/blob/master/LICENSE - sigs.k8s.io/yaml # https://github.com/go-errors/errors/blob/master/LICENSE.MIT - github.com/go-errors/errors
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Jan 25 19:26:20 UTC 2023 - 3.2K bytes - Viewed (0) -
.teamcity/src/main/kotlin/model/FunctionalTestBucketGenerator.kt
* * Usage: `mvn compile exec:java@update-test-buckets -DinputTestClassDataJson=/path/to/test-class-data.json`. * You can get the JSON file as an artifacts of the "autoUpdateTestSplitJsonOnGradleMaster" pipeline in TeamCity. */ fun main() { val model = CIBuildModel( projectId = "Check", branch = VersionedSettingsBranch("master"), buildScanTags = listOf("Check"),
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Thu Aug 29 11:04:49 UTC 2024 - 8.5K bytes - Viewed (0)