Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,183 for emptypb (0.2 sec)

  1. src/os/user/listgroups_unix_test.go

    var testGroupFile = `# See the opendirectoryd(8) man page for additional
    # information about Open Directory.
    ##
    nobody:*:-2:
    nogroup:*:-1:
    wheel:*:0:root
    emptyid:*::root
    invalidgid:*:notanumber:root
    +plussign:*:20:root
    -minussign:*:21:root
    # Next line is invalid (empty group name)
    :*:22:root
    
    daemon:*:1:root
        indented:*:7:root
    # comment:*:4:found
         # comment:*:4:found
    kmem:*:2:root
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. src/text/template/exec_test.go

    	// Empty interfaces holding values.
    	{"empty nil", "{{.Empty0}}", "<no value>", tVal, true},
    	{"empty with int", "{{.Empty1}}", "3", tVal, true},
    	{"empty with string", "{{.Empty2}}", "empty2", tVal, true},
    	{"empty with slice", "{{.Empty3}}", "[7 8]", tVal, true},
    	{"empty with struct", "{{.Empty4}}", "{UinEmpty}", tVal, true},
    	{"empty with struct, field", "{{.Empty4.V}}", "UinEmpty", tVal, true},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  3. tools/istio-iptables/pkg/capture/testdata/ipv6-empty-inbound-ports.golden

    Ben Leggett <******@****.***> 1710179183 -0400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 17:46:23 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  4. android/guava-testlib/src/com/google/common/collect/testing/testers/CollectionToArrayTester.java

        assertEquals(Object[].class, array.getClass());
      }
    
      public void testToArray_emptyArray() {
        E[] empty = getSubjectGenerator().createArray(0);
        E[] array = collection.toArray(empty);
        assertEquals(
            "toArray(emptyT[]) should return an array of type T", empty.getClass(), array.getClass());
        assertEquals("toArray(emptyT[]).length:", getNumElements(), array.length);
        expectArrayContentsAnyOrder(createSamplesArray(), array);
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  5. buildscripts/verify-healing-empty-erasure-set.sh

    Anis Eleuch <******@****.***> 1717166930 +0100
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 31 14:48:50 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  6. pkg/kube/inject/testdata/inject/traffic-annotations-empty-includes.yaml.injected

    John Howard <******@****.***> 1709052916 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  7. pkg/util/smallset/smallset_test.go

    	var uninit smallset.Set[string]
    	assert.Equal(t, uninit.IsNil(), true)
    	assert.Equal(t, uninit.IsEmpty(), true)
    	empty := smallset.New[string]()
    	assert.Equal(t, empty.IsNil(), true)
    	assert.Equal(t, empty.IsEmpty(), true)
    	empty2 := smallset.New[string]([]string{}...)
    	assert.Equal(t, empty2.IsNil(), false)
    	assert.Equal(t, empty2.IsEmpty(), true)
    }
    
    func BenchmarkSet(b *testing.B) {
    	items1000 := []string{}
    	for i := 0; i < 1000; i++ {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 4K bytes
    - Viewed (0)
  8. pilot/pkg/security/authz/builder/testdata/http/extended-allow-empty-rule-out.yaml

    Kuat <******@****.***> 1711363165 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 10:39:25 UTC 2024
    - 390 bytes
    - Viewed (0)
  9. pkg/kube/inject/testdata/inject/traffic-params-empty-includes.yaml.injected

    John Howard <******@****.***> 1709052916 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  10. pilot/pkg/security/authz/builder/testdata/http/extended-deny-empty-rule-out.yaml

    Kuat <******@****.***> 1711363165 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 10:39:25 UTC 2024
    - 406 bytes
    - Viewed (0)
Back to top