Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,237 for startingAt (0.87 sec)

  1. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/client/DaemonStartupMessageTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.launcher.daemon.client
    
    import spock.lang.Specification
    
    class DaemonStartupMessageTest extends Specification {
        def "starting message contains number of busy and incompatible daemons (#numBusy busy, #numIncompatible incompatible, #numStopped stopped)"() {
            given:
            def message = DaemonStartupMessage.generate(numBusy, numIncompatible, numStopped)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/SigningDigest.java

         * The first 8 bytes of this are placed in the signature field.
         *
         * @param data The data.
         * @param offset The starting offset at which the SMB header begins.
         * @param length The length of the SMB data starting at offset. 
         */
        void sign(byte[] data, int offset, int length,
                    ServerMessageBlock request, ServerMessageBlock response) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 7K bytes
    - Viewed (0)
  3. cluster/addons/metrics-server/README.md

    ## Troubleshooting
    
    Metrics Server supports up to 30 pods per cluster node. In clusters where there are more running pods, Metrics Server may be throttled or fail with OOM error. Starting with Kubernetes 1.9.2, Metrics Server resource requirements may be overwritten manually. [Learn more about Addon Resizer configuration](https://github.com/kubernetes/autoscaler/tree/master/addon-resizer#addon-resizer-configuration)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 18 13:04:48 UTC 2020
    - 1.1K bytes
    - Viewed (0)
  4. src/packaging/common/scripts/postinst

            echo "### NOT starting on installation, please execute the following statements to configure fess service to start automatically using chkconfig"
            echo " sudo chkconfig --add fess"
            echo "### You can start fess service by executing"
            echo " sudo service fess start"
    
        elif command -v update-rc.d >/dev/null; then
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Dec 10 01:24:02 UTC 2015
    - 3.1K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/server/exec/LogAndCheckHealthTest.groovy

            given:
            runningStats.getBuildCount() >> 0
    
            when:
            tracker.execute(exec)
    
            then:
            1 * healthCheck.executeHealthCheck()
            1 * logger.info({ it ==~ /Starting build in new daemon \[memory: \d.*]/ })
        }
    
        def "executes health check on subsequent builds"() {
            given:
            runningStats.getBuildCount() >> 1
    
            when:
            tracker.execute(exec)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/AbstractUserInputRenderer.java

            userInput.readAndForwardText(event);
            handlePrompt(event);
        }
    
        private void handleUserInputRequestEvent() {
            startInput();
            paused = true;
        }
    
        private void handleUserInputResumeEvent(UserInputResumeEvent event) {
            if (!paused) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 30 05:02:18 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  7. platforms/core-runtime/files/src/main/java/org/gradle/api/internal/file/pattern/PathMatcher.java

         */
        int getMaxSegments();
    
        /**
         * Returns true if the path starting at the given offset satisfies this pattern.
         */
        boolean matches(String[] segments, int startIndex);
    
        /**
         * Returns true if the path starting at the given offset could be satisfy this pattern if it contained additional segments at the end.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:55:52 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  8. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/namespace_policy.go

    )
    
    func addNamespaceRole(namespace string, role rbacv1.Role) {
    	if !strings.HasPrefix(namespace, "kube-") {
    		klog.Fatalf(`roles can only be bootstrapped into reserved namespaces starting with "kube-", not %q`, namespace)
    	}
    
    	existingRoles := namespaceRoles[namespace]
    	for _, existingRole := range existingRoles {
    		if role.Name == existingRole.Name {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 16 11:54:27 UTC 2020
    - 7.4K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/JavaExecWithLongCommandLineIntegrationTest.groovy

                run.executable 'does-not-exist'
            """
    
            when:
            fails taskName
    
            then:
            failure.assertThatCause(containsText("A problem occurred starting process"))
            failure.assertHasNoCause("could not be started because the command line exceed operating system limits.")
    
            where:
            method                    | taskName
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/process/ExecOutput.java

         * Returns a provider of the execution result.
         *
         * <p>
         * The external process is executed only once and only when the value is requested for the first
         * time.
         * </p>
         * <p>
         * If starting the process results in exception then the ensuing exception is permanently
         * propagated to callers of {@link Provider#get}, {@link Provider#getOrElse},
         * {@link Provider#getOrNull} and {@link Provider#isPresent}.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 23 00:18:08 UTC 2021
    - 3.3K bytes
    - Viewed (0)
Back to top