Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 963 for extractID (0.36 sec)

  1. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/detection/ClassFileExtractionManager.java

        /**
         * Retrieve the file that contains the extracted class file.
         *
         * <p>
         * This method will extract the class file if it is
         * not extracted yet. Extracted class files are deleted on exit of the Gradle process. The same class is only
         * extracted once.
         * </p>
         *
         * @param className Name of the class to extract.
         * @return File that contains the extracted class file.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/inspect/ClassModelRuleSourceValidationTest.groovy

    import org.gradle.model.internal.fixture.ProjectRegistrySpec
    
    class ClassModelRuleSourceValidationTest extends ProjectRegistrySpec {
        def extractor = new ModelRuleExtractor([], proxyFactory, schemaStore, structBindingsStore)
    
        def "invalid #type - #reason"() {
            when:
            extractor.extract(type)
    
            then:
            def e = thrown(InvalidModelRuleDeclarationException)
            def message = e.message
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  3. internal/crypto/sse-s3.go

    	}
    	if idPresent && !kmsKeyPresent {
    		return keyID, kmsKey, sealedKey, Errorf("The object metadata is missing the internal sealed KMS data key for SSE-S3")
    	}
    
    	// Check whether all extracted values are well-formed
    	iv, err := base64.StdEncoding.DecodeString(b64IV)
    	if err != nil || len(iv) != 32 {
    		return keyID, kmsKey, sealedKey, errInvalidInternalIV
    	}
    	if algorithm != SealAlgorithm {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 07 23:55:37 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  4. cmd/handler-utils.go

    // All values stored with a key starting with one of the following prefixes
    // must be extracted from the header.
    var userMetadataKeyPrefixes = []string{
    	"x-amz-meta-",
    	"x-minio-meta-",
    }
    
    // extractMetadataFromReq extracts metadata from HTTP header and HTTP queryString.
    func extractMetadataFromReq(ctx context.Context, r *http.Request) (metadata map[string]string, err error) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/tasks/ExtractSymbolsIntegrationTest.groovy

                }
    
                task extractSymbolsDebug(type: ExtractSymbols) { extract ->
                    project.application.binaries.get { !it.optimized }.configure {
                        def linkDebug = linkTask.get()
                        extract.toolChain = linkDebug.toolChain
                        extract.targetPlatform = linkDebug.targetPlatform
                        extract.binaryFile.set linkDebug.linkedFile
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 23:09:11 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/binding/DefaultStructBindingsStoreTest.groovy

        }
    
    
        def extract(Class<?> type, Class<?> delegateType = null) {
            return extract(type, [], delegateType)
        }
        def extract(Class<?> type, List<Class<?>> viewTypes, Class<?> delegateType = null) {
            return bindingStore.getBindings(
                ModelType.of(type),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 26.8K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/DefaultNodeInitializerRegistry.java

            ImmutableSortedSet.Builder<ModelType<?>> constructibleTypes = ImmutableSortedSet.orderedBy(ModelTypes.displayOrder());
            for (NodeInitializerExtractionStrategy extractor : additionalStrategies) {
                for (ModelType<?> constructibleType : extractor.supportedTypes()) {
                    if (context.getConstraints().isSatisfiedBy(constructibleType)) {
                        constructibleTypes.add(constructibleType);
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  8. fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/TextTransformer.java

    import org.codelibs.fess.crawler.exception.CrawlerSystemException;
    import org.codelibs.fess.crawler.exception.CrawlingAccessException;
    import org.codelibs.fess.crawler.extractor.Extractor;
    import org.codelibs.fess.crawler.extractor.ExtractorFactory;
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    /**
     * @author shinsuke
     *
     */
    public class TextTransformer extends AbstractTransformer {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_head_tail_outside_compilation.cc

        // An outside compiled op can be extracted if its operands are not from
        // other ops in the cluster that cannot be extracted.
    
        // Check if the side effecting op right before this side effecting op, if
        // it is side effecting, can be head extracted. Because of op ordering due
        // to side effects, if this is not true, this op cannot be head extracted.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/metrics/types_util.cc

      void Extract(tflite::metrics::ConverterErrorData* error_data) {
        using tflite::metrics::ConverterErrorData;
        auto mutable_location = error_data->mutable_location();
    
        llvm::TypeSwitch<LocationAttr>(impl)
            .Case<OpaqueLoc>([&](OpaqueLoc loc) {
              LocationExtractor(loc.getFallbackLocation()).Extract(error_data);
            })
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 4.9K bytes
    - Viewed (0)
Back to top