Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 1,700 for parms (0.07 sec)

  1. src/mime/multipart/writer_test.go

    			}
    
    			ct := w.FormDataContentType()
    			mt, params, err := mime.ParseMediaType(ct)
    			if err != nil {
    				t.Errorf("could not parse Content-Type %q: %v", ct, err)
    			} else if mt != "multipart/form-data" {
    				t.Errorf("unexpected media type %q; want %q", mt, "multipart/form-data")
    			} else if b := params["boundary"]; b != tt.b {
    				t.Errorf("unexpected boundary parameter %q; want %q", b, tt.b)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 17:36:47 UTC 2022
    - 4.1K bytes
    - Viewed (0)
  2. src/database/sql/fakedb_test.go

    	}
    	return stmt, nil
    }
    
    // parts are table|col=type,col2=type2
    func (c *fakeConn) prepareCreate(stmt *fakeStmt, parts []string) (*fakeStmt, error) {
    	if len(parts) != 2 {
    		stmt.Close()
    		return nil, errf("invalid CREATE syntax with %d parts; want 2", len(parts))
    	}
    	stmt.table = parts[0]
    	for n, colspec := range strings.Split(parts[1], ",") {
    		nameType := strings.Split(colspec, "=")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 12:38:07 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  3. cmd/testdata/xl-many-parts.meta

    Harshavardhana <******@****.***> 1693690838 -0700
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Sep 02 21:40:38 UTC 2023
    - 808.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/endpoints/installer.go

    // the resource and subresource components.
    func splitSubresource(path string) (string, string, error) {
    	var resource, subresource string
    	switch parts := strings.Split(path, "/"); len(parts) {
    	case 2:
    		resource, subresource = parts[0], parts[1]
    	case 1:
    		resource = parts[0]
    	default:
    		// TODO: support deeper paths
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/admission_test.go

    // for the given parameters, then constructs a scenario with several matching/non-matching params
    // of varying names, namespaces, labels.
    //
    // Test then selects subset of params that should match provided configuration
    // and ensuers those params are the only ones used.
    //
    // Also ensures NotFound action is enforced correctly by deleting all found
    // params and ensuring the Action is used.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 25 01:39:01 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  6. tests/integration/security/testdata/requestauthn/headers-params.yaml.tmpl

    Akshay J Nambiar <******@****.***> 1683529381 +0530
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 08 07:03:01 UTC 2023
    - 867 bytes
    - Viewed (0)
  7. tools/bug-report/pkg/bugreport/bugreport.go

    	getFromCluster(content.GetClusterInfo, params, clusterDir, &mandatoryWg)
    	getFromCluster(content.GetNodeInfo, params, clusterDir, &mandatoryWg)
    	getFromCluster(content.GetSecrets, params.SetVerbose(config.FullSecrets), clusterDir, &mandatoryWg)
    	getFromCluster(content.GetPodInfo, params.SetIstioNamespace(config.IstioNamespace), clusterDir, &mandatoryWg)
    
    	common.LogAndPrintf("\nFetching CNI logs from cluster.\n\n")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 20:57:29 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  8. pkg/kube/inject/inject.go

    }
    
    func extractClusterAndNetwork(params InjectionParameters) (string, string) {
    	metadata := &params.pod.ObjectMeta
    	cluster := params.valuesConfig.asStruct.GetGlobal().GetMultiCluster().GetClusterName()
    	// TODO allow overriding the values.global network in injection with the system namespace label
    	network := params.valuesConfig.asStruct.GetGlobal().GetNetwork()
    	// params may be set from webhook URL, take priority over values yaml
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 20:35:11 UTC 2024
    - 28.8K bytes
    - Viewed (1)
  9. pkg/kube/inject/testdata/inject/traffic-params.yaml.injected

    John Howard <******@****.***> 1709052916 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  10. docs/zh/docs/tutorial/body-multiple-params.md

    Sebastián Ramírez <******@****.***> 1697522351 +0400
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Oct 17 05:59:11 UTC 2023
    - 7.6K bytes
    - Viewed (0)
Back to top