Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 504 for please (0.14 sec)

  1. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyReportTaskIntegrationTest.groovy

            """
    
            executer.expectDocumentedDeprecationWarning("The compile configuration has been deprecated for dependency declaration. This will fail with an error in Gradle 9.0. Please use another configuration instead. For more information, please refer to https://docs.gradle.org/current/userguide/declaring_dependencies.html#sec:deprecated-configurations in the Gradle documentation.")
    
            expect:
            succeeds ':a:dependencies'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 25 05:32:54 UTC 2023
    - 31.2K bytes
    - Viewed (0)
  2. platforms/extensibility/test-kit/src/main/java/org/gradle/testkit/runner/GradleRunner.java

     * for your test by adding the `--watch-fs` command line argument via {@link #withArguments(String...)}.
     * <p>
     * Please see the Gradle <a href="https://docs.gradle.org/current/userguide/test_kit.html" target="_top">TestKit</a> User Manual chapter for more information.
     *
     * @since 2.6
     */
    public abstract class GradleRunner {
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/internal/tasks/userinput/UserInputHandlingIntegrationTest.groovy

            }
            gradleHandle.stdinPipe.write(input.bytes)
            gradleHandle.stdinPipe.write(TextUtil.platformLineSeparator.bytes)
            poll {
                assert gradleHandle.standardOutput.contains("Please enter 'yes' or 'no': ")
            }
            writeToStdInAndClose(gradleHandle, "yes")
            gradleHandle.waitForFinish()
            gradleHandle.standardOutput.contains("result = true")
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  4. build/common.sh

    function kube::build::ensure_rsync() {
      if [[ -z "$(which rsync)" ]]; then
        kube::log::error "Can't find 'rsync' in PATH, please fix and retry."
        return 1
      fi
    }
    
    function kube::build::ensure_docker_in_path() {
      if [[ -z "$(which docker)" ]]; then
        kube::log::error "Can't find 'docker' in PATH, please fix and retry."
        kube::log::error "See https://docs.docker.com/installation/#installation for installation instructions."
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  5. platforms/extensibility/test-kit/src/main/java/org/gradle/testkit/runner/internal/DefaultGradleRunner.java

            return message.toString();
        }
    
        private BuildResult run(Action<GradleExecutionResult> resultVerification) {
            if (projectDirectory == null) {
                throw new InvalidRunnerConfigurationException("Please specify a project directory before executing the build");
            }
    
            if (environment != null && debug) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 20 10:14:55 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  6. src/main/resources/fess_message_en.properties

    errors.login.failure=Login failed.
    errors.app.illegal.transition=Please retry because of illegal transition.
    errors.app.db.already.deleted=others might be updated, so retry.
    errors.app.db.already.updated=others might be updated, so retry.
    errors.app.db.already.exists=already existing data, so retry.
    errors.app.double.submit.request=Your request might have been processed before this request. Please check and retry it.
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Mar 18 03:05:44 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  7. src/main/resources/fess_message.properties

    errors.login.failure=Login failed.
    errors.app.illegal.transition=Please retry because of illegal transition.
    errors.app.db.already.deleted=others might be updated, so retry.
    errors.app.db.already.updated=others might be updated, so retry.
    errors.app.db.already.exists=already existing data, so retry.
    errors.app.double.submit.request=Your request might have been processed before this request. Please check and retry it.
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Mar 18 03:05:44 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_6.adoc

    It has been removed in Gradle 7.
    You should migrate to the `maven-publish` or `ivy-publish` plugin instead.
    
    Please refer to the <<publishing_maven.adoc#publishing_maven, documentation of the Maven Publish plugin>> for publishing on Maven repositories.
    Please refer to the <<publishing_ivy.adoc#publishing_ivy, documentation of the Ivy Publish plugin>> for publishing on Ivy repositories.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  9. fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/impl/LogHelperImpl.java

            // UrlQueue<?> urlQueue = (UrlQueue<?>) objs[1];
            final ResponseData responseData = (ResponseData) objs[2];
            if (logger.isDebugEnabled()) {
                logger.debug("No rule for ({}, {}). PLEASE CHECK YOUR CONFIGURATION.", responseData.getUrl(), responseData.getMimeType());
            }
        }
    
        protected void processNoResponseProcessor(final Object... objs) {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 10.3K bytes
    - Viewed (1)
  10. pkg/registry/core/service/ipallocator/controller/repairip.go

    			r.recorder.Eventf(svc, nil, v1.EventTypeWarning, "ClusterIPNotValid", "ClusterIPValidation", "Cluster IP %s is not a valid IP; please recreate Service", ip)
    			runtime.HandleError(fmt.Errorf("the ClusterIP %s for Service %s/%s is not a valid IP; please recreate Service", ip, svc.Namespace, svc.Name))
    			continue
    		}
    		// TODO(aojea) Refactor to abstract the IPs checks
    		family := getFamilyByIP(ip)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 24.7K bytes
    - Viewed (0)
Back to top