Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 71 for tparams (0.26 sec)

  1. 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)
  2. 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)
  3. staging/src/k8s.io/apiserver/pkg/endpoints/installer.go

    		actions = append(actions, a)
    	}
    	return actions
    }
    
    func addParams(route *restful.RouteBuilder, params []*restful.Parameter) {
    	for _, param := range params {
    		route.Param(param)
    	}
    }
    
    // AddObjectParams converts a runtime.Object into a set of go-restful Param() definitions on the route.
    // The object must be a pointer to a struct; only fields at the top level of the struct that are not
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  4. 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)
  5. src/go/printer/testdata/parser.go

    }
    
    func (p *parser) parseParameterList(scope *ast.Scope, ellipsisOk bool) (params []*ast.Field) {
    	if p.trace {
    		defer un(trace(p, "ParameterList"))
    	}
    
    	list, typ := p.parseVarList(ellipsisOk)
    	if typ != nil {
    		// IdentifierList Type
    		idents := p.makeIdentList(list)
    		field := &ast.Field{nil, idents, typ, nil, nil}
    		params = append(params, field)
    		// Go spec: The scope of an identifier denoting a function
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
  6. tensorflow/c/c_api_function_test.cc

        TF_Operation* less_than = LessThan(
            params->cond_inputs[0], params->cond_inputs[1], params->cond_graph, s_);
        ASSERT_EQ(TF_OK, TF_GetCode(s_)) << TF_Message(s_);
        params->cond_output = {less_than, 0};
    
        TF_Operation* add1 = Add(params->body_inputs[0], params->body_inputs[1],
                                 params->body_graph, s_, "add1");
        ASSERT_EQ(TF_OK, TF_GetCode(s_)) << TF_Message(s_);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 20 22:08:54 UTC 2023
    - 63.6K bytes
    - Viewed (0)
  7. 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)
  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/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

        default Integer getAvailableSmbSidType(final int sidType) {
            @SuppressWarnings("unchecked")
            Map<Integer, Integer> params = (Map<Integer, Integer>) propMap.get(SMB_AVAILABLE_SID_TYPES);
            if (params == null) {
                params = split(getSmbAvailableSidTypes(), ",").get(stream -> stream.map(s -> {
                    final String[] v = s.split(":");
                    if (v.length == 1) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 85K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/SmbTransportImpl.java

                        return false;
                    }
                }
                cur = cur.getNext();
            }
            return true;
        }
    
    
        /**
         * @param request
         * @param response
         * @param params
         * @throws IOException
         * @throws SmbException
         * @throws TransportException
         * @throws EOFException
         */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Wed Jan 18 23:47:00 UTC 2023
    - 67K bytes
    - Viewed (0)
Back to top