Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 88 for posAt (0.06 sec)

  1. src/cmd/compile/internal/syntax/parser.go

    				}
    				condStmt = p.simpleStmt(nil, 0 /* range not permitted */)
    			}
    			p.want(_Semi)
    			if p.tok != _Lbrace {
    				post = p.simpleStmt(nil, 0 /* range not permitted */)
    				if a, _ := post.(*AssignStmt); a != nil && a.Op == Def {
    					p.syntaxErrorAt(a.Pos(), "cannot declare in post statement of for loop")
    				}
    			}
    		} else if p.tok != _Lbrace {
    			condStmt = p.simpleStmt(nil, keyword)
    		}
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tests/prepare-quantize-post-training.mlir

    // RUN: tf-opt %s -tfl-prepare-quantize="quantize-signed=true post-training-quantize=true" -cse | FileCheck %s
    // RUN: tf-opt %s -tfl-prepare-quantize="quantize-signed=true post-training-quantize=true legacy-float-scale=true" -cse| FileCheck --check-prefix=Legacy %s
    
    // CHECK-LABEL: QuantizeLstmCellInput
    func.func @QuantizeLstmCellInput(%arg0: tensor<1x28x28xf32>) -> tensor<1x28x20xf32> {
        %cst_2 = "tfl.no_value"() {value = unit} : () -> none
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  3. tests/test_generate_unique_id_function.py

        @callback_router.post(
            "/post-callback",
            response_model=List[Item],
            responses={404: {"model": List[Message]}},
            generate_unique_id_function=custom_generate_unique_id3,
        )
        def post_callback(item1: Item, item2: Item):
            return item1, item2  # pragma: nocover
    
        @app.post(
            "/",
            response_model=List[Item],
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Jan 13 15:10:26 UTC 2024
    - 66.7K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/test/testdata/zero_test.go

    // Code generated by gen/zeroGen.go. DO NOT EDIT.
    
    package main
    
    import "testing"
    
    type Z1 struct {
    	pre  [8]byte
    	mid  [1]byte
    	post [8]byte
    }
    
    //go:noinline
    func zero1_ssa(x *[1]byte) {
    	*x = [1]byte{}
    }
    func testZero1(t *testing.T) {
    	a := Z1{[8]byte{255, 255, 255, 255, 255, 255, 255, 255}, [1]byte{255}, [8]byte{255, 255, 255, 255, 255, 255, 255, 255}}
    	zero1_ssa(&a.mid)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:40:04 UTC 2020
    - 49.6K bytes
    - Viewed (0)
  5. src/net/http/client_test.go

    	}
    
    	wantSegments := []string{
    		`POST / "first"`,
    		`POST /?code=301&next=302 "c301"`,
    		`GET /?code=302 ""`,
    		`GET / ""`,
    		`POST /?code=302&next=302 "c302"`,
    		`GET /?code=302 ""`,
    		`GET / ""`,
    		`POST /?code=303&next=301 "c303wc301"`,
    		`GET /?code=301 ""`,
    		`GET / ""`,
    		`POST /?code=304 "c304"`,
    		`POST /?code=305 "c305"`,
    		`POST /?code=307&next=303,308,302 "c307"`,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  6. pkg/kubelet/server/server_test.go

    }
    
    func TestMetricMethodBuckets(t *testing.T) {
    	tests := map[string]struct {
    		method string
    		bucket string
    	}{
    		"normal GET":     {method: "GET", bucket: "GET"},
    		"normal POST":    {method: "POST", bucket: "POST"},
    		"invalid method": {method: "WEIRD", bucket: "other"},
    	}
    
    	fw := newServerTest()
    	defer fw.testHTTPServer.Close()
    
    	for _, test := range tests {
    		method := test.method
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/prove.go

    // cleanup returns the posets to the free list
    func (ft *factsTable) cleanup(f *Func) {
    	for _, po := range []*poset{ft.orderS, ft.orderU} {
    		// Make sure it's empty as it should be. A non-empty poset
    		// might cause errors and miscompilations if reused.
    		if checkEnabled {
    			if err := po.CheckEmpty(); err != nil {
    				f.Fatalf("poset not empty after function %s: %v", f.Name, err)
    			}
    		}
    		f.retPoset(po)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__authorization.k8s.io__v1_openapi.json

                },
                "type": "array",
                "x-kubernetes-list-type": "atomic"
              },
              "verbs": {
                "description": "Verb is a list of kubernetes non-resource API verbs, like: get, post, put, delete, patch, head, options.  \"*\" means all.",
                "items": {
                  "default": "",
                  "type": "string"
                },
                "type": "array",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:26 UTC 2023
    - 66.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/endpoints/installer.go

    	minRequestTimeout time.Duration
    }
    
    // Struct capturing information about an action ("GET", "POST", "WATCH", "PROXY", etc).
    type action struct {
    	Verb          string               // Verb identifying the action ("GET", "POST", "WATCH", "PROXY", etc).
    	Path          string               // The path of the action
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  10. src/net/http/request.go

    	// Form contains the parsed form data, including both the URL
    	// field's query parameters and the PATCH, POST, or PUT form data.
    	// This field is only available after ParseForm is called.
    	// The HTTP client ignores Form and uses Body instead.
    	Form url.Values
    
    	// PostForm contains the parsed form data from PATCH, POST
    	// or PUT body parameters.
    	//
    	// This field is only available after ParseForm is called.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
Back to top