Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for tparams (0.25 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. 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)
  6. 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)
  7. 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)
  8. 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)
  9. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

    // params, otherwise N is the number of parameters selected by the binding.
    //
    // The CEL expressions of a policy must have a computed CEL cost below the maximum
    // CEL budget. Each evaluation of the policy is given an independent CEL cost budget.
    // Adding/removing policies, bindings, or params can not affect whether a
    // given (policy, binding, param) combination is within its own CEL budget.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  10. cmd/peer-rest-server.go

    	return madminStorageInfo.NewJSONWith(&info), nil
    }
    
    // ServerInfoHandler - returns Server Info
    func (s *peerRESTServer) ServerInfoHandler(params *grid.MSS) (*grid.JSON[madmin.ServerProperties], *grid.RemoteErr) {
    	r := http.Request{Host: globalLocalNodeName}
    	metrics, err := strconv.ParseBool(params.Get(peerRESTMetrics))
    	if err != nil {
    		return nil, grid.NewRemoteErr(err)
    	}
    	info := getLocalServerProperty(globalEndpoints, &r, metrics)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 52.1K bytes
    - Viewed (0)
Back to top