Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for queryCS (0.38 sec)

  1. src/database/sql/sql.go

    	return tx.db.queryDC(ctx, tx.ctx, dc, release, query, args)
    }
    
    // Query executes a query that returns rows, typically a SELECT.
    //
    // Query uses [context.Background] internally; to specify the context, use
    // [Tx.QueryContext].
    func (tx *Tx) Query(query string, args ...any) (*Rows, error) {
    	return tx.QueryContext(context.Background(), query, args...)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  2. src/database/sql/sql_test.go

    	exec(t, db, "PANIC|Query|WIPE") // should run successfully: Exec does not call Query
    	exec(t, db, "WIPE")             // check not deadlocked
    
    	exec(t, db, "CREATE|people|name=string,age=int32,photo=blob,dead=bool,bdate=datetime")
    
    	expectPanic("Query Query", func() { db.Query("PANIC|Query|SELECT|people|age,name|") })
    	expectPanic("Query NumInput", func() { db.Query("PANIC|NumInput|SELECT|people|age,name|") })
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  3. cmd/admin-handlers.go

    		ki.Error = err.Error()
    	}
    	return ki
    }
    
    func fetchHealthInfo(healthCtx context.Context, objectAPI ObjectLayer, query *url.Values, healthInfoCh chan madmin.HealthInfo, healthInfo madmin.HealthInfo) {
    	hostAnonymizer := createHostAnonymizer()
    
    	anonParam := query.Get(anonymizeParam)
    	// anonAddr - Anonymizes hosts in given input string
    	// (only if the anonymize param is set to srict).
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  4. samples/addons/grafana.yaml

        by (destination_service) or sum(istio_tcp_sent_bytes_total{}) by (destination_service))\",\"refresh\":1,\"regex\":\"/.*destination_service=\\\"([^\\\"]*).*/\",\"skipUrlSync\":false,\"sort\":0,\"tagValuesQuery\":\"\",\"tagsQuery\":\"\",\"type\":\"query\",\"useTags\":false},{\"current\":{\"selected\":false,\"text\":\"destination\",\"value\":\"des...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
  5. fastapi/applications.py

                    This affects the generated OpenAPI (e.g. visible at `/docs`).
    
                    Read more about it in the
                    [FastAPI docs for Query Parameters and String Validations](https://fastapi.tiangolo.com/tutorial/query-params-str-validations/#exclude-from-openapi).
                    """
                ),
            ] = True,
            swagger_ui_parameters: Annotated[
                Optional[Dict[str, Any]],
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 00:48:03 UTC 2024
    - 172.2K bytes
    - Viewed (0)
  6. docs/metrics/prometheus/grafana/bucket/minio-bucket.json

            "multi": false,
            "name": "scrape_jobs",
            "options": [],
            "query": {
              "query": "label_values(job)",
              "refId": "StandardVariableQuery"
            },
            "refresh": 1,
            "regex": "",
            "skipUrlSync": false,
            "sort": 0,
            "type": "query"
          }
        ]
      },
      "time": {
        "from": "now-1h",
        "to": "now"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 11:11:51 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  7. src/net/http/serve_test.go

    		for _, tt := range tests {
    			t.Run(tt.query+"/allow=false", func(t *testing.T) {
    				allowSemicolons := false
    				testQuerySemicolon(t, mode, tt.query, tt.xNoSemicolons, allowSemicolons, tt.expectParseFormErr)
    			})
    			t.Run(tt.query+"/allow=true", func(t *testing.T) {
    				allowSemicolons, expectParseFormErr := true, false
    				testQuerySemicolon(t, mode, tt.query, tt.xWithSemicolons, allowSemicolons, expectParseFormErr)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  8. src/cmd/go/alldocs.go

    // module paths match the pattern.
    // A query of the form path@version specifies the result of that query,
    // which is not limited to active modules.
    // See 'go help modules' for more about module queries.
    //
    // The template function "module" takes a single string argument
    // that must be a module path or query and returns the specified
    // module as a Module struct. If an error occurs, the result will
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  9. pkg/apis/admissionregistration/validation/validation_test.go

    	}, {
    		name: "query",
    		config: newValidatingWebhookConfiguration([]admissionregistration.ValidatingWebhook{{
    			Name: "webhook.k8s.io",
    			ClientConfig: admissionregistration.WebhookClientConfig{
    				URL: strPtr("https://example.com?arg=value"),
    			},
    		},
    		}, true),
    		expectedError: `"arg=value": query parameters are not permitted`,
    	}, {
    		name: "user",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 147.1K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet.go

    				if nlq, errs := newNodeLogQuery(req.URL.Query()); len(errs) > 0 {
    					http.Error(w, errs.ToAggregate().Error(), http.StatusBadRequest)
    					return
    				} else if nlq != nil {
    					if req.URL.Path != "/" && req.URL.Path != "" {
    						http.Error(w, "path not allowed in query mode", http.StatusNotAcceptable)
    						return
    					}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
Back to top