Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 31 for getZ (0.06 sec)

  1. src/net/http/transport_test.go

    	req, _ := NewRequest("GET", "http://foo.com/", nil)
    	req.Method = ""                                 // docs say "For client requests an empty string means GET"
    	got, err := httputil.DumpRequestOut(req, false) // DumpRequestOut uses Transport
    	if err != nil {
    		t.Fatal(err)
    	}
    	if !strings.Contains(string(got), "GET ") {
    		t.Fatalf("expected substring 'GET '; got: %s", got)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  2. api/openapi-spec/v3/apis__apiregistration.k8s.io__v1_openapi.json

        }
      },
      "info": {
        "title": "Kubernetes",
        "version": "unversioned"
      },
      "openapi": "3.0.0",
      "paths": {
        "/apis/apiregistration.k8s.io/v1/": {
          "get": {
            "description": "get available resources",
            "operationId": "getApiregistrationV1APIResources",
            "responses": {
              "200": {
                "content": {
                  "application/json": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 135.1K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/data.go

    	}
    	data[len(prefix)+1] |= 2 // signals new pointer-free format
    	data = appendString(data, strdata["runtime.buildVersion"])
    	data = appendString(data, strdata["runtime.modinfo"])
    	// MacOS linker gets very upset if the size os not a multiple of alignment.
    	for len(data)%16 != 0 {
    		data = append(data, 0)
    	}
    	s.SetData(data)
    	s.SetSize(int64(len(data)))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  4. src/net/http/server.go

    	_, hadCT := h["Content-Type"]
    
    	h.Set("Location", hexEscapeNonASCII(url))
    	if !hadCT && (r.Method == "GET" || r.Method == "HEAD") {
    		h.Set("Content-Type", "text/html; charset=utf-8")
    	}
    	w.WriteHeader(code)
    
    	// Shouldn't send the body for POST or HEAD; that leaves GET.
    	if !hadCT && r.Method == "GET" {
    		body := "<a href=\"" + htmlEscape(url) + "\">" + StatusText(code) + "</a>.\n"
    		fmt.Fprintln(w, body)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_pods_test.go

    			}
    
    			testKubelet.fakeKubeClient.AddReactor("get", "configmaps", func(action core.Action) (bool, runtime.Object, error) {
    				var err error
    				if tc.configMap == nil {
    					err = apierrors.NewNotFound(action.GetResource().GroupResource(), "configmap-name")
    				}
    				return true, tc.configMap, err
    			})
    			testKubelet.fakeKubeClient.AddReactor("get", "secrets", func(action core.Action) (bool, runtime.Object, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  6. pkg/printers/internalversion/printers_test.go

    			expected: []metav1.TableRow{{Cells: []interface{}{"service3", "LoadBalancer", "1.4.5.6", "2.3.4.5", "80/TCP,8090/UDP,8000/TCP", "<unknown>"}}},
    		},
    		// Long external IP's list gets elided.
    		{
    			service: api.Service{
    				ObjectMeta: metav1.ObjectMeta{Name: "service4"},
    				Spec: api.ServiceSpec{
    					ClusterIPs: []string{"1.5.6.7"},
    					Type:       "LoadBalancer",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/ppc64/asm9.go

    	"cmd/internal/objabi"
    	"encoding/binary"
    	"fmt"
    	"internal/buildcfg"
    	"log"
    	"math"
    	"math/bits"
    	"sort"
    )
    
    // ctxt9 holds state while assembling a single function.
    // Each function gets a fresh ctxt9.
    // This allows for multiple functions to be safely concurrently assembled.
    type ctxt9 struct {
    	ctxt       *obj.Link
    	newprog    obj.ProgAlloc
    	cursym     *obj.LSym
    	autosize   int32
    	instoffset int64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  8. pkg/controller/job/job_controller_test.go

    	key, done = jm.queue.Get()
    	if key == "" || done {
    		t.Fatalf("failed to enqueue controller for pod %v", pod2.Name)
    	}
    	expectedKey, _ = controller.KeyFunc(job2)
    	if got, want := key, expectedKey; got != want {
    		t.Errorf("queue.Get() = %v, want %v", got, want)
    	}
    }
    
    func TestDeletePodOrphan(t *testing.T) {
    	// Disable batching of pod updates to show it does not get requeued at all
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/s390x/asmz.go

    // THE SOFTWARE.
    
    package s390x
    
    import (
    	"cmd/internal/obj"
    	"cmd/internal/objabi"
    	"fmt"
    	"log"
    	"math"
    	"sort"
    )
    
    // ctxtz holds state while assembling a single function.
    // Each function gets a fresh ctxtz.
    // This allows for multiple functions to be safely concurrently assembled.
    type ctxtz struct {
    	ctxt       *obj.Link
    	newprog    obj.ProgAlloc
    	cursym     *obj.LSym
    	autosize   int32
    	instoffset int64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/arm64/asm7.go

    package arm64
    
    import (
    	"cmd/internal/obj"
    	"cmd/internal/objabi"
    	"fmt"
    	"log"
    	"math"
    	"sort"
    	"strings"
    )
    
    // ctxt7 holds state while assembling a single function.
    // Each function gets a fresh ctxt7.
    // This allows for multiple functions to be safely concurrently assembled.
    type ctxt7 struct {
    	ctxt       *obj.Link
    	newprog    obj.ProgAlloc
    	cursym     *obj.LSym
    	blitrl     *obj.Prog
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
Back to top