Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 34 for pipeline (0.32 sec)

  1. 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.
       *
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 98.5K bytes
    - Viewed (0)
  2. .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`
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Wed Mar 06 23:02:25 GMT 2024
    - 4K bytes
    - Viewed (0)
  3. 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();
        }
    
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 11.7K bytes
    - Viewed (0)
  4. 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},"\
    Shell Script
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Jul 28 15:25:47 GMT 2023
    - 4.1K bytes
    - Viewed (0)
  5. 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";
            }
    
            // meta.*
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5.5K bytes
    - Viewed (0)
  6. .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
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Dec 05 00:08:14 GMT 2023
    - 2K bytes
    - Viewed (0)
  7. 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) {
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 23.2K bytes
    - Viewed (0)
  8. 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')
      }
    Plain Text
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Sun Dec 26 16:42:35 GMT 2021
    - 2.3K bytes
    - Viewed (0)
  9. build-logic/integration-testing/src/main/kotlin/gradlebuild.integration-tests.gradle.kts

    configureIde(TestType.INTEGRATION)
    
    createTestTask("integMultiVersionTest", "forking", sourceSet, TestType.INTEGRATION) {
        // This test task runs only multi-version tests and is intended to be used in the late pipeline to sweep up versions not previously tested
        includeSpockAnnotation("org.gradle.integtests.fixtures.compatibility.MultiVersionTestCategory")
        (options as JUnitPlatformOptions).includeEngines("spock")
    Plain Text
    - Registered: Wed Mar 27 11:36:08 GMT 2024
    - Last Modified: Tue Nov 21 22:31:45 GMT 2023
    - 1.8K bytes
    - Viewed (0)
  10. 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
    
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Jan 25 19:26:20 GMT 2023
    - 3.2K bytes
    - Viewed (1)
Back to top