Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 661 for dying (0.06 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. pkg/kubelet/metrics/collectors/volume_stats_test.go

    	return &i
    }
    
    func TestVolumeStatsCollector(t *testing.T) {
    	ctx := context.Background()
    	// Fixed metadata on type and help text. We prepend this to every expected
    	// output so we only have to modify a single place when doing adjustments.
    	const metadata = `
    		# HELP kubelet_volume_stats_available_bytes [ALPHA] Number of available bytes in the volume
    		# TYPE kubelet_volume_stats_available_bytes gauge
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 9.5K bytes
    - Viewed (1)
  9. architecture/standards/0003-avoid-introducing-Groovy-types-to-public-api.md

    This has been mostly done, but there remain a few holdouts (fixing these is out of scope).
    
    To keep the Groovy DSL ergonomic, we generate methods as necessary from the non-Groovy equivalents.
    
    Doing this provides the following specific benefits:
    - **Reduce the API surface** - We no longer need to maintain two methods.
    - **Consistency** - All languages have consistent access to the same APIs and ergonomics in the DSL.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Mar 10 20:38:06 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/ChildMapFactory.java

         * is about twice as slow as {@link VfsRelativePath#hasPrefix(String, CaseSensitivity)},
         * so comparing the searched path to all of the children is actually faster than doing a binary search.
         */
        private static final int MINIMUM_CHILD_COUNT_FOR_BINARY_SEARCH = 10;
    
        public static <T> ChildMap<T> childMap(CaseSensitivity caseSensitivity, Collection<ChildMap.Entry<T>> entries) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 2.6K bytes
    - Viewed (0)
Back to top