Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,646 for efter (0.19 sec)

  1. maven-core/src/test/resources/projects/transform/jar/after.pom

    Guillaume Nodet <******@****.***> 1715601879 +0200
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 12:04:39 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/shape_inference.cc

          }
        }
    
        // Sometimes we have VariableShape nodes in while loop (after Enter nodes).
        // They won't be constant-folded because TensorFlow constant folding does
        // not handle Enter nodes (and thus does not handle any nodes after Enter
        // nodes). We try to replace such VariableShape nodes with Const nodes here.
        if (n->type_string() == "VariableShape") {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 00:41:19 UTC 2024
    - 13K bytes
    - Viewed (0)
  3. guava/src/com/google/common/util/concurrent/ServiceManager.java

          // We check the state after adding the listener as a way to ensure that our listener was added
          // to a NEW service.
          checkArgument(service.state() == NEW, "Can only manage NEW services, %s", service);
        }
        // We have installed all of our listeners and after this point any state transition should be
        // correct.
        this.state.markReady();
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:41:16 UTC 2024
    - 33K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/util/concurrent/ServiceManager.java

          // We check the state after adding the listener as a way to ensure that our listener was added
          // to a NEW service.
          checkArgument(service.state() == NEW, "Can only manage NEW services, %s", service);
        }
        // We have installed all of our listeners and after this point any state transition should be
        // correct.
        this.state.markReady();
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:41:16 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/internal/http2/Http2Stream.kt

       * We always do timeouts in the HTTP server role. For clients, we only do timeouts after the
       * request is transmitted. This is only interesting for duplex calls where the request and
       * response may be interleaved.
       *
       * Read this value only once for each enter/exit pair because its value can change.
       */
      private fun doReadTimeout() = !connection.client || sink.closed || sink.finished
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  6. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/BuildInitInteractiveIntegrationTest.groovy

                }
            }
            handle.stdinPipe.write((javaOption + TextUtil.platformLineSeparator).bytes)
    
            // Enter a Java version
            ConcurrentTestUtil.poll(60) {
                assert handle.standardOutput.contains("Enter target Java version (min: 7, default: 21)")
            }
            handle.stdinPipe.write(("17" + TextUtil.platformLineSeparator).bytes)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 10 12:58:10 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/DynamicCallProblemReporting.kt

            check(entryPoint == innermostCall.entryPoint) { "Mismatched enter-leave calls in DynamicCallProjectIsolationProblemReporting" }
        }
    
        override fun unreportedProblemInCurrentCall(problemKey: Any): Boolean {
            val currentThreadCallStack = currentThreadState.callStack
            check(currentThreadCallStack.isNotEmpty()) { "Expected unreportedProblemInCurrentCall to be called after enterDynamicCall" }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3K bytes
    - Viewed (0)
  8. 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
    - 27.1K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top