Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 2,051 for runfinq (0.15 sec)

  1. platforms/enterprise/enterprise-logging/src/main/java/org/gradle/internal/logging/progress/ProgressLoggerFactory.java

    public interface ProgressLoggerFactory {
        /**
         * Creates a new long-running operation which has not been started.
         *
         * @param loggerCategory The logger category.
         * @return The progress logger for the operation.
         */
        ProgressLogger newOperation(String loggerCategory);
    
        /**
         * Creates a new long-running operation which has not been started.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. samples/bookinfo/README.md

    ...
    ```
    
    Wait for all the pods to be in `Running` start.
    
    ```bash
    $ kubectl get pods
    NAME                              READY   STATUS    RESTARTS   AGE
    details-v1-7f556f5c6b-485l2       2/2     Running   0          10m
    productpage-v1-84c8f95c8d-tlml2   2/2     Running   0          10m
    ratings-v1-66777f856b-2ls78       2/2     Running   0          10m
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:37 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  3. .github/workflows/arm-ci.yml

        strategy:
          matrix:
            pyver: ['3.10']
        steps:
          - name: Stop old running containers (if any)
            shell: bash
            run: |
              running_containers=$(docker ps -q) && \
              if [[ $running_containers == "" ]]; then
                echo "No running containers";
              else
                echo "Running container(s) found" && \
                docker stop $running_containers;
              fi
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 07 17:41:21 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/node/v1/types.go

    	// overhead represents the resource overhead associated with running a pod for a
    	// given RuntimeClass. For more details, see
    	//  https://kubernetes.io/docs/concepts/scheduling-eviction/pod-overhead/
    	// +optional
    	Overhead *Overhead `json:"overhead,omitempty" protobuf:"bytes,3,opt,name=overhead"`
    
    	// scheduling holds the scheduling constraints to ensure that pods running
    	// with this RuntimeClass are scheduled to nodes that support it.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  5. src/internal/trace/event/requirements.go

    type Constraint uint8
    
    const (
    	MustNotHave Constraint = iota
    	MayHave
    	MustHave
    )
    
    // UserGoReqs is a common requirement among events that are running
    // or are close to running user code.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 685 bytes
    - Viewed (0)
  6. platforms/core-runtime/build-operations/src/main/java/org/gradle/internal/operations/BuildOperationDescriptor.java

         * operation, and should describe the operation whether currently running or not, eg "Run test A" rather than
         * "Running test A".
         */
        public String getDisplayName() {
            return displayName;
        }
    
        /**
         * Returns the display name to use for progress logging for the operation. Should be short and describe the operation
         * as it is running, eg "Running test A" rather than "Run test A".
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 14:19:43 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  7. guava/src/com/google/common/util/concurrent/ServiceManager.java

         *
         * <p>This will be called at most once after all the services have entered the {@linkplain
         * State#RUNNING running} state. If any services fail during start up or {@linkplain
         * State#FAILED fail}/{@linkplain State#TERMINATED terminate} before all other services have
         * started {@linkplain State#RUNNING running} then this method will not be called.
         */
        public void healthy() {}
    
        /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:41:16 UTC 2024
    - 33K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/server/DaemonStateCoordinatorTest.groovy

            }
    
            0 * _._
        }
    
        def "cancelBuild when running command completes in short time"() {
            def command = Mock(Runnable)
    
            expect:
            notStopped
    
            when:
            coordinator.runCommand(command, "command")
            start {
                thread.blockUntil.running
                coordinator.cancelBuild()
            }
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 05 22:24:02 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/internal/concurrent/TaskRunnerRealBackendTest.kt

          log.put("failing task running")
          throw RuntimeException("boom!")
        }
    
        queue.schedule("task", TimeUnit.MILLISECONDS.toNanos(200)) {
          log.put("normal task running")
          return@schedule -1L
        }
    
        queue.idleLatch().await(500, TimeUnit.MILLISECONDS)
    
        assertThat(log.take()).isEqualTo("failing task running")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/JarCompat.java

                throw new UnsupportedOperationException("Cannot get runtime version used when running on Java <9");
            }
        }
    
        @SuppressWarnings("Since15")
        private static class MultiReleaseSupportingJar extends JarCompat {
            MultiReleaseSupportingJar(File jarFile) throws IOException {
                // Set up the MR-JAR properly when running on Java 9+.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 2.9K bytes
    - Viewed (0)
Back to top