Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for density (0.23 sec)

  1. CHANGELOG/CHANGELOG-1.4.md

    * AWS/GCE: Rework use of master name ([#30047](https://github.com/kubernetes/kubernetes/pull/30047), [@zmerlynn](https://github.com/zmerlynn))
    * Add density (batch pods creation latency and resource) and resource performance tests to `test-e2e-node' built for Linux only ([#30026](https://github.com/kubernetes/kubernetes/pull/30026), [@coufon](https://github.com/coufon))
    Plain Text
    - Registered: Fri Apr 26 09:05:10 GMT 2024
    - Last Modified: Thu Dec 24 02:28:26 GMT 2020
    - 133.5K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        }
      }
    
      public void testTransform_rejectionPropagatesToOutput() throws Exception {
        SettableFuture<Foo> input = SettableFuture.create();
        Function<Foo, Foo> identity = identity();
        ListenableFuture<Foo> transformed = transform(input, identity, REJECTING_EXECUTOR);
        input.set(new Foo());
        try {
          getDone(transformed);
          fail();
        } catch (ExecutionException expected) {
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Tue Feb 20 17:00:05 GMT 2024
    - 144.5K bytes
    - Viewed (0)
  3. cmd/site-replication.go

    				if _, ok := info.GroupStats[g]; !ok {
    					info.GroupStats[g] = make(map[string]madmin.SRGroupStatsSummary, numSites)
    				}
    				info.GroupStats[g][dID] = st.SRGroupStatsSummary
    			}
    		}
    	}
    	for p, stat := range sinfo.PolicyStats {
    		for dID, st := range stat {
    			if st.PolicyMismatch || opts.Entity == madmin.SRPolicyEntity {
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 25 15:50:16 GMT 2024
    - 184.1K bytes
    - Viewed (1)
  4. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        }
      }
    
      public void testTransform_rejectionPropagatesToOutput() throws Exception {
        SettableFuture<Foo> input = SettableFuture.create();
        Function<Foo, Foo> identity = identity();
        ListenableFuture<Foo> transformed = transform(input, identity, REJECTING_EXECUTOR);
        input.set(new Foo());
        try {
          getDone(transformed);
          fail();
        } catch (ExecutionException expected) {
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Tue Feb 20 17:00:05 GMT 2024
    - 144.5K bytes
    - Viewed (0)
  5. okhttp/src/test/java/okhttp3/CacheTest.kt

            .header("Accept-Encoding", "identity")
            .build()
        val response1 = client.newCall(request).execute()
        assertThat(response1.body.string()).isEqualTo("A")
        val request1 =
          Request.Builder()
            .url(url)
            .header("Accept-Language", "fr-CA")
            .header("Accept-Charset", "UTF-8")
            .header("Accept-Encoding", "identity")
            .build()
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Wed Apr 10 19:46:48 GMT 2024
    - 108.6K bytes
    - Viewed (0)
  6. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    // bike : 2013-08-27 Binky Moon, LLC
    bike
    
    // bing : 2014-12-18 Microsoft Corporation
    bing
    
    // bingo : 2014-12-04 Binky Moon, LLC
    bingo
    
    // bio : 2014-03-06 Identity Digital Limited
    bio
    
    // black : 2014-01-16 Identity Digital Limited
    black
    
    // blackfriday : 2014-01-16 Registry Services, LLC
    blackfriday
    
    // blockbuster : 2015-07-30 Dish DBS Corporation
    blockbuster
    
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Wed Dec 20 23:27:07 GMT 2023
    - 240.3K bytes
    - Viewed (3)
  7. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

      fun getContentEncodingConnects() {
        server.enqueue(
          MockResponse(
            headers = headersOf("Content-Encoding", "identity"),
            body = "ABC",
          ),
        )
        val response = getResponse(newRequest("/"))
        assertThat(response.header("Content-Encoding")).isEqualTo("identity")
        response.body.close()
      }
    
      @Test
      fun urlContainsQueryButNoPath() {
        server.enqueue(
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Sat Jan 20 10:30:28 GMT 2024
    - 131.7K bytes
    - Viewed (0)
  8. doc/go1.17_spec.html

    field declaration. An empty tag string is equivalent to an absent tag.
    The tags are made visible through a <a href="/pkg/reflect/#StructTag">reflection interface</a>
    and take part in <a href="#Type_identity">type identity</a> for structs
    but are otherwise ignored.
    </p>
    
    <pre>
    struct {
    	x, y float64 ""  // an empty tag string is like an absent tag
    	name string  "any string is permitted as a tag"
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtFirDataClassConverters.kt

            )
        }
        add(FirErrors.FORBIDDEN_IDENTITY_EQUALS) { firDiagnostic ->
            ForbiddenIdentityEqualsImpl(
                firSymbolBuilder.typeBuilder.buildKtType(firDiagnostic.a),
                firSymbolBuilder.typeBuilder.buildKtType(firDiagnostic.b),
                firDiagnostic as KtPsiDiagnostic,
                token,
            )
        }
        add(FirErrors.FORBIDDEN_IDENTITY_EQUALS_WARNING) { firDiagnostic ->
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Wed Apr 24 09:49:26 GMT 2024
    - 208.3K bytes
    - Viewed (0)
  10. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    type: string privateKey: description: REQUIRED if mode is `MUTUAL`. type: string sni: description: SNI string to present to the server during TLS handshake. type: string subjectAltNames: description: A list of alternate names to verify the subject identity in the certificate. items: type: string type: array type: object type: object type: array proxyProtocol: description: The upstream PROXY protocol settings. properties: version: description: The PROXY protocol version to use. enum: - V1 - V2 type:...
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Wed Jan 10 05:10:03 GMT 2024
    - 198.1K bytes
    - Viewed (1)
Back to top