Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 62 for qParams (0.21 sec)

  1. src/go/parser/parser.go

    	if p.trace {
    		defer un(trace(p, "FuncType"))
    	}
    
    	pos := p.expect(token.FUNC)
    	tparams, params := p.parseParameters(true)
    	if tparams != nil {
    		p.error(tparams.Pos(), "function type must have no type parameters")
    	}
    	results := p.parseResult()
    
    	return &ast.FuncType{Func: pos, Params: params, Results: results}
    }
    
    func (p *parser) parseMethodSpec() *ast.Field {
    	if p.trace {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types/type.go

    	return src.NoXPos
    }
    
    func (t *Type) RParams() []*Type {
    	if t.rparams == nil {
    		return nil
    	}
    	return *t.rparams
    }
    
    func (t *Type) SetRParams(rparams []*Type) {
    	if len(rparams) == 0 {
    		base.Fatalf("Setting nil or zero-length rparams")
    	}
    	t.rparams = &rparams
    	// HasShape should be set if any type argument is or has a shape type.
    	for _, rparam := range rparams {
    		if rparam.HasShape() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  3. src/cmd/cgo/out.go

    		}
    
    		fmt.Fprintf(fgcch, "extern %s %s%s;\n", cRet, exp.ExpName, cParams)
    
    		// We need to use a name that will be exported by the
    		// Go code; otherwise gccgo will make it static and we
    		// will not be able to link against it from the C
    		// code.
    		goName := "Cgoexp_" + exp.ExpName
    		fmt.Fprintf(fgcc, `extern %s %s %s __asm__("%s.%s");`, cRet, goName, cParams, gccgoSymbolPrefix, gccgoToSymbol(goName))
    		fmt.Fprint(fgcc, "\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. tests/integration/security/authz_test.go

    									})
    								for _, tst := range tsts {
    									tst := tst
    									params := ""
    									if c.headers != nil {
    										params = fmt.Sprintf("?%s=%s", authz.XExtAuthz, c.headers.Get(authz.XExtAuthz))
    									}
    									testName := fmt.Sprintf("%s%s(%s)/%s", c.path, params, c.allow, tst.opts.Port.Name)
    									t.NewSubTest(testName).Run(func(t framework.TestContext) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 23:36:51 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  7. 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)
  8. staging/src/k8s.io/apiserver/pkg/endpoints/installer.go

    	switch {
    	case !namespaceScoped:
    		// Handle non-namespace scoped resources like nodes.
    		resourcePath := resource
    		resourceParams := params
    		itemPath := resourcePath + "/{name}"
    		nameParams := append(params, nameParam)
    		proxyParams := append(nameParams, pathParam)
    		suffix := ""
    		if isSubresource {
    			suffix = "/" + subresource
    			itemPath = itemPath + suffix
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  9. 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)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/DependenciesAttributesIntegrationTest.groovy

                        withModule('org:directA', ModifyDependencyRule) {
                            params(CUSTOM_ATTRIBUTE)
                            params('$transitiveAttributeValueA')
                        }
                        withModule('org:directB', ModifyDependencyRule) {
                            params(CUSTOM_ATTRIBUTE)
                            params('$transitiveAttributeValueB')
                        }
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 02:13:52 UTC 2024
    - 49.5K bytes
    - Viewed (0)
Back to top