Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for emptyOne (0.32 sec)

  1. src/runtime/map.go

    				*(*unsafe.Pointer)(e) = nil
    			} else if t.Elem.Pointers() {
    				memclrHasPointers(e, t.Elem.Size_)
    			} else {
    				memclrNoHeapPointers(e, t.Elem.Size_)
    			}
    			b.tophash[i] = emptyOne
    			// If the bucket now ends in a bunch of emptyOne states,
    			// change those to emptyRest states.
    			// It would be nice to make this a separate function, but
    			// for loops are not currently inlineable.
    			if i == abi.MapBucketCount-1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/EventListenerTest.kt

        assertThat(callFailed.call).isSameAs(call)
        assertThat(callFailed.ioe).isInstanceOf<UnknownHostException>()
      }
    
      @Test
      fun emptyDnsLookup() {
        val emptyDns = Dns { listOf() }
        client =
          client.newBuilder()
            .dns(emptyDns)
            .build()
        val call =
          client.newCall(
            Request.Builder()
              .url("http://fakeurl/")
              .build(),
          )
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 56.9K bytes
    - Viewed (0)
  3. pkg/apis/certificates/validation/validation_test.go

    				Name: "k8s.io:foo:bar",
    			},
    			Spec: capi.ClusterTrustBundleSpec{
    				SignerName:  "k8s.io/foo",
    				TrustBundle: goodCert1Block + "\n" + goodCert2Block,
    			},
    		},
    	}, {
    		description: "emptying trustBundle disallowed",
    		oldBundle: &capi.ClusterTrustBundle{
    			ObjectMeta: metav1.ObjectMeta{
    				Name: "k8s.io:foo:bar",
    			},
    			Spec: capi.ClusterTrustBundleSpec{
    				SignerName:  "k8s.io/foo",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:49 UTC 2023
    - 61K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/MapPropertySpec.groovy

            [k1: "1"]           | { it.empty() }            | { it.put("k1", "1") }                                 | "put after emptying"
            [k1: "1"]           | { it.empty() }            | { it.insert("k1", "1") }                              | "insert after emptying"
            [k1: "1"]           | { it.set([:]) }           | { it.put("k1", "1") }                                 | "put to empty"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 58.7K bytes
    - Viewed (0)
Back to top