Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 71 for tparams (0.22 sec)

  1. src/main/webapp/js/admin/adminlte.min.js.map

    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Wed Feb 12 07:55:41 UTC 2020
    - 77K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/apps/v1/types.go

    	// +optional
    	Type DeploymentStrategyType `json:"type,omitempty" protobuf:"bytes,1,opt,name=type,casttype=DeploymentStrategyType"`
    
    	// Rolling update config params. Present only if DeploymentStrategyType =
    	// RollingUpdate.
    	//---
    	// TODO: Update this to follow our convention for oneOf, whatever we decide it
    	// to be.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/apps/v1beta2/types.go

    	// +optional
    	Type DeploymentStrategyType `json:"type,omitempty" protobuf:"bytes,1,opt,name=type,casttype=DeploymentStrategyType"`
    
    	// Rolling update config params. Present only if DeploymentStrategyType =
    	// RollingUpdate.
    	//---
    	// TODO: Update this to follow our convention for oneOf, whatever we decide it
    	// to be.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 52.2K bytes
    - Viewed (0)
  4. src/net/http/request.go

    		return nil, ErrNotMultipart
    	}
    	if r.Body == nil {
    		return nil, errors.New("missing form body")
    	}
    	d, params, err := mime.ParseMediaType(v)
    	if err != nil || !(d == "multipart/form-data" || allowMixed && d == "multipart/mixed") {
    		return nil, ErrNotMultipart
    	}
    	boundary, ok := params["boundary"]
    	if !ok {
    		return nil, ErrMissingBoundary
    	}
    	return multipart.NewReader(r.Body, boundary), nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  5. okhttp/src/test/java/okhttp3/internal/http2/HttpOverHttp2Test.kt

    import org.junit.jupiter.api.Disabled
    import org.junit.jupiter.api.Tag
    import org.junit.jupiter.api.Timeout
    import org.junit.jupiter.api.extension.RegisterExtension
    import org.junit.jupiter.params.ParameterizedTest
    import org.junit.jupiter.params.provider.ArgumentsSource
    
    /** Test how HTTP/2 interacts with HTTP features.  */
    @Timeout(60)
    @Flaky
    @Tag("Slow")
    class HttpOverHttp2Test {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 11 22:09:35 UTC 2024
    - 75.3K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/load.go

    // root packages and their dependencies.
    //
    // The set of root packages is returned by the params.listRoots function, and
    // expanded to the full set of packages by tracing imports (and possibly tests)
    // as needed.
    func loadFromRoots(ctx context.Context, params loaderParams) *loader {
    	ld := &loader{
    		loaderParams: params,
    		work:         par.NewQueue(runtime.GOMAXPROCS(0)),
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/extensions/v1beta1/types.go

    	// +optional
    	Type DeploymentStrategyType `json:"type,omitempty" protobuf:"bytes,1,opt,name=type,casttype=DeploymentStrategyType"`
    
    	// Rolling update config params. Present only if DeploymentStrategyType =
    	// RollingUpdate.
    	//---
    	// TODO: Update this to follow our convention for oneOf, whatever we decide it
    	// to be.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:29 UTC 2023
    - 61.3K bytes
    - Viewed (0)
  8. src/go/printer/nodes.go

    		return isTypeElem(x.X)
    	}
    	return false
    }
    
    func (p *printer) signature(sig *ast.FuncType) {
    	if sig.TypeParams != nil {
    		p.parameters(sig.TypeParams, funcTParam)
    	}
    	if sig.Params != nil {
    		p.parameters(sig.Params, funcParam)
    	} else {
    		p.print(token.LPAREN, token.RPAREN)
    	}
    	res := sig.Results
    	n := res.NumFields()
    	if n > 0 {
    		// res != nil
    		p.print(blank)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/internal/cache/DiskLruCacheTest.kt

    import org.junit.jupiter.api.Assumptions
    import org.junit.jupiter.api.Tag
    import org.junit.jupiter.api.Timeout
    import org.junit.jupiter.api.io.TempDir
    import org.junit.jupiter.params.ParameterizedTest
    import org.junit.jupiter.params.provider.ArgumentsSource
    
    class FileSystemParamProvider : SimpleProvider() {
      override fun arguments() =
        listOf(
          FakeFileSystem().apply { emulateUnix() } to false,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 14:55:09 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  10. src/go/types/api_test.go

    		{"mParam", lookup("t").(*Named).Method(0).Signature().Params().At(0)},
    		{"mResult", lookup("t").(*Named).Method(0).Signature().Results().At(0)},
    
    		// Interface methods
    		{"interfaceMethod", lookup("i").Underlying().(*Interface).Method(0)},
    
    		// Function type fields
    		{"ftParam", lookup("ft").Underlying().(*Signature).Params().At(0)},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
Back to top