Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 52 for emptypb (0.15 sec)

  1. pkg/kubelet/kubelet_node_status_test.go

    	fakeRuntime.RuntimeStatus = nil
    	kubelet.updateRuntimeUp()
    	checkNodeStatus(v1.ConditionFalse, "KubeletNotReady")
    
    	// Should report node not ready if runtime status is empty.
    	fakeRuntime.RuntimeStatus = &kubecontainer.RuntimeStatus{}
    	kubelet.updateRuntimeUp()
    	checkNodeStatus(v1.ConditionFalse, "KubeletNotReady")
    
    	// Should report node not ready if RuntimeReady is false.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

                      pair.second) == outside_compilation_nodes.end()) {
          outside_compilation_nodes.push_back(pair.second);
          // Then branch does not contain this lifted arg. Add an empty item to
          // then_branch_lifted_arg_nodes.
          then_branch_lifted_arg_nodes.push_back(nullptr);
        }
      }
      // Reorder else_branch_lifted_arg_nodes_and_outside_compilation_nodes.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
  3. src/crypto/x509/x509_test.go

    		}
    	}
    }
    
    func TestVerifyEmptyCertificate(t *testing.T) {
    	if _, err := new(Certificate).Verify(VerifyOptions{}); err != errNotParsed {
    		t.Errorf("Verifying empty certificate resulted in unexpected error: %q (wanted %q)", err, errNotParsed)
    	}
    }
    
    func TestInsecureAlgorithmErrorString(t *testing.T) {
    	tests := []struct {
    		sa   SignatureAlgorithm
    		want string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/gateway_test.go

    					exampleService,
    				},
    			})
    			r := cg.ConfigGen.buildGatewayHTTPRouteConfig(cg.SetupProxy(&proxyGateway), cg.PushContext(), tt.routeName)
    			if r == nil {
    				t.Fatal("got an empty route configuration")
    			}
    			if r.MaxDirectResponseBodySizeBytes != istio_route.DefaultMaxDirectResponseBodySizeBytes {
    				t.Errorf("expected MaxDirectResponseBodySizeBytes %v, got %v",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 144K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.4.md

    * Patch CVE-2016-8859 in alpine based images: ([#42937](https://github.com/kubernetes/kubernetes/pull/42937), [@timstclair](https://github.com/timstclair))
        * - gcr.io/google-containers/etcd-empty-dir-cleanup
        * - gcr.io/google-containers/kube-dnsmasq-amd64
    * Check if pathExists before performing Unmount ([#39311](https://github.com/kubernetes/kubernetes/pull/39311), [@rkouj](https://github.com/rkouj))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
  6. tests/integration/pilot/common/routing.go

    									Build(),
    							},
    							Count: 1,
    							Check: check.Status(http.StatusOK),
    						}
    					}(),
    				},
    				{
    					name: "have end-user header but value is empty",
    					opts: func() echo.CallOptions {
    						return echo.CallOptions{
    							Port: echo.Port{
    								Name: "http",
    							},
    							HTTP: echo.HTTP{
    								Path: "/foo",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  7. src/net/http/serve_test.go

    		// Spaces between the header key and colon are not allowed.
    		// See RFC 7230, Section 3.2.4.
    		{"Foo : bar\r\n", 400},
    		{"Foo\t: bar\r\n", 400},
    
    		// Empty header keys are invalid.
    		// See RFC 7230, Section 3.2.
    		{": empty key\r\n", 400},
    
    		// Requests with invalid Content-Length headers should be rejected
    		// regardless of the presence of a Transfer-Encoding header.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.5.md

    * Fixes API compatibility issue with empty lists incorrectly returning a null `items` field instead of an empty array. ([#39834](https://github.com/kubernetes/kubernetes/pull/39834), [@liggitt](https://github.com/liggitt))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (0)
  9. pkg/printers/internalversion/printers.go

    		}
    	}
    	return namesBuffer.String(), imagesBuffer.String()
    }
    
    // formatEventSource formats EventSource as a comma separated string excluding Host when empty.
    // It uses reportingController when Source.Component is empty and reportingInstance when Source.Host is empty
    func formatEventSource(es api.EventSource, reportingController, reportingInstance string) string {
    	return formatEventSourceComponentInstance(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  10. src/database/sql/sql.go

    //
    // For a more concise way to create NamedArg values, see
    // the [Named] function.
    type NamedArg struct {
    	_NamedFieldsRequired struct{}
    
    	// Name is the name of the parameter placeholder.
    	//
    	// If empty, the ordinal position in the argument list will be
    	// used.
    	//
    	// Name must omit any symbol prefix.
    	Name string
    
    	// Value is the value of the parameter.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
Back to top