Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for zab (0.01 sec)

  1. pkg/volume/util/atomic_writer_test.go

    					"bar/zab.txt":      {Mode: 0644, Data: []byte("bar/zab.txt")},
    					"foo/blaz/bar.txt": {Mode: 0644, Data: []byte("foo/blaz/bar")},
    					"bar/zib/zab.txt":  {Mode: 0644, Data: []byte("bar/zib/zab.txt")},
    				},
    				{
    					"foo/bar.txt":      {Mode: 0644, Data: []byte("foo/bar2")},
    					"bar/zab.txt":      {Mode: 0644, Data: []byte("bar/zab.txt2")},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 09:02:45 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  2. pkg/scheduler/internal/heap/heap_test.go

    func TestHeap_Add(t *testing.T) {
    	h := New(testHeapObjectKeyFunc, compareInts)
    	h.Add(mkHeapObj("foo", 10))
    	h.Add(mkHeapObj("bar", 1))
    	h.Add(mkHeapObj("baz", 11))
    	h.Add(mkHeapObj("zab", 30))
    	h.Add(mkHeapObj("foo", 13)) // This updates "foo".
    
    	item, err := h.Pop()
    	if e, a := 1, item.(testHeapObject).val; err != nil || a != e {
    		t.Fatalf("expected %d, got %d", e, a)
    	}
    	item, err = h.Pop()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 05 02:24:38 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  3. pkg/volume/projected/projected_test.go

    				"another/path/to/the/esteemed/bar.bin": {Data: []byte("bar"), Mode: 0644},
    			},
    			success: true,
    		},
    		{
    			name: "non existent key",
    			mappings: []v1.KeyToPath{
    				{
    					Key:  "zab",
    					Path: "path/to/foo.txt",
    				},
    			},
    			secret: &v1.Secret{
    				Data: map[string][]byte{
    					"foo": []byte("foo"),
    					"bar": []byte("bar"),
    				},
    			},
    			mode:    0644,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:48 UTC 2023
    - 40.5K bytes
    - Viewed (0)
  4. pkg/volume/configmap/configmap_test.go

    				"another/path/to/the/esteemed/bar.bin": {Data: []byte("bar"), Mode: 0644},
    			},
    			success: true,
    		},
    		{
    			name: "non existent key",
    			mappings: []v1.KeyToPath{
    				{
    					Key:  "zab",
    					Path: "path/to/foo.txt",
    				},
    			},
    			configMap: &v1.ConfigMap{
    				Data: map[string]string{
    					"foo": "foo",
    					"bar": "bar",
    				},
    			},
    			mode:    0644,
    			success: false,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 16 11:12:06 UTC 2022
    - 19.9K bytes
    - Viewed (0)
  5. pkg/volume/secret/secret_test.go

    				"another/path/to/the/esteemed/bar.bin": {Data: []byte("bar"), Mode: 0644},
    			},
    			success: true,
    		},
    		{
    			name: "non existent key",
    			mappings: []v1.KeyToPath{
    				{
    					Key:  "zab",
    					Path: "path/to/foo.txt",
    				},
    			},
    			secret: &v1.Secret{
    				Data: map[string][]byte{
    					"foo": []byte("foo"),
    					"bar": []byte("bar"),
    				},
    			},
    			mode:    0644,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 01 15:56:32 UTC 2022
    - 19.5K bytes
    - Viewed (0)
Back to top