Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 36 for died (0.21 sec)

  1. pkg/kubelet/kubelet_pods.go

    	// of such pods should not be changed, and there is no need to sync them.
    	// TODO: the logic here does not handle two cases:
    	//   1. If the containers were removed immediately after they died, kubelet
    	//      may fail to generate correct statuses, let alone filtering correctly.
    	//   2. If kubelet restarted before writing the terminated status for a pod
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  2. src/net/http/server.go

    		// If the server never writes, yes, there are still contrived
    		// server & client behaviors where this fails to ever cancel the
    		// context, but that's kinda why HTTP/1.x pipelining died
    		// anyway.
    	}
    	if ne, ok := err.(net.Error); ok && cr.aborted && ne.Timeout() {
    		// Ignore this error. It's the expected error from
    		// another goroutine calling abortPendingRead.
    	} else if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K 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. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/net/http/serve_test.go

    	if err != nil {
    		t.Fatalf("error dialing: %v", err)
    	}
    	diec := make(chan bool)
    	go func() {
    		_, err = fmt.Fprintf(conn, "GET / HTTP/1.1\r\nConnection: keep-alive\r\nHost: foo\r\n\r\n")
    		if err != nil {
    			t.Error(err)
    			return
    		}
    		<-diec
    		conn.Close()
    	}()
    For:
    	for {
    		select {
    		case <-gotReq:
    			diec <- true
    		case <-sawClose:
    			break For
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top