Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 9,695 for ADD (0.1 sec)

  1. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/gcc/GccCompilerArgsTransformer.java

            if (!needsStandardIncludes(spec.getTargetPlatform())) {
                args.add("-nostdinc");
            }
    
            for (File file : spec.getIncludeRoots()) {
                args.add("-I");
                args.add(file.getAbsolutePath());
            }
    
            for (File file : spec.getSystemIncludeRoots()) {
                args.add("-isystem");
                args.add(file.getAbsolutePath());
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/toolchain/DaemonClientToolchainServices.java

            registration.add(ToolchainConfiguration.class, toolchainConfiguration);
            registration.add(DefaultOsXJavaHomeCommand.class);
    
            // NOTE: These need to be kept in sync with ToolchainsJvmServices
            registration.add(AsdfInstallationSupplier.class);
            registration.add(IntellijInstallationSupplier.class);
            registration.add(JabbaInstallationSupplier.class);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/CertificatePinnerTest.kt

        val builder = CertificatePinner.Builder()
        assertFailsWith<IllegalArgumentException> {
          builder.add("example.com", "md5/DmxUShsZuNiqPQsX2Oi9uv2sCnw=")
        }
      }
    
      @Test
      fun malformedBase64() {
        val builder = CertificatePinner.Builder()
        assertFailsWith<IllegalArgumentException> {
          builder.add("example.com", "sha1/DmxUShsZuNiqPQsX2Oi9uv2sCnw*")
        }
      }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/api/internal/project/DeferredProjectConfigurationTest.groovy

            given:
            def events = []
    
            when:
            config.add { events << "a" }
            config.add { events << "b" }
    
            and:
            3.times { config.fire() }
    
            then:
            events == ["a", "b"]
        }
    
        def "cannot add actions once fired"() {
            when:
            config.fire()
    
            and:
            config.add {}
    
            then:
            def e = thrown IllegalStateException
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 15 07:22:20 UTC 2016
    - 2K bytes
    - Viewed (0)
  5. guava-testlib/src/com/google/common/collect/testing/google/MultisetTestSuiteBuilder.java

        testers.add(CollectionSerializationEqualTester.class);
        testers.add(MultisetAddTester.class);
        testers.add(MultisetContainsTester.class);
        testers.add(MultisetCountTester.class);
        testers.add(MultisetElementSetTester.class);
        testers.add(MultisetEqualsTester.class);
        testers.add(MultisetForEachEntryTester.class);
        testers.add(MultisetReadsTester.class);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/api/internal/DefaultNamedDomainObjectListTest.groovy

            list.all(action)
    
            when:
            list.add(0, 'a')
            list.add(0, 'b')
    
            then:
            1 * action.execute('a')
            1 * action.execute('b')
            0 * action._
        }
    
        def "cannot add duplicate element by adding element at given index"() {
            given:
            list.add('a')
    
            when:
            list.add(1, 'a')
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 01 08:21:31 UTC 2023
    - 13K bytes
    - Viewed (0)
  7. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/scopes/Maven4ScopeManagerConfiguration.java

            ArrayList<org.eclipse.aether.scope.DependencyScope> result = new ArrayList<>();
            result.add(internalScopeManager.createDependencyScope(
                    DependencyScope.COMPILE.id(), DependencyScope.COMPILE.isTransitive(), all()));
            result.add(internalScopeManager.createDependencyScope(
                    DependencyScope.RUNTIME.id(),
                    DependencyScope.RUNTIME.isTransitive(),
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  8. src/runtime/map_fast64.go

    		x.k = add(unsafe.Pointer(x.b), dataOffset)
    		x.e = add(x.k, abi.MapBucketCount*8)
    
    		if !h.sameSizeGrow() {
    			// Only calculate y pointers if we're growing bigger.
    			// Otherwise GC can see bad pointers.
    			y := &xy[1]
    			y.b = (*bmap)(add(h.buckets, (oldbucket+newbit)*uintptr(t.BucketSize)))
    			y.k = add(unsafe.Pointer(y.b), dataOffset)
    			y.e = add(y.k, abi.MapBucketCount*8)
    		}
    
    		for ; b != nil; b = b.overflow(t) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/MutableActionSetTest.groovy

            def action = Mock(Action)
            broadcast.add(action)
    
            when:
            broadcast.execute('value')
    
            then:
            1 * action.execute('value')
            0 * action._
        }
    
        def broadcastsEventsToMultipleActions() {
            def action1 = Mock(Action)
            def action2 = Mock(Action)
            broadcast.add(action1)
            broadcast.add(action2)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  10. android/guava-testlib/src/com/google/common/collect/testing/testers/CollectionAddTester.java

      @CollectionFeature.Require(SUPPORTS_ADD)
      public void testAdd_supportedNotPresent() {
        assertTrue("add(notPresent) should return true", collection.add(e3()));
        expectAdded(e3());
      }
    
      @CollectionFeature.Require(absent = SUPPORTS_ADD)
      public void testAdd_unsupportedNotPresent() {
        try {
          collection.add(e3());
          fail("add(notPresent) should throw");
        } catch (UnsupportedOperationException expected) {
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 5.8K bytes
    - Viewed (0)
Back to top