Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 933 for Extract (0.28 sec)

  1. 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)
  2. maven-model-builder/src/main/java/org/apache/maven/model/interpolation/MavenBuildTimestamp.java

            this(time, properties != null ? properties.get(BUILD_TIMESTAMP_FORMAT_PROPERTY) : null);
        }
    
        /**
         *
         * @deprecated Use {@link #MavenBuildTimestamp(Date, Map)} or extract the format and pass it
         *             to {@link #MavenBuildTimestamp(Date, String)} instead.
         */
        @Deprecated
        public MavenBuildTimestamp(Date time, Properties properties) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 22 13:26:01 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/schema/extract/ManagedImplStructStrategyTest.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.Managed
    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
    - 2.6K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/file/archive/AbstractArchiveFileTreeElement.java

        private final AtomicBoolean stopFlag;
    
        /**
         * Creates a new instance.
         *
         * @param chmod the chmod instance to use
         * @param expandedDir the directory to extract the archived file to
         * @param stopFlag the stop flag to use
         */
        protected AbstractArchiveFileTreeElement(Chmod chmod, File expandedDir, AtomicBoolean stopFlag) {
            super(chmod);
            this.expandedDir = expandedDir;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 31 20:39:17 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  5. 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)
  6. tensorflow/compiler/mlir/tf2xla/internal/passes/clustering_passes.h

    CreateTPUClusterFormationPass(bool strict_clusters = false);
    
    // Creates a pass that extracts outside compilation (Host ops inside device
    // cluster) at head/tail of Device cluster to run before/after XLA computation.
    std::unique_ptr<mlir::OperationPass<mlir::ModuleOp>>
    CreateExtractHeadTailOutsideCompilationPass();
    
    // Creates a pass that extract outside compilation (Host ops inside cevice
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 02:01:13 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  7. pkg/slices/slices.go

    // by a single field. If you need to have multiple fields, see the ExampleSort.
    func SortBy[E any, A constraints.Ordered](x []E, extract func(a E) A) []E {
    	if len(x) <= 1 {
    		return x
    	}
    	SortFunc(x, func(a, b E) int {
    		return cmp.Compare(extract(a), extract(b))
    	})
    	return x
    }
    
    // Sort sorts a slice of any ordered type in ascending order.
    // The slice is modified in place but returned.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 06:28:11 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  8. platforms/software/resources-s3/src/test/groovy/org/gradle/internal/resource/transport/aws/s3/S3ResourceResolverTest.groovy

            then:
            results == ['some.jar', expected]
    
            where:
            prefix           | expected
            'root/SNAPSHOT'  | 'SNAPSHOT'
            'root/SNAPSHOT/' | 'SNAPSHOT'
        }
    
        def "should extract file name from s3 listing"() {
            ObjectListing objectListing = Mock()
            S3ObjectSummary objectSummary = Mock()
            objectSummary.getKey() >> listing
            objectListing.getObjectSummaries() >> [objectSummary]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/config/kubeconfig.go

    )
    
    func init() {
    	utilruntime.Must(webhookadmission.AddToScheme(scheme))
    	utilruntime.Must(v1.AddToScheme(scheme))
    	utilruntime.Must(v1alpha1.AddToScheme(scheme))
    }
    
    // LoadConfig extract the KubeConfigFile from configFile
    func LoadConfig(configFile io.Reader) (string, error) {
    	var kubeconfigFile string
    	if configFile != nil {
    		// we have a config so parse it.
    		data, err := io.ReadAll(configFile)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 15:48:39 UTC 2023
    - 2K bytes
    - Viewed (0)
  10. platforms/software/platform-base/src/test/groovy/org/gradle/language/base/internal/ComponentTypeModelRuleExtractorTest.groovy

        Class<?> ruleClass = Rules
    
        def "applies ComponentModelBasePlugin and creates component type rule"() {
            def mockRegistry = Mock(ModelRegistry)
    
            when:
            def registration = extract(ruleDefinitionForMethod(ruleName))
    
            then:
            registration.ruleDependencies == [plugin]
    
            when:
            apply(registration, mockRegistry)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 10.2K bytes
    - Viewed (0)
Back to top