Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 5,332 for efter (0.04 sec)

  1. guava/src/com/google/common/util/concurrent/AbstractService.java

      /**
       * This method is called by {@link #startAsync} to initiate service startup. The invocation of
       * this method should cause a call to {@link #notifyStarted()}, either during this method's run,
       * or after it has returned. If startup fails, the invocation should cause a call to {@link
       * #notifyFailed(Throwable)} instead.
       *
       * <p>This method should return promptly; prefer to do work on a different thread where it is
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 18:32:03 UTC 2023
    - 20.7K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/util/concurrent/GeneratedMonitorTest.java

       * methods that do not take an explicit timeout value, a single test case is generated only if the
       * implicit timeout of that method matches the given timeoutsToUse. For example, enter() is
       * treated like enter(MAX, MILLIS) and tryEnter() is treated like enter(0, MILLIS).
       */
      private static void addTests(
          TestSuite suite,
          Method method,
          Scenario scenario,
          TimeoutsToUse timeoutsToUse,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  3. android/guava-tests/benchmark/com/google/common/util/concurrent/MonitorBasedArrayBlockingQueue.java

      @Override
      public String toString() {
        final Monitor monitor = this.monitor;
        monitor.enter();
        try {
          return super.toString();
        } finally {
          monitor.leave();
        }
      }
    
      /**
       * Atomically removes all of the elements from this queue. The queue will be empty after this call
       * returns.
       */
      @Override
      public void clear() {
        final E[] items = this.items;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 19 19:24:36 UTC 2023
    - 22.5K bytes
    - Viewed (0)
  4. guava-tests/benchmark/com/google/common/util/concurrent/MonitorBasedArrayBlockingQueue.java

      @Override
      public String toString() {
        final Monitor monitor = this.monitor;
        monitor.enter();
        try {
          return super.toString();
        } finally {
          monitor.leave();
        }
      }
    
      /**
       * Atomically removes all of the elements from this queue. The queue will be empty after this call
       * returns.
       */
      @Override
      public void clear() {
        final E[] items = this.items;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 19 19:24:36 UTC 2023
    - 22.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_executor_ops.td

    // TensorFlow Executor Type Constraint
    //===----------------------------------------------------------------------===//
    
    // Predicate to verify all control inputs appear after any non-control inputs.
    def ControlOperandsAfterAllData :
        PredOpTrait<"all control inputs must appear after any non-control input",
                    CPred<"succeeded(VerifyControlOperandsAfterAllData(&$_op))">>;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 23 19:35:12 UTC 2023
    - 22K bytes
    - Viewed (0)
  6. src/cmd/fix/fix.go

    		walkBeforeAfter(&n.Post, before, after)
    		walkBeforeAfter(&n.Body, before, after)
    	case *ast.RangeStmt:
    		walkBeforeAfter(&n.Key, before, after)
    		walkBeforeAfter(&n.Value, before, after)
    		walkBeforeAfter(&n.X, before, after)
    		walkBeforeAfter(&n.Body, before, after)
    
    	case *ast.ImportSpec:
    	case *ast.ValueSpec:
    		walkBeforeAfter(&n.Type, before, after)
    		walkBeforeAfter(&n.Values, before, after)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 14.6K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/samples/readme-templates/multi-common-body.adoc.template

       2: yes - application and library projects
    Enter selection (default: no - only one application project) [1..2] 2
    
    Select implementation language:
      1: C++
      2: Groovy
      3: Java
      4: Kotlin
      5: Scala
      6: Swift
    Enter selection (default: Java) [1..6] ${languageIndex.raw}
    
    Select build script DSL:
      1: Groovy
      2: Kotlin
    Enter selection (default: Groovy) [1..2] 1
    ${testFrameworkChoice.raw}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 08 11:21:22 UTC 2023
    - 14.7K bytes
    - Viewed (0)
  8. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/junit4/AbstractJUnit4LoggingOutputCaptureIntegrationTest.groovy

                    "Test ok(OkTest) -> test err\n" +
                    "Test ok(OkTest) -> after out\n" +
                    "Test ok(OkTest) -> after err\n" +
                    "Test class OkTest -> after class out\n" +
                    "Test class OkTest -> after class err\n"
                )
    
                // This test covers current behaviour, not necessarily desired behaviour
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/DefaultMaven.java

            }
    
            //
            // We enter the session scope right after the MavenSession creation and before any of the
            // AbstractLifecycleParticipant lookups
            // so that @SessionScoped components can be @Injected into AbstractLifecycleParticipants.
            //
            sessionScope.enter();
            MavenChainedWorkspaceReader chainedWorkspaceReader =
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  10. refactorings/CharMatcherRewrite.java

          return CharMatcher.WHITESPACE;
        }
    
        @AfterTemplate
        CharMatcher after() {
          return CharMatcher.whitespace();
        }
      }
    
      class BreakingWhitespace {
        @BeforeTemplate
        CharMatcher before() {
          return CharMatcher.BREAKING_WHITESPACE;
        }
    
        @AfterTemplate
        CharMatcher after() {
          return CharMatcher.breakingWhitespace();
        }
      }
    
      class Ascii {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Mar 28 19:03:28 UTC 2018
    - 3.5K bytes
    - Viewed (0)
Back to top