Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 700 for dying (0.09 sec)

  1. maven-embedder/src/main/java/org/apache/maven/cli/CleanArgument.java

                }
    
                // this has to be a separate "if" statement, to capture the case of: "-Dfoo=bar"
                if (addedToBuffer && arg.endsWith("\"")) {
                    // if we're building an argument, keep doing so.
                    // if this is the case of "-Dfoo=bar", then we need to adjust the buffer.
                    currentArg.setLength(currentArg.length() - 1);
    
                    cleaned.add(currentArg.toString());
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 12:51:05 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/cacher/time_budget.go

    // periodically being refreshed. The pattern to use it is:
    //
    //	budget := newTimeBudget(...)
    //	...
    //	timeout := budget.takeAvailable()
    //	// Now you can spend at most timeout on doing stuff
    //	...
    //	// If you didn't use all timeout, return what you didn't use
    //	budget.returnUnused(<unused part of timeout>)
    //
    // NOTE: It's not recommended to be used concurrently from multiple threads -
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  3. .github/DISCUSSION_TEMPLATE/questions.yml

            That's a lot of work they are doing, but if more FastAPI users came to help others like them just a little bit more, it would be much less effort for them (and you and me 😅).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Aug 03 15:59:41 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  4. docs/en/docs/async.md

    But as you go away from the counter and sit at the table with a number for your turn, you can switch 🔀 your attention to your crush, and "work" ⏯ 🤓 on that. Then you are again doing something very "productive" as is flirting with your crush 😍.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 00:24:48 UTC 2024
    - 23K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/EmptyImmutableListMultimap.java

       * TODO(b/242884182): Figure out why this helps produce the same class file when we compile most
       * of common.collect a second time with the results of the first compilation on the classpath. Or
       * just back this out once we stop doing that (which we'll do after our internal GWT setup
       * changes).
       */
      @Override
      public ImmutableMap<Object, Collection<Object>> asMap() {
        return super.asMap();
      }
    
      private Object readResolve() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Aug 18 16:48:17 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/EmptyImmutableListMultimap.java

       * TODO(b/242884182): Figure out why this helps produce the same class file when we compile most
       * of common.collect a second time with the results of the first compilation on the classpath. Or
       * just back this out once we stop doing that (which we'll do after our internal GWT setup
       * changes).
       */
      @Override
      public ImmutableMap<Object, Collection<Object>> asMap() {
        return super.asMap();
      }
    
      private Object readResolve() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Aug 18 16:48:17 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  7. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/FreefairAspectJPluginSmokeTest.groovy

                    @Around("execution(* org.apache.http.util.Args.*(..))")
                    public Object stupidAdvice(ProceedingJoinPoint joinPoint) {
                        throw new RuntimeException("Doing stupid things");
                    }
                }
            """
            file("src/test/java/StupidAspectTest.aj") << """
                import org.junit.Test;
                import static org.junit.Assert.*;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/metadata/RedirectingGradleMetadataModuleMetadataSource.java

     *
     * It also means that we're going to pay a small price if Gradle metadata is present: we would fetch
     * a POM file and parse it, then fetch Gradle metadata and parse it (doing twice the work).
     */
    public class RedirectingGradleMetadataModuleMetadataSource implements MetadataSource<MutableModuleComponentResolveMetadata> {
        private final MetadataSource<?> delegate;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/internal/classpath/intercept/CallInterceptorRegistry.java

         *   so that replacing the call interceptors for tests would instead work by embedding a different location
         *   than this one in the instrumented code. Doing that adds much more complexity in the instrumentation.
         */
        @NonNullApi
        @VisibleForTesting
        static class GroovyJvmCallInterceptorInternalTesting {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 24 13:33:59 UTC 2023
    - 5K bytes
    - Viewed (0)
  10. tests/integration/pilot/main_test.go

    	i istio.Instance
    
    	// Below are various preconfigured echo deployments. Whenever possible, tests should utilize these
    	// to avoid excessive creation/tear down of deployments. In general, a test should only deploy echo if
    	// its doing something unique to that specific test.
    	apps = deployment.SingleNamespaceView{}
    )
    
    // TestMain defines the entrypoint for pilot tests using a standard Istio installation.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Sep 08 22:15:56 UTC 2023
    - 1.7K bytes
    - Viewed (0)
Back to top