Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 188 for instantly (0.2 sec)

  1. src/main/java/org/codelibs/fess/es/log/exbhv/ClickLogBhv.java

        @Override
        protected LocalDateTime toLocalDateTime(final Object value) {
            if (value != null) {
                try {
                    final Instant instant = Instant.from(DateTimeFormatter.ISO_INSTANT.parse(value.toString()));
                    return LocalDateTime.ofInstant(instant, ZoneId.systemDefault());
                } catch (final DateTimeParseException e) {
                    logger.debug("Invalid date format: {}", value, e);
                }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/async/DefaultAsyncConsumerActionExecutorTest.groovy

                connection.run(action, handler)
                instant.dispatched
            }
    
            then:
            1 * actionExecuter.run(action) >> {
                thread.blockUntil.dispatched
                instant.actionStarted
                return "result"
            }
            1 * handler.onComplete("result") >> {
                instant.resultReceived
            }
    
            and:
            instant.actionStarted < instant.resultReceived
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/server/DaemonStateCoordinatorTest.groovy

                instant.idle
                assert result == DaemonStopState.Clean
            }
    
            then:
            stopped
            instant.idle > instant.actionFinished
    
            and:
            1 * onStartCommand.run()
            1 * command.run() >> {
                instant.actionStarted
                thread.block()
                instant.actionFinished
            }
            0 * _._
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 05 22:24:02 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  4. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/concurrent/NamedInstant.groovy

     */
    class NamedInstant extends Instant {
        private final String name
        private final int sequenceNumber
    
        NamedInstant(String name, long time, int sequenceNumber) {
            super(time)
            this.name = name
            this.sequenceNumber = sequenceNumber
        }
    
        @Override
        String toString() {
            return "[instant ${name} #${sequenceNumber} at ${nanos}]"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/debug/dump.go

    limitations under the License.
    */
    
    package debug
    
    import (
    	"time"
    
    	"k8s.io/apiserver/pkg/endpoints/request"
    	flowcontrolrequest "k8s.io/apiserver/pkg/util/flowcontrol/request"
    )
    
    // QueueSetDump is an instant dump of queue-set.
    type QueueSetDump struct {
    	Queues                     []QueueDump
    	QueuelessExecutingRequests []RequestDump
    	Waiting                    int
    	Executing                  int
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 17:38:43 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. platforms/software/testing-base-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/worker/TestWorkerTest.groovy

        }
    
        def createsTestProcessorAndBlocksUntilEndOfProcessingReceived() {
            when:
            async {
                worker.execute(workerContext)
                instant.completed
            }
    
            then:
            instant.completed > instant.stopped
            System.properties['org.gradle.test.worker'] == '<worker-id>'
    
            and:
            1 * factory.create(_, _, _) >> processor
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/LockOnDemandCrossProcessCacheAccessTest.groovy

            when:
            async {
                start {
                    cacheAccess.withFileLock {
                        instant.action1
                        thread.blockUntil.action2
                    }
                }
                start {
                    cacheAccess.withFileLock {
                        instant.action2
                        thread.blockUntil.action1
                    }
                }
            }
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/es/log/exbhv/SearchLogBhv.java

        @Override
        protected LocalDateTime toLocalDateTime(final Object value) {
            if (value != null) {
                try {
                    final Instant instant = Instant.from(DateTimeFormatter.ISO_INSTANT.parse(value.toString()));
                    return LocalDateTime.ofInstant(instant, ZoneId.systemDefault());
                } catch (final DateTimeParseException e) {
                    logger.debug("Invalid date format: {}", value, e);
                }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  9. platforms/core-runtime/build-operations/src/test/groovy/org/gradle/internal/operations/DefaultBuildOperationRunnerTest.groovy

                    operationRunner.run(runnableBuildOperation("<thread-1>") {
                        instant.action1Started
                        thread.blockUntil.action2Started
                    })
                }
                thread.blockUntil.action1Started
                operationRunner.run(runnableBuildOperation("<thread-2>") {
                    instant.action2Started
                    thread.blockUntil.action1Finished
                })
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 15:56:07 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__autoscaling__v2_openapi.json

            "properties": {
              "policies": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 186.6K bytes
    - Viewed (0)
Back to top