Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 393 for Extract (0.14 sec)

  1. pilot/cmd/pilot-agent/app/cmd.go

    	log.Debugf("proxy IPAddresses: %v", proxyArgs.IPAddresses)
    
    	// After IP addresses are set, let us discover IPMode.
    	proxyArgs.DiscoverIPMode()
    
    	// Extract pod variables.
    	proxyArgs.ID = proxyArgs.PodName + "." + proxyArgs.PodNamespace
    
    	// If not set, set a default based on platform - podNamespace.svc.cluster.local for
    	// K8S
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  2. docs/en/docs/tutorial/dependencies/classes-as-dependencies.md

        ```
    
    The last `CommonQueryParams`, in:
    
    ```Python
    ... Depends(CommonQueryParams)
    ```
    
    ...is what **FastAPI** will actually use to know what is the dependency.
    
    From it is that FastAPI will extract the declared parameters and that is what FastAPI will actually call.
    
    ---
    
    In this case, the first `CommonQueryParams`, in:
    
    === "Python 3.8+"
    
        ```Python
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  3. src/runtime/error.go

    //
    // It is called from the generated wrapper code.
    func panicwrap() {
    	pc := getcallerpc()
    	name := funcNameForPrint(funcname(findfunc(pc)))
    	// name is something like "main.(*T).F".
    	// We want to extract pkg ("main"), typ ("T"), and meth ("F").
    	// Do it by finding the parens.
    	i := bytealg.IndexByteString(name, '(')
    	if i < 0 {
    		throw("panicwrap: no ( in " + name)
    	}
    	pkg := name[:i-1]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:10:41 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  4. src/runtime/stkframe.go

    func (frame *stkframe) argMapInternal() (argMap bitvector, hasReflectStackObj bool) {
    	f := frame.fn
    	if f.args != abi.ArgsSizeUnknown {
    		argMap.n = f.args / goarch.PtrSize
    		return
    	}
    	// Extract argument bitmaps for reflect stubs from the calls they made to reflect.
    	switch funcname(f) {
    	case "reflect.makeFuncStub", "reflect.methodValueCall":
    		// These take a *reflect.methodValue as their
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  5. cmd/signature-v2.go

    		accessKey       string
    		err             error
    	)
    
    	var unescapedQueries []string
    	unescapedQueries, err = unescapeQueries(encodedQuery)
    	if err != nil {
    		return ErrInvalidQueryParams
    	}
    
    	// Extract the necessary values from presigned query, construct a list of new filtered queries.
    	for _, query := range unescapedQueries {
    		keyval := strings.SplitN(query, "=", 2)
    		if len(keyval) != 2 {
    			return ErrInvalidQueryParams
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  6. platforms/documentation/samples/src/integTest/groovy/org/gradle/integtests/samples/java/SamplesJavaTestingIntegrationTest.groovy

        }
    
        /**
         * Loads the JUnit XML test results file for the given, named test case. It
         * assumes the file path to that file and loads it using Groovy's XmlSlurper
         * which can then be used to extract information from the XML.
         */
        private static getTestResultsFileAsXml(TestFile sampleDir, String testClassName, String taskName = "test") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/client-go/applyconfigurations/core/v1/configmap.go

    // the fieldManager never owned fields any fields.
    // configMap must be a unmodified ConfigMap API object that was retrieved from the Kubernetes API.
    // ExtractConfigMap provides a way to perform a extract/modify-in-place/apply workflow.
    // Note that an extracted apply configuration will contain fewer fields than what the fieldManager previously
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 23 17:59:55 UTC 2022
    - 12.9K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/services/internal/DefaultBuildServicesRegistry.java

            return doRegisterIfAbsent(name, implementationType, () -> {
                // TODO - extract some shared infrastructure to take care of parameter instantiation (eg strict vs lenient, which services are visible)
                P parameters = instantiateParametersOf(implementationType);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:45 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  9. pkg/serviceaccount/jwt.go

    	keys         []interface{}
    	validator    Validator
    	implicitAuds authenticator.Audiences
    }
    
    // Validator is called by the JWT token authenticator to apply domain specific
    // validation to a token and extract user information.
    type Validator interface {
    	// Validate validates a token and returns user information or an error.
    	// Validator can assume that the issuer and signature of a token are already
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 27 22:16:08 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsFixture.groovy

            def projectModels = projectScopedModels.groupBy { it.buildTreePath }
            def projectModelsShortNames = remapValues(projectModels) { it.shortModelName }
    
            // Do not extract left side into a variable to get power assert insights
            assert remapValues(projectModelsShortNames) { it.size() } == expectedProjectModelsCounts
    
            for (def modelExpectation in modelExpectations) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 17.2K bytes
    - Viewed (0)
Back to top