Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 53 for Did (0.14 sec)

  1. cmd/site-replication.go

    			p = pi
    		} else {
    			p = v
    		}
    		wg.Add(1)
    		go func(pi madmin.PeerInfo, dID string) {
    			defer wg.Done()
    			admClient, err := c.getAdminClient(ctx, dID)
    			if dID == peer.DeploymentID {
    				admClient, err = c.getAdminClientWithEndpoint(ctx, dID, pi.Endpoint)
    			}
    			if err != nil {
    				errs[dID] = errSRPeerResp(fmt.Errorf("unable to create admin client for %s: %w", pi.Name, err))
    				return
    			}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

      `I never went to him,' the Mock Turtle said with a sigh:  `he
    taught Laughing and Grief, they used to say.'
    
      `So he did, so he did,' said the Gryphon, sighing in his turn;
    and both creatures hid their faces in their paws.
    
      `And how many hours a day did you do lessons?' said Alice, in a
    hurry to change the subject.
    
      `Ten hours the first day,' said the Mock Turtle: `nine the
    next, and so on.'
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 29 21:35:03 UTC 2012
    - 145.2K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

      `I never went to him,' the Mock Turtle said with a sigh:  `he
    taught Laughing and Grief, they used to say.'
    
      `So he did, so he did,' said the Gryphon, sighing in his turn;
    and both creatures hid their faces in their paws.
    
      `And how many hours a day did you do lessons?' said Alice, in a
    hurry to change the subject.
    
      `Ten hours the first day,' said the Mock Turtle: `nine the
    next, and so on.'
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 145.2K bytes
    - Viewed (0)
  4. src/compress/bzip2/testdata/Isaac.Newton-Opticks.txt.bz2

    suffice to affect the Sense so strongly as to disturb the Phænomena of that weak and dark Colour the violet, and therefore I tried, as in the 12th, 13th, and 14th Experiments, whether the Light of this Colour did not consist of a sensible Mixture of heterogeneous Rays, but found it did not. Nor did the Refractions cause any other sensible Colour than violet to emerge out of this Light, as they would have done out of white Light, and by consequence out of this violet Light had it been sensibly compounded...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 24 18:26:02 UTC 2018
    - 129.4K bytes
    - Viewed (0)
  5. src/reflect/all_test.go

    	func() {
    		defer func() { recover() }()
    		new(MapIter).Key()
    		t.Fatal("Key did not panic")
    	}()
    	func() {
    		defer func() { recover() }()
    		new(MapIter).Value()
    		t.Fatal("Value did not panic")
    	}()
    	func() {
    		defer func() { recover() }()
    		new(MapIter).Next()
    		t.Fatal("Next did not panic")
    	}()
    
    	// Calling Key/Value on a MapIter before Next
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  6. pkg/kubelet/eviction/helpers_test.go

    			}
    			if hardContainerFsMatch == -1 {
    				t.Fatalf("did not find hard containerfs.available")
    			}
    			if softContainerFsMatch == -1 {
    				t.Fatalf("did not find soft containerfs.available")
    			}
    			if hardContainerFsINodesMatch == -1 {
    				t.Fatalf("did not find hard containerfs.inodesfree")
    			}
    			if softContainerFsINodesMatch == -1 {
    				t.Fatalf("did not find soft containerfs.inodesfree")
    			}
    		})
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 106.7K bytes
    - Viewed (0)
  7. src/crypto/x509/x509_test.go

    	data := []byte("0\x16\x02\x00\x02\x02\u007f\x00\x02\x0200\x02\x0200\x02\x02\x00\x01\x02\x02\u007f\x00")
    	if _, err := ParsePKCS1PrivateKey(data); err == nil {
    		t.Errorf("parsing invalid private key did not result in an error")
    	}
    }
    
    func TestPKCS1MismatchPublicKeyFormat(t *testing.T) {
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  8. pkg/controller/statefulset/stateful_set_control_test.go

    		expectedNumOfDeleteRequests++
    		if _, err = ssc.UpdateStatefulSet(context.TODO(), set, pods); !isOrHasInternalError(err) {
    			t.Errorf("StatefulSetControl did not return InternalError, found %s", err)
    		}
    		if err := invariants(set, om); err != nil {
    			t.Error(err)
    		}
    		if om.deletePodTracker.requests != expectedNumOfDeleteRequests {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 19:01:47 UTC 2024
    - 108.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    							found = true
    						} else {
    							t.Errorf("unexpected err: %v", err)
    						}
    					}
    					if !found {
    						t.Errorf("expect cost limit exceed err but did not find")
    					}
    					if len(errs) > 1 {
    						t.Errorf("expect to only return cost budget exceed err once but got: %v", len(errs))
    					}
    
    					// test with PerCallLimit exceeded
    					found = false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/endpoints/apiserver_test.go

    		} else {
    			out, err := json.Marshal(unstructured)
    			if err != nil {
    				t.Fatal(err)
    			}
    			expect = string(out) + "\n"
    		}
    		if expect != body {
    			t.Errorf("%d: body did not match expected:\n%s\n%s", i, body, expect)
    		}
    	}
    }
    
    func TestGetTable(t *testing.T) {
    	now := metav1.Now()
    	obj := genericapitesting.Simple{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 20:15:22 UTC 2023
    - 158.7K bytes
    - Viewed (0)
Back to top