Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for v1 (0.03 sec)

  1. CHANGELOG/CHANGELOG-1.32.md

    - cloud.google.com/go/batch: v1.3.1 → v1.7.0
    - cloud.google.com/go/beyondcorp: v1.0.0 → v1.0.3
    - cloud.google.com/go/bigquery: v1.53.0 → v1.58.0
    - cloud.google.com/go/billing: v1.16.0 → v1.18.0
    - cloud.google.com/go/binaryauthorization: v1.6.1 → v1.8.0
    - cloud.google.com/go/certificatemanager: v1.7.1 → v1.7.4
    - cloud.google.com/go/channel: v1.16.0 → v1.17.4
    - cloud.google.com/go/cloudbuild: v1.13.0 → v1.15.0
    Registered: Fri Nov 01 09:05:11 UTC 2024
    - Last Modified: Tue Oct 29 20:17:52 UTC 2024
    - 121.6K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.5.md

    ### Previous Releases Included in v1.5.0
    
    - [v1.5.0-beta.3](CHANGELOG.md#v150-beta3)
    - [v1.5.0-beta.2](CHANGELOG.md#v150-beta2)
    - [v1.5.0-beta.1](CHANGELOG.md#v150-beta1)
    - [v1.5.0-alpha.2](CHANGELOG.md#v150-alpha2)
    - [v1.5.0-alpha.1](CHANGELOG.md#v150-alpha1)
    
    
    
    # v1.5.0-beta.3
    
    Registered: Fri Nov 01 09:05:11 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.4.md

    ## Previous Releases Included in v1.4.0
    
    For a detailed list of all changes that were included in this release, please refer to the following CHANGELOG entries:
    
    - [v1.4.0-beta.10](CHANGELOG.md#v140-beta10)
    - [v1.4.0-beta.8](CHANGELOG.md#v140-beta8)
    - [v1.4.0-beta.7](CHANGELOG.md#v140-beta7)
    - [v1.4.0-beta.6](CHANGELOG.md#v140-beta6)
    - [v1.4.0-beta.5](CHANGELOG.md#v140-beta5)
    - [v1.4.0-beta.3](CHANGELOG.md#v140-beta3)
    Registered: Fri Nov 01 09:05:11 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

       *     the arguments, or if any has already been {@linkplain #finishToFuture() finished}
       */
      public static <V1 extends @Nullable Object, V2 extends @Nullable Object>
          Combiner2<V1, V2> whenAllSucceed(ClosingFuture<V1> future1, ClosingFuture<V2> future2) {
        return new Combiner2<>(future1, future2);
      }
    
      /**
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Oct 08 19:36:35 UTC 2024
    - 98.5K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/Maps.java

          @Override
          @ParametricNullness
          public V2 apply(@ParametricNullness V1 v1) {
            return transformer.transformEntry(key, v1);
          }
        };
      }
    
      /** Views an entry transformer as a function from {@code Entry} to values. */
      static <K extends @Nullable Object, V1 extends @Nullable Object, V2 extends @Nullable Object>
          Function<Entry<K, V1>, V2> asEntryToValueFunction(
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:05:46 UTC 2024
    - 167.4K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/Maps.java

          @Override
          @ParametricNullness
          public V2 apply(@ParametricNullness V1 v1) {
            return transformer.transformEntry(key, v1);
          }
        };
      }
    
      /** Views an entry transformer as a function from {@code Entry} to values. */
      static <K extends @Nullable Object, V1 extends @Nullable Object, V2 extends @Nullable Object>
          Function<Entry<K, V1>, V2> asEntryToValueFunction(
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:05:46 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  7. istioctl/pkg/authz/testdata/configdump.yaml

                   "@type": "type.googleapis.com/udpa.type.v1.TypedStruct",
                   "type_url": "type.googleapis.com/io.istio.http.connect_baggage.Config"
                  }
                 },
                 {
                  "name": "connect_authority",
                  "typed_config": {
                   "@type": "type.googleapis.com/udpa.type.v1.TypedStruct",
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Wed Jun 21 14:20:23 UTC 2023
    - 206.7K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/CacheTest.kt

      @Test
      fun etag() {
        val conditionalRequest =
          assertConditionallyCached(
            MockResponse.Builder()
              .addHeader("ETag: v1")
              .build(),
          )
        assertThat(conditionalRequest.headers["If-None-Match"]).isEqualTo("v1")
      }
    
      /** If both If-Modified-Since and If-None-Match conditions apply, send only If-None-Match.  */
      @Test
      fun etagAndExpirationDateInThePast() {
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 108.6K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/CallTest.kt

          .assertRequestHeader("If-None-Match", "v1") // If-None-Match in the validation request.
          .assertSentRequestAtMillis(request2SentAt, request2ReceivedAt)
          .assertReceivedResponseAtMillis(request2SentAt, request2ReceivedAt)
      }
    
      @Test
      fun conditionalCacheHit_Async() {
        server.enqueue(
          MockResponse(
            headers = headersOf("ETag", "v1"),
            body = "A",
          ),
        )
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 142.5K bytes
    - Viewed (0)
  10. cmd/metrics-v2.go

    			for k, v := range usage.ObjectSizesHistogram {
    				v1, ok := clusterObjectSizesHistogram[k]
    				if !ok {
    					clusterObjectSizesHistogram[k] = v
    				} else {
    					v1 += v
    					clusterObjectSizesHistogram[k] = v1
    				}
    			}
    			for k, v := range usage.ObjectVersionsHistogram {
    				v1, ok := clusterVersionsHistogram[k]
    				if !ok {
    					clusterVersionsHistogram[k] = v
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Aug 15 12:04:40 UTC 2024
    - 131.9K bytes
    - Viewed (0)
Back to top