Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 853 for Extract (0.18 sec)

  1. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/source/ExtractDslMetaDataTask.groovy

        /**
         * {@inheritDoc}
         */
        @Override
        @PathSensitive(PathSensitivity.NAME_ONLY)
        FileTree getSource() {
            return super.getSource();
        }
    
        @TaskAction
        def extract() {
            Date start = new Date()
    
            //parsing all input files into metadata
            //and placing them in the repository object
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 08 12:45:57 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  2. cmd/handler-utils.go

    }
    
    func extractMetadata(ctx context.Context, mimesHeader ...textproto.MIMEHeader) (metadata map[string]string, err error) {
    	metadata = make(map[string]string)
    
    	for _, hdr := range mimesHeader {
    		// Extract all query values.
    		err = extractMetadataFromMime(ctx, hdr, metadata)
    		if err != nil {
    			return nil, err
    		}
    	}
    
    	// Set content-type to default value if it is not set.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/schema/extract/UnmanagedImplStructStrategyTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.model.internal.manage.schema.extract
    
    import org.gradle.model.internal.core.UnmanagedStruct
    import org.gradle.model.internal.manage.schema.CompositeSchema
    import org.gradle.model.internal.manage.schema.ManagedImplSchema
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3K bytes
    - Viewed (0)
  4. docs/en/docs/advanced/response-headers.md

    And if you declared a `response_model`, it will still be used to filter and convert the object you returned.
    
    **FastAPI** will use that *temporal* response to extract the headers (also cookies and status code), and will put them in the final response that contains the value you returned, filtered by any `response_model`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jan 11 16:31:18 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl-provider-plugins/src/main/kotlin/org/gradle/kotlin/dsl/provider/plugins/precompiled/tasks/ExtractPrecompiledScriptPluginPlugins.kt

        @get:PathSensitive(PathSensitivity.RELATIVE)
        @Suppress("unused")
        internal
        val scriptFiles: Set<File>
            get() = scriptPluginFilesOf(plugins)
    
        @TaskAction
        fun extract() {
            outputDir.withOutputDirectory {
                extractPrecompiledScriptPluginPluginsTo(it, plugins)
            }
        }
    }
    
    
    internal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/project/ExtensionDescriptorBuilder.java

         */
        public String getExtensionDescriptorLocation() {
            return "META-INF/maven/extension.xml";
        }
    
        /**
         * Extracts the extension descriptor (if any) from the specified JAR file.
         *
         * @param extensionJar The JAR file or directory to extract the descriptor from, must not be {@code null}.
         * @return The extracted descriptor or {@code null} if no descriptor was found.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  7. platforms/software/platform-base/src/main/java/org/gradle/platform/base/plugins/ComponentBasePlugin.java

    import org.gradle.model.internal.core.NodeInitializerRegistry;
    import org.gradle.model.internal.manage.binding.StructBindingsStore;
    import org.gradle.model.internal.manage.schema.extract.FactoryBasedStructNodeInitializerExtractionStrategy;
    import org.gradle.platform.base.ComponentSpec;
    import org.gradle.platform.base.ComponentSpecContainer;
    import org.gradle.platform.base.ComponentType;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 4K bytes
    - Viewed (0)
  8. src/math/big/arith_arm64.s

    	LDP	-16(R9), (R17, R19)
    	ADCS	R15, R11
    	ADCS	R16, R12
    	ADCS	R17, R13
    	ADCS	R19, R14
    	STP.P	(R11, R12), 32(R10)
    	STP	(R13, R14), -16(R10)
    	SUB	$4, R0
    	B	loop
    done:
    	CSET	HS, R0		// extract carry flag
    	MOVD	R0, c+72(FP)
    	RET
    
    
    // func subVV(z, x, y []Word) (c Word)
    TEXT ·subVV(SB),NOSPLIT,$0
    	MOVD	z_len+8(FP), R0
    	MOVD	x+24(FP), R8
    	MOVD	y+48(FP), R9
    	MOVD	z+0(FP), R10
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  9. hack/golangci-hints.yaml

      exclude-rules:
        # exclude ineffassign linter for generated files for conversion
        - path: conversion\.go
          linters:
            - ineffassign
    
        # SSA Extract calls are allowed in tests.
        - linters:
            - forbidigo
          text: should not be used because managedFields was removed
          path: _test.go$
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  10. docs/en/docs/advanced/path-operation-advanced-configuration.md

    And you could do this even if the data type in the request is not JSON.
    
    For example, in this application we don't use FastAPI's integrated functionality to extract the JSON Schema from Pydantic models nor the automatic validation for JSON. In fact, we are declaring the request content type as YAML, not JSON:
    
    === "Pydantic v2"
    
        ```Python hl_lines="17-22  24"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 7.7K bytes
    - Viewed (0)
Back to top