Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 768 for Xadd (0.02 sec)

  1. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/enterprise/impl/GradleEnterprisePluginServices.java

            registration.add(GradleEnterpriseAutoAppliedPluginRegistry.class);
            registration.add(GradleEnterprisePluginAutoAppliedStatus.class);
            registration.add(DefaultGradleEnterprisePluginServiceRef.class);
            registration.add(DefaultGradleEnterprisePluginBuildState.class);
            registration.add(DefaultGradleEnterprisePluginConfig.class);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 13:39:48 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/ModelGraphTest.groovy

            b.addLink c
    
            when:
            graph.add(a)
            graph.add(b)
            graph.add(c)
            graph.addListener(listener)
    
            then:
            1 * listener.onDiscovered(b)
            1 * listener.onDiscovered(c)
            0 * listener.onDiscovered(_)
    
            when:
            graph.add(d)
            graph.add(e)
            graph.add(f)
    
            then:
            1 * listener.onDiscovered(d)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/cache/lruexpirecache_test.go

    	c.Add("elem2", "2", 10*time.Hour)
    	c.Add("elem3", "3", 10*time.Hour)
    	c.Add("elem4", "4", 10*time.Hour)
    
    	c.Add("elem1", "1-new", 10*time.Hour)
    
    	c.Add("elem5", "5", 10*time.Hour)
    
    	assertKeys(t, c.Keys(), []interface{}{"elem3", "elem4", "elem1", "elem5"})
    
    	expectNotEntry(t, c, "elem2")
    	expectEntry(t, c, "elem1", "1-new")
    	expectEntry(t, c, "elem3", "3")
    	expectEntry(t, c, "elem4", "4")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:48 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/inspect/DefaultMethodModelRuleExtractionContext.java

        }
    
        @Override
        public void add(Field field, String problem) {
            problems.add(field, problem);
        }
    
        @Override
        public void add(Method method, String problem) {
            problems.add(method, problem);
        }
    
        @Override
        public void add(Method method, String role, String problem) {
            problems.add(method, role, problem);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  5. android/guava-testlib/src/com/google/common/collect/testing/ListTestSuiteBuilder.java

        testers.add(CollectionSerializationEqualTester.class);
        testers.add(ListAddAllAtIndexTester.class);
        testers.add(ListAddAllTester.class);
        testers.add(ListAddAtIndexTester.class);
        testers.add(ListAddTester.class);
        testers.add(ListCreationTester.class);
        testers.add(ListEqualsTester.class);
        testers.add(ListGetTester.class);
        testers.add(ListHashCodeTester.class);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/extensibility/ExtensionContainerTest.groovy

            when:
            container.add('foo', extension)
    
            then:
            container.foo == extension
        }
    
        def "cannot replace an extension"() {
            given:
            container.add('foo', extension)
    
            when:
            container.add('foo', 'other')
    
            then:
            IllegalArgumentException e = thrown()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  7. src/internal/bytealg/count_ppc64x.s

    	MOVD	(R3), R12
    	CMPB	R12, R5, R12
    	POPCNTD	R12, R12
    	ADD	R12, R18, R18
    	ADD	$8, R3, R3
    	ADD	$-8, R4, R4
    
    tail_4:	// Count the remaining 0 - 7 bytes.
    	CMP	R4, $4
    	BLT	tail_2
    	MOVWZ	(R3), R12
    	CMPB	R12, R5, R12
    	SLD	$32, R12, R12	// Remove non-participating matches.
    	POPCNTD	R12, R12
    	ADD	R12, R18, R18
    	ADD	$4, R3, R3
    	ADD	$-4, R4, R4
    
    tail_2:	// Count the remaining 0 - 3 bytes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 20:30:44 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top