Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 66 for Tire (0.17 sec)

  1. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    final
    
    // finance : 2014-03-20 Binky Moon, LLC
    finance
    
    // financial : 2014-03-06 Binky Moon, LLC
    financial
    
    // fire : 2015-06-25 Amazon Registry Services, Inc.
    fire
    
    // firestone : 2014-12-18 Bridgestone Licensing Services, Inc
    firestone
    
    // firmdale : 2014-03-27 Firmdale Holdings Limited
    firmdale
    
    // fish : 2013-12-12 Binky Moon, LLC
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Wed Dec 20 23:27:07 GMT 2023
    - 240.3K bytes
    - Viewed (3)
  2. okhttp-hpacktests/src/test/java/okhttp3/internal/http2/hpackjson/Case.kt

    import okhttp3.internal.http2.Header
    import okio.ByteString
    
    /**
     * Representation of an individual case (set of headers and wire format). There are many cases for a
     * single story.  This class is used reflectively with Moshi to parse stories.
     */
    data class Case(
      val seqno: Int = 0,
      val wire: ByteString? = null,
      val headers: List<Map<String, String>>,
    ) : Cloneable {
      val headersList: List<Header>
        get() {
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Sat Dec 23 10:26:25 GMT 2023
    - 1.3K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/util/concurrent/TimeoutFuture.java

        TimeoutFuture<V> result = new TimeoutFuture<>(delegate);
        Fire<V> fire = new Fire<>(result);
        result.timer = scheduledExecutor.schedule(fire, time, unit);
        delegate.addListener(fire, directExecutor());
        return result;
      }
    
      /*
       * Memory visibility of these fields. There are two cases to consider.
       *
       * 1. visibility of the writes to these fields to Fire.run:
       *
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Feb 01 21:46:34 GMT 2024
    - 7.7K bytes
    - Viewed (0)
  4. docs/fr/docs/tutorial/index.md

    Il existe également un **Guide d'utilisation avancé** que vous pouvez lire plus tard après ce **Tutoriel - Guide d'utilisation**.
    
    Le **Guide d'utilisation avancé**, qui s'appuie sur cette base, utilise les mêmes concepts et vous apprend quelques fonctionnalités supplémentaires.
    
    Mais vous devez d'abord lire le **Tutoriel - Guide d'utilisation** (ce que vous êtes en train de lire en ce moment).
    
    Plain Text
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Thu Jul 27 18:51:55 GMT 2023
    - 3.1K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultExecutionEventCatapult.java

    @Named
    @Singleton
    public class DefaultExecutionEventCatapult implements ExecutionEventCatapult {
    
        @Override
        public void fire(ExecutionEvent.Type eventType, MavenSession session, MojoExecution mojoExecution) {
            fire(eventType, session, mojoExecution, null);
        }
    
        @Override
        public void fire(
                ExecutionEvent.Type eventType, MavenSession session, MojoExecution mojoExecution, Exception exception) {
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Wed Jan 10 12:55:54 GMT 2024
    - 4.1K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/lifecycle/internal/LifecycleModuleBuilder.java

            long buildStartTime = System.currentTimeMillis();
    
            try {
    
                if (reactorContext.getReactorBuildStatus().isHaltedOrBlacklisted(currentProject)) {
                    eventCatapult.fire(ExecutionEvent.Type.ProjectSkipped, session, null);
                    return;
                }
    
                consumerPomArtifactTransformer.injectTransformedArtifacts(session.getRepositorySession(), currentProject);
    
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Wed Feb 28 23:31:09 GMT 2024
    - 5.4K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/lifecycle/internal/MojoExecutor.java

                            eventCatapult.fire(ExecutionEvent.Type.ForkedProjectStarted, session, mojoExecution);
    
                            execute(session, mojoExecutions);
    
                            eventCatapult.fire(ExecutionEvent.Type.ForkedProjectSucceeded, session, mojoExecution);
                        } catch (LifecycleExecutionException e) {
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Wed Feb 28 23:31:09 GMT 2024
    - 20.7K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/lifecycle/internal/ExecutionEventCatapult.java

     * deleted without prior notice.
     *
     */
    public interface ExecutionEventCatapult {
    
        void fire(ExecutionEvent.Type eventType, MavenSession session, MojoExecution mojoExecution);
    
        void fire(ExecutionEvent.Type eventType, MavenSession session, MojoExecution mojoExecution, Exception exception);
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 1.5K bytes
    - Viewed (0)
  9. maven-core/src/test/java/org/apache/maven/lifecycle/internal/stub/ExecutionEventCatapultStub.java

    import org.apache.maven.plugin.MojoExecution;
    
    /**
     */
    public class ExecutionEventCatapultStub implements ExecutionEventCatapult {
    
        public void fire(Type eventType, MavenSession session, MojoExecution mojoExecution) {}
    
        public void fire(Type eventType, MavenSession session, MojoExecution mojoExecution, Exception exception) {}
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 1.3K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultLifecycleStarter.java

            this.lifecycleTaskSegmentCalculator = lifecycleTaskSegmentCalculator;
            this.builders = builders;
        }
    
        @Override
        public void execute(MavenSession session) {
            eventCatapult.fire(ExecutionEvent.Type.SessionStarted, session, null);
    
            ReactorContext reactorContext = null;
            ProjectBuildList projectBuilds = null;
            MavenExecutionResult result = session.getResult();
    
            try {
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Wed Feb 28 23:56:36 GMT 2024
    - 5.8K bytes
    - Viewed (0)
Back to top