Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 36 for tparams (0.16 sec)

  1. src/go/types/expr.go

    		return
    	}
    	var what string
    	switch t := x.typ.(type) {
    	case *Alias, *Named:
    		if isGeneric(t) {
    			what = "type"
    		}
    	case *Signature:
    		if t.tparams != nil {
    			if enableReverseTypeInference && T != nil {
    				check.funcInst(T, x.Pos(), x, nil, true)
    				return
    			}
    			what = "function"
    		}
    	}
    	if what != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/expr.go

    		return
    	}
    	var what string
    	switch t := x.typ.(type) {
    	case *Alias, *Named:
    		if isGeneric(t) {
    			what = "type"
    		}
    	case *Signature:
    		if t.tparams != nil {
    			if enableReverseTypeInference && T != nil {
    				check.funcInst(T, x.Pos(), x, nil, true)
    				return
    			}
    			what = "function"
    		}
    	}
    	if what != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/debug.go

    			// if we hit a call, we've gone too far.
    			break
    		}
    	}
    
    	// Now make a pass through the ABI in-params, looking for params
    	// or pieces of params that we didn't encounter in the loop above.
    	for _, inp := range pri.InParams() {
    		if !isNamedRegParam(inp) {
    			continue
    		}
    		n := inp.Name
    
    		// Param is spread across one or more registers. Walk through
    		// each piece to see whether we've seen an arg reg op for it.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  4. pkg/kube/inject/testdata/inputs/traffic-params.yaml.7.template.gen.yaml

    Nicole LiHui <******@****.***> 1717379705 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  5. tests/integration/security/authz_test.go

    						// Allow /policy-<ns>-all for all workloads.
    						Source(config.File("testdata/authz/workload-ns.yaml.tmpl").WithParams(param.Params{
    							param.Namespace.String(): apps.Ns1.Namespace,
    						})).
    						Source(config.File("testdata/authz/workload-ns.yaml.tmpl").WithParams(param.Params{
    							param.Namespace.String(): apps.Ns2.Namespace,
    						})).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 23:36:51 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  6. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/DefaultServiceRegistry.java

                    return NO_PARAMS;
                }
                Object[] params = new Object[paramServices.length];
                for (int i = 0; i < paramServices.length; i++) {
                    Service paramProvider = paramServices[i];
                    params[i] = paramProvider.get();
                }
                return params;
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

            serviceImplementation()
            buildFile << """
                def params
    
                def provider = gradle.sharedServices.registerIfAbsent("counter", CountingService) {
                    params = parameters
                    parameters.initial = 10
                }
    
                assert params.initial.get() == 10
                params.initial = 12
    
                task first {
                    doFirst {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
  8. fastapi/param_functions.py

    from typing import Any, Callable, Dict, List, Optional, Sequence, Union
    
    from fastapi import params
    from fastapi._compat import Undefined
    from fastapi.openapi.models import Example
    from typing_extensions import Annotated, Doc, deprecated
    
    _Unset: Any = Undefined
    
    
    def Path(  # noqa: N802
        default: Annotated[
            Any,
            Doc(
                """
                Default value if the parameter field is not set.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 62.5K bytes
    - Viewed (0)
  9. src/crypto/x509/x509.go

    	switch {
    	case params.Hash.Algorithm.Equal(oidSHA256) && params.SaltLength == 32:
    		return SHA256WithRSAPSS
    	case params.Hash.Algorithm.Equal(oidSHA384) && params.SaltLength == 48:
    		return SHA384WithRSAPSS
    	case params.Hash.Algorithm.Equal(oidSHA512) && params.SaltLength == 64:
    		return SHA512WithRSAPSS
    	}
    
    	return UnknownSignatureAlgorithm
    }
    
    var (
    	// RFC 3279, 2.3 Public Key Algorithms
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    		tp := &TemplateTemplateParam{
    			Name:       name,
    			Params:     params,
    			Constraint: constraint,
    		}
    		return tp, name
    	case 'p':
    		st.advance(2)
    		off := st.off
    		param, templateVal := st.templateParamDecl()
    		if param == nil {
    			st.failEarlier("expected lambda template parameter", st.off-off)
    		}
    		return &TemplateParamPack{Param: param}, templateVal
    	default:
    		return nil, nil
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
Back to top