Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,641 for Lach (0.07 sec)

  1. platforms/software/platform-base/src/main/java/org/gradle/platform/base/plugins/BinaryBasePlugin.java

     * - Adds a {@link BinarySpec} container named {@code binaries} to the project.
     * - Registers the base {@link BinarySpec} type.
     * - For each {@link BinarySpec}, registers a lifecycle task to assemble that binary.
     * - For each {@link BinarySpec}, adds the binary's source sets as its default inputs.
     * - Links the tasks for each {@link BinarySpec} across to the tasks container.
     */
    @Incubating
    public abstract class BinaryBasePlugin implements Plugin<Project> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 4K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/file/ContentFilterable.java

         * @return this
         */
        ContentFilterable filter(Transformer<@org.jetbrains.annotations.Nullable String, String> transformer);
    
        /**
         * <p>Expands property references in each file as it is copied. More specifically, each file is transformed using
         * Groovy's {@link groovy.text.SimpleTemplateEngine}. This means you can use simple property references, such as
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 16 22:05:15 UTC 2022
    - 5.4K bytes
    - Viewed (0)
  3. guava-testlib/src/com/google/common/testing/EqualsTester.java

     * </pre>
     *
     * <p>This tests:
     *
     * <ul>
     *   <li>comparing each object against itself returns true
     *   <li>comparing each object against null returns false
     *   <li>comparing each object against an instance of an incompatible class returns false
     *   <li>comparing each pair of objects within the same equality group returns true
     *   <li>comparing each pair of objects from different equality groups returns false
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Oct 31 19:11:50 UTC 2023
    - 6K bytes
    - Viewed (0)
  4. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/ParallelSourceDependencyIntegrationTest.groovy

            """
    
            when:
            // Wait for each project to list versions concurrently
            httpServer.expectConcurrent("A", "B", "C", "D")
            // Only one project should clone
            repo.expectListVersions()
            repo.expectCloneSomething()
    
            then:
            succeeds('resolve', '--parallel', '--max-workers=4')
    
            when:
            // Wait for each project to list versions concurrently
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  5. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/generator/DependencyTree.groovy

            parentToChildClassIds.get(parentClassId).each {
                allVisibleChildClassIds(it, result)
            }
            return result
        }
    
        private allVisibleChildClassIds(int parentClassId, List<Integer> result) {
            def directChildrenIds = parentToChildClassIds.get(parentClassId)
            if (directChildrenIds && !directChildrenIds.isEmpty()) {
                directChildrenIds.each {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7K bytes
    - Viewed (0)
  6. android/guava-testlib/src/com/google/common/testing/EqualsTester.java

     * </pre>
     *
     * <p>This tests:
     *
     * <ul>
     *   <li>comparing each object against itself returns true
     *   <li>comparing each object against null returns false
     *   <li>comparing each object against an instance of an incompatible class returns false
     *   <li>comparing each pair of objects within the same equality group returns true
     *   <li>comparing each pair of objects from different equality groups returns false
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Oct 31 19:11:50 UTC 2023
    - 6K bytes
    - Viewed (0)
  7. src/internal/bytealg/count_s390x.s

    	// Note: only the low 32-bits of R_LEN are used for the index.
    	VLL R_LEN, (R_PTR), V_VAL
    	VLL R_LEN, (R_MPTR), V_MASK
    
    	// Compare each byte in input chunk against byte to be counted.
    	// Each byte element will be set to either 0 (no match) or 1 (match).
    	VCEQB V_CHAR, V_VAL, V_VAL // each byte will be either 0xff or 0x00
    	VN    V_MASK, V_VAL, V_VAL // mask out most significant 7 bits
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 15 21:04:43 UTC 2019
    - 5.4K bytes
    - Viewed (0)
  8. src/cmd/internal/buildid/buildid.go

    	// which are typically less than 4 kB, not to mention 32 kB.
    	// In Mach-O files, there's no limit, so we have to parse the file.
    	// On other systems, we're trying to read enough that
    	// we get the beginning of the text segment in the read.
    	// The offset where the text segment begins in a hello
    	// world compiled for each different object format today:
    	//
    	//	Plan 9: 0x20
    	//	Windows: 0x600
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 28 21:52:53 UTC 2020
    - 9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/test_resource_alias_analysis.cc

    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops.h"
    
    namespace mlir {
    namespace tf_test {
    namespace {
    
    // A pass that annotates each operation with a resource type result with the
    // aliasing values for each such result. Each value is assigned a unique ID, and
    // that ID is used to annotate the operations.
    struct TestResourceAliasAnalysis
        : public TF::PerFunctionAggregateAnalysisConsumerPass<
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 19 00:13:50 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/files/fileCollections/groovy/build.gradle

            println "Contents of $srcDir.name"
            collection.collect { projectDirectory.asFile.relativePath(it) }.sort().each { println it }
    
            srcDir = projectDirectory.file('src2').asFile
            println "Contents of $srcDir.name"
            collection.collect { projectDirectory.asFile.relativePath(it) }.sort().each { println it }
        }
    }
    // end::closure[]
    
    tasks.register('conventions') {
        def objects = objects
        doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 15 13:55:00 UTC 2024
    - 2.7K bytes
    - Viewed (0)
Back to top