Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 182 for StatusOK (0.41 sec)

  1. src/net/http/responsewrite_test.go

    				"Connection: close\r\n" +
    				"Foo: Bar Baz\r\n" +
    				"\r\n",
    		},
    
    		// Want a single Content-Length header. Fixing issue 8180 where
    		// there were two.
    		{
    			Response{
    				StatusCode:       StatusOK,
    				ProtoMajor:       1,
    				ProtoMinor:       1,
    				Request:          &Request{Method: "POST"},
    				Header:           Header{},
    				ContentLength:    0,
    				TransferEncoding: nil,
    				Body:             nil,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 07 01:07:32 UTC 2022
    - 6.9K bytes
    - Viewed (0)
  2. tests/integration/telemetry/policy/traffic_registry_only_test.go

    					Aggregation: "sum",
    					Labels: map[string]string{
    						"destination_service_name": "istio-egressgateway",
    						"response_code":            "200",
    					},
    				},
    				StatusCode: http.StatusOK,
    				RequestHeaders: map[string]string{
    					// We inject this header in the VirtualService
    					"Handled-By-Egress-Gateway": "true",
    				},
    			},
    		},
    		// TODO add HTTPS through gateway
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 18 18:03:23 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  3. pkg/ctrlz/topics/env.go

    		fw.RenderHTML(w, tmpl, getVars())
    	})
    
    	_ = context.JSONRouter().StrictSlash(true).NewRoute().Methods("GET").Path("/").HandlerFunc(func(w http.ResponseWriter, req *http.Request) {
    		fw.RenderJSON(w, http.StatusOK, getVars())
    	})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 14:06:41 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. pkg/ctrlz/topics/mem.go

    	})
    
    	_ = context.JSONRouter().StrictSlash(true).NewRoute().Methods("GET").Path("/").HandlerFunc(func(w http.ResponseWriter, req *http.Request) {
    		ms := &runtime.MemStats{}
    		runtime.ReadMemStats(ms)
    		fw.RenderJSON(w, http.StatusOK, ms)
    	})
    
    	_ = context.JSONRouter().StrictSlash(true).NewRoute().Methods("PUT").Path("/forcecollection").HandlerFunc(func(w http.ResponseWriter, req *http.Request) {
    		runtime.GC()
    		w.WriteHeader(http.StatusAccepted)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 14:06:41 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. docs/auditlog/auditlog-echo.go

    		return
    	}
    
    	log.Printf(">>> %s %s\n", r.Method, r.URL.Path)
    	var out bytes.Buffer
    	json.Indent(&out, body, "", "    ")
    	log.Printf("%s\n", out.String())
    
    	w.WriteHeader(http.StatusOK)
    }
    
    func main() {
    	flag.Parse()
    	http.HandleFunc("/", mainHandler)
    
    	log.Printf("Listening on :%d\n", port)
    	log.Fatal(http.ListenAndServe(fmt.Sprintf(":%d", port), nil))
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 21:31:13 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/delete.go

    			result = &metav1.Status{
    				Status: metav1.StatusSuccess,
    				Code:   http.StatusOK,
    				Details: &metav1.StatusDetails{
    					Kind: scope.Kind.Kind,
    				},
    			}
    		}
    
    		span.AddEvent("About to write a response")
    		defer span.AddEvent("Writing http response done")
    		transformResponseObject(ctx, scope, req, w, http.StatusOK, outputMediaType, result)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 01 10:00:32 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/endpoints/discovery/version.go

    }
    
    func (s *APIVersionHandler) ServeHTTP(w http.ResponseWriter, req *http.Request) {
    	responsewriters.WriteObjectNegotiated(s.serializer, negotiation.DefaultEndpointRestrictions, schema.GroupVersion{}, w, req, http.StatusOK,
    		&metav1.APIResourceList{GroupVersion: s.groupVersion.String(), APIResources: s.apiResourceLister.ListAPIResources()}, false)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 20:38:08 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/filters/priority-and-fairness_test.go

    		if err != nil {
    			t.Fatalf("Expected request: %q to get a response, but got error: %#v", secondRequestPathShouldWork, err)
    		}
    		if response.StatusCode != http.StatusOK {
    			t.Errorf("Expected HTTP status code: %d for request: %q, but got: %#v", http.StatusOK, secondRequestPathShouldWork, response)
    		}
    		select {
    		case <-secondHandlerDoneCh:
    		case <-time.After(wait.ForeverTestTimeout):
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  9. docs/iam/identity-manager-plugin.go

    		return
    	}
    
    	rsp, ok := tokens[token]
    	if !ok {
    		w.WriteHeader(http.StatusForbidden)
    		return
    	}
    
    	fmt.Printf("Allowed for token: %s user: %s\n", token, rsp.User)
    
    	w.WriteHeader(http.StatusOK)
    	json.NewEncoder(w).Encode(rsp)
    	return
    }
    
    func main() {
    	http.HandleFunc("/", mainHandler)
    
    	log.Print("Listening on :8081")
    	log.Fatal(http.ListenAndServe(":8081", nil))
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 21:31:13 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. pkg/ctrlz/home.go

    		if req.URL.Path == "/" {
    			// home page
    			fw.RenderHTML(w, homeTmpl, getHomeInfo())
    		} else if req.URL.Path == "/homej" || req.URL.Path == "/homej/" {
    			fw.RenderJSON(w, http.StatusOK, getHomeInfo())
    		} else if a, err := assets.FS.ReadFile("static" + req.URL.Path); err == nil {
    			// static asset
    			ext := strings.ToLower(filepath.Ext(req.URL.Path))
    			if mime, ok := mimeTypes[ext]; ok {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 14:06:41 UTC 2023
    - 2.5K bytes
    - Viewed (0)
Back to top