Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 8,871 for ADD (0.03 sec)

  1. subprojects/core/src/test/groovy/org/gradle/api/internal/artifacts/CachingDependencyResolveContextTest.groovy

            FileCollectionInternal fileCollection = Mock()
    
            when:
            context.add(dependency)
            def files = context.resolve()
    
            then:
            1 * dependency.resolve(context) >> { context.add(otherDependency) }
            1 * otherDependency.resolve(context) >> { context.add(fileCollection); context.add(dependency) }
            files instanceof UnionFileCollection
            files.sources as List == [fileCollection]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:16:36 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. src/runtime/memclr_ppc64x.s

    	BEQ   byte2
    	MOVB  R0, 0(R3)   // zero 1 byte
    	ADD   $1, R3      // bump ptr by 1
    	ADD   $-1, R4
    
    byte2:
    	ANDCC $2, R3, R15 // check for 2 byte alignment
    	BEQ   byte4
    	MOVH  R0, 0(R3)   // zero 2 bytes
    	ADD   $2, R3      // bump ptr by 2
    	ADD   $-2, R4
    
    byte4:
    	ANDCC $4, R3, R15   // check for 4 byte alignment
    	BEQ   zero512xsetup
    	MOVW  R0, 0(R3)     // zero 4 bytes
    	ADD   $4, R3        // bump ptr by 4
    	ADD   $-4, R4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 16 17:08:59 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/DependencyHandlerExtensionsTest.kt

                events.add("created")
                dependency
            }
            whenever(dependency.exclude(mapOf("group" to "g", "module" to "m"))).then {
                events.add("configured")
                dependency
            }
            whenever(dependencyHandlerMock.add("configuration", dependency)).then {
                events.add("added")
                dependency
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 04 06:41:25 UTC 2023
    - 16.6K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/api/internal/DefaultDomainObjectSetTest.groovy

            def set = new DefaultDomainObjectSet<String>(String, composite.getStore(), callbackActionDecorator)
    
            when:
            c1.add("a")
            c1.add("b")
            c1.add("c")
            c1.add("d")
            c2.add("a")
            c2.add("c")
    
            then:
            set.size() == 4
            set.findAll { it != "c" } == ["a", "b", "d"] as LinkedHashSet
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 16 23:50:58 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/ArtifactHandlerScope.kt

         * @param artifactNotation notation of the artifact to add.
         * @return The artifact.
         * @see [ArtifactHandler.add]
         */
        operator fun String.invoke(artifactNotation: Any): PublishArtifact =
            artifacts.add(this, artifactNotation)
    
        /**
         * Adds an artifact to the given configuration.
         *
         * @param artifactNotation notation of the artifact to add.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  6. src/crypto/md5/md5block_s390x.s

    loop:
    	STMY	R2, R5, tmp-16(SP)
    
    	MOVWBR	0(R6), R8
    	MOVWZ	R5, R9
    
    #define ROUND1(a, b, c, d, index, const, shift) \
    	XOR	c, R9; \
    	ADD	$const, a; \
    	ADD	R8, a; \
    	MOVWBR	(index*4)(R6), R8; \
    	AND	b, R9; \
    	XOR	d, R9; \
    	ADD	R9, a; \
    	RLL	$shift, a; \
    	MOVWZ	c, R9; \
    	ADD	b, a
    
    	ROUND1(R2,R3,R4,R5, 1,0xd76aa478, 7);
    	ROUND1(R5,R2,R3,R4, 2,0xe8c7b756,12);
    	ROUND1(R4,R5,R2,R3, 3,0x242070db,17);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r35/ToolingApiEclipseModelDependencyAccessRuleCrossVersionSpec.groovy

                    dependency.accessRules.add(new AccessRule('0', 'id-accessible'))
                    dependency.accessRules.add(new AccessRule('1', 'id-nonaccessible'))
                    dependency.accessRules.add(new AccessRule('2', 'id-discouraged'))
                    dependency.accessRules.add(new AccessRule('accessible', 'literal-accessible'))
                    dependency.accessRules.add(new AccessRule('nonaccessible', 'literal-nonaccessible'))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/DependencyConstraintHandlerScope.kt

         * @return The dependency constraint.
         * @see [DependencyConstraintHandler.add]
         */
        operator fun String.invoke(dependencyConstraintNotation: Any): DependencyConstraint =
            constraints.add(this, dependencyConstraintNotation)
    
        /**
         * Adds a dependency constraint to the given configuration.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 04 06:41:25 UTC 2023
    - 6K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/asm/ClassRelevancyFilter.java

        private static final Set<String> PRIMITIVES = ImmutableSet.<String>builder()
            .add("void")
            .add("boolean")
            .add("byte")
            .add("char")
            .add("short")
            .add("int")
            .add("long")
            .add("float")
            .add("double")
            .build();
    
        private String excludedClassName;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/projection/ListModelProjectionTest.groovy

            when:
            mutate {
                add 'foo'
                add 'bar'
                add 'baz'
                remove(1)
            }
    
            then:
            def list = registry.realize(collectionPath, collectionType)
            list == checkable(['foo', 'baz'])
        }
    
        def "can add using index"() {
            when:
            mutate {
                add 'foo'
                add(0, 'bar')
            }
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.5K bytes
    - Viewed (0)
Back to top