Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for dontwait (0.26 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/filters/maxinflight_test.go

    	}
    	// Validate that non-accounted URLs still work.  use a path regex match
    	if err := expectHTTPGet(server.URL+"/api/v1/watch/namespaces/default/dontwait", http.StatusOK); err != nil {
    		t.Error(err)
    	}
    
    	// We should allow a single mutating request.
    	if err := expectHTTPPost(server.URL+"/dontwait", http.StatusOK); err != nil {
    		t.Error(err)
    	}
    
    	// Let all hanging requests finish
    	block.Done()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 10.2K bytes
    - Viewed (0)
  2. src/runtime/float_test.go

    		1<<56 + 1<<32 + 1,
    	} {
    		got := float32(i)
    		dontwant := float32(float64(i))
    		if got == dontwant {
    			// The test cases above should be uint64s such that
    			// this equality doesn't hold. These examples trigger
    			// the case where using an intermediate float64 doesn't work.
    			t.Errorf("direct float32 conversion doesn't work: arg=%x got=%x dontwant=%x", i, got, dontwant)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 07 18:34:24 UTC 2021
    - 699 bytes
    - Viewed (0)
  3. cluster/gce/gci/apiserver_etcd_test.go

    				}
    			}
    		})
    	}
    }
    
    func TestStorageOptions(t *testing.T) {
    	testCases := []struct {
    		desc     string
    		env      kubeAPIServeETCDEnv
    		want     []string
    		dontWant []string
    	}{
    		{
    			desc: "storage options are supplied",
    			env: kubeAPIServeETCDEnv{
    				StorageBackend:     "StorageBackend",
    				StorageMediaType:   "StorageMediaType",
    				CompactionInterval: "1s",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 18 11:14:24 UTC 2021
    - 5.6K bytes
    - Viewed (0)
  4. okhttp/src/main/resources/META-INF/proguard/okhttp3.pro

    -dontwarn okhttp3.internal.platform.**
    -dontwarn org.conscrypt.**
    -dontwarn org.bouncycastle.**
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Dec 23 14:46:51 UTC 2023
    - 682 bytes
    - Viewed (0)
  5. android-test-app/test-proguard-rules.pro

    -dontwarn **...
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Dec 23 14:46:51 UTC 2023
    - 13 bytes
    - Viewed (0)
  6. proguard/collect.pro

    -dontwarn java.lang.SafeVarargs
    
    # The nested FieldSettersHolder class looks these up.
    #
    # We use -keepclassmembernames because we want for ImmutableMultimap and its
    # fields to be stripped if it's unused: -keepclassmembernames says that, *if*
    # you're keeping the fields, you need to leave their names untouched. (Anyone
    # who is using ImmutableMultimap will certainly be using its fields. So we
    # don't need to worry that an ImmutableMultimap user will have the fields
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 09 00:29:01 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  7. proguard/concurrent.pro

    # already preserved in the -keep statement above.
    -keep,allowshrinking,allowobfuscation class com.google.common.util.concurrent.AbstractFuture** {
      <fields>;
    }
    
    # AbstractFuture uses this
    -dontwarn sun.misc.Unsafe
    
    # MoreExecutors references AppEngine
    -dontnote com.google.appengine.api.ThreadManager
    -keep class com.google.appengine.api.ThreadManager {
      static *** currentRequestThreadFactory(...);
    }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 09 00:29:01 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  8. proguard/primitives.pro

    # UnsignedBytes uses this
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 09 00:29:01 UTC 2023
    - 52 bytes
    - Viewed (0)
  9. okhttp-testing-support/src/main/resources/META-INF/proguard/okhttp3.pro

    # OkHttp test platform rules uses optional classes.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Dec 23 14:46:51 UTC 2023
    - 65 bytes
    - Viewed (0)
  10. proguard/cache.pro

    # Striped64 uses this
    -dontwarn sun.misc.Unsafe
    
    # Striped64 appears to make some assumptions about object layout that
    # really might not be safe. This should be investigated.
    -keepclassmembers class com.google.common.cache.Striped64 {
      *** base;
      *** busy;
    }
    -keepclassmembers class com.google.common.cache.Striped64$Cell {
      <fields>;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 09 00:29:01 UTC 2023
    - 341 bytes
    - Viewed (0)
Back to top