Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 474 for Extract (0.17 sec)

  1. cmd/bucket-listobjects-handlers.go

    	if metadata {
    		checkObjMeta = func(name string, action policy.Action) (s3Err APIErrorCode) {
    			return checkRequestAuthType(ctx, r, action, bucket, name)
    		}
    	}
    	urlValues := r.Form
    
    	// Extract all the listBucketVersions query params to their native values.
    	prefix, marker, delimiter, maxkeys, encodingType, versionIDMarker, errCode := getListBucketObjectVersionsArgs(urlValues)
    	if errCode != ErrNone {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/internal/tls/CertificateChainCleaner.kt

     * certificate.
     *
     * Use of the chain cleaner is necessary to omit unexpected certificates that aren't relevant to
     * the TLS handshake and to extract the trusted CA certificate for the benefit of certificate
     * pinning.
     */
    abstract class CertificateChainCleaner {
      @Throws(SSLPeerUnverifiedException::class)
      abstract fun clean(
        chain: List<Certificate>,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 2K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/file/archive/DefaultDecompressionCoordinator.java

            // withFileLock prevents other processes from extracting into the expandedDir at the same time
            // but multiple threads in this process could still try to extract into the same directory.
            cache.withFileLock(() -> {
                // guardByKey prevents multiple threads in this process from extracting into the same directory at the same time.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 15:15:04 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  4. security/pkg/pki/util/san_test.go

    			},
    			expectedIDs:    nil,
    			expectedErrMsg: "failed to extract identities from SAN extension (error asn1: syntax error: data truncated)",
    		},
    		"Extensions with incorrectly encoded SAN": {
    			exts: []pkix.Extension{
    				{Id: asn1.ObjectIdentifier{2, 5, 29, 17}, Value: append(copyBytes(sanExt.Value), 'x')},
    			},
    			expectedIDs:    nil,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 12 17:36:33 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/GroupedOutputFixture.java

        /**
         * Pattern to extract task output.
         */
        private static final Pattern TASK_OUTPUT_PATTERN = patternForHeader(TASK_HEADER);
    
        /**
         * Pattern to extract task output.
         */
        private static final Pattern TRANSFORM_OUTPUT_PATTERN = patternForHeader(TRANSFORM_HEADER);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/internal/plugins/RuleBasedPluginTarget.java

            Iterable<Class<? extends RuleSource>> declaredSources = ruleDetector.getDeclaredSources(clazz);
            for (Class<? extends RuleSource> ruleSource : declaredSources) {
                ExtractedRuleSource<?> rules = ruleInspector.extract(ruleSource);
                for (Class<?> dependency : rules.getRequiredPlugins()) {
                    target.getPluginManager().apply(dependency);
                }
                modelRegistry.getRoot().applyToSelf(rules);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:42:21 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. platforms/core-runtime/build-option/src/main/java/org/gradle/internal/buildoption/BuildOptionSet.java

                        option.configure(parser);
                    }
                }
            };
        }
    
        /**
         * Returns a {@link PropertiesConverter} that can extract the options defined by this set.
         */
        public PropertiesConverter<T> propertiesConverter() {
            return new PropertiesConverter<T>() {
                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 31 11:25:33 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  8. platforms/software/platform-base/src/main/java/org/gradle/platform/base/internal/registry/ComponentModelBaseServices.java

    import org.gradle.model.internal.inspect.MethodModelRuleExtractor;
    import org.gradle.model.internal.manage.schema.ModelSchemaStore;
    import org.gradle.model.internal.manage.schema.extract.ModelSchemaAspectExtractionStrategy;
    import org.gradle.platform.base.internal.VariantAspectExtractionStrategy;
    
    public class ComponentModelBaseServices extends AbstractGradleModuleServices {
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/MavenBuildTimestamp.java

            this(time, properties != null ? properties.get(BUILD_TIMESTAMP_FORMAT_PROPERTY) : null);
        }
    
        /**
         *
         * @deprecated Use {@link #MavenBuildTimestamp(Instant, Map)} or extract the format and pass it
         *             to {@link #MavenBuildTimestamp(Instant, String)} instead.
         */
        @Deprecated
        public MavenBuildTimestamp(Instant time, Properties properties) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/executor_tpuv1_outline_tpu_island.cc

    constexpr llvm::StringRef kOutlinedFuncPrefix = "_tpu_v1_compat_outlined_func";
    
    #define GEN_PASS_DEF_TPUBRIDGEEXECUTORISLANDOUTLININGPASS
    #include "tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.h.inc"
    
    // Extract the islands containing a TPU cluster computation into an outlined
    // function in a nested module. This will allow to run the usual bridge on this
    // nested module which exhibit a more friendly "V2-like" structure.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.7K bytes
    - Viewed (0)
Back to top