Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 695 for math3 (0.08 sec)

  1. platforms/jvm/plugins-java-library/src/integTest/groovy/org/gradle/java/JavaLibraryFeatureCompilationIntegrationTest.groovy

                dependencies {
                    testImplementation "junit:junit:4.13"
                    featApi "org.apache.commons:commons-math3:3.6.1"
                }
            """
            file("src/test/java/com/acme/FeatureTest.java") << """package com.acme;
                import org.apache.commons.math3.complex.Complex;
                import org.junit.Test;
                import static org.junit.Assert.*;
    
                public class FeatureTest {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 18 13:02:41 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  2. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/JavaLibraryInitIntegrationTest.groovy

            dslFixture.buildFile.assertContents(
                allOf(
                    dslFixture.containsConfigurationDependencyNotation('api', 'libs.commons.math3'),
                    dslFixture.containsConfigurationDependencyNotation('implementation', 'libs.guava'),
                    dslFixture.containsConfigurationDependencyNotation('testImplementation', 'libs.' + testFramework)))
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 03:26:38 UTC 2024
    - 11.8K bytes
    - Viewed (1)
  3. build-logic/dependency-modules/src/main/kotlin/gradlebuild/modules/extension/ExternalModulesExtension.kt

        val commonsIo = "commons-io:commons-io"
        val commonsLang = "commons-lang:commons-lang"
        val commonsLang3 = "org.apache.commons:commons-lang3"
        val commonsMath = "org.apache.commons:commons-math3"
        val configurationCacheReport = "org.gradle.buildtool.internal:configuration-cache-report:$configurationCacheReportVersion"
        val eclipseSisuPlexus = "org.eclipse.sisu:org.eclipse.sisu.plexus"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 22:44:42 UTC 2024
    - 15K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/execution/taskgraph/ParallelTaskExecutionIntegrationTest.groovy

                    }
    
                    ${RepoScriptBlockUtil.mavenCentralRepository()}
    
                    dependencies {
                        api 'org.apache.commons:commons-math3:3.6.1'
                        api 'org.apache.commons:commons-io:1.3.2'
                    }
                }
            """)
            withParallelThreads(3)
            executer.beforeExecute {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 14:00:51 UTC 2024
    - 21K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/test/float_test.go

    		t.Errorf("d9 <= d1 returned true")
    	}
    	if math.NaN() == math.NaN() {
    		t.Errorf("math.NaN() == math.NaN() returned true")
    	}
    	if math.NaN() >= math.NaN() {
    		t.Errorf("math.NaN() >= math.NaN() returned true")
    	}
    	if math.NaN() <= math.NaN() {
    		t.Errorf("math.NaN() <= math.NaN() returned true")
    	}
    	if math.Copysign(math.NaN(), -1) < math.NaN() {
    		t.Errorf("math.Copysign(math.NaN(), -1) < math.NaN() returned true")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:54:15 UTC 2022
    - 12.5K bytes
    - Viewed (0)
  6. api/go1.9.txt

    pkg math/bits, func Len(uint) int
    pkg math/bits, func Len16(uint16) int
    pkg math/bits, func Len32(uint32) int
    pkg math/bits, func Len64(uint64) int
    pkg math/bits, func Len8(uint8) int
    pkg math/bits, func OnesCount(uint) int
    pkg math/bits, func OnesCount16(uint16) int
    pkg math/bits, func OnesCount32(uint32) int
    pkg math/bits, func OnesCount64(uint64) int
    pkg math/bits, func OnesCount8(uint8) int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 04 20:20:20 UTC 2021
    - 10.7K bytes
    - Viewed (0)
  7. src/math/cmplx/cmath_test.go

    	{NaN(),
    		NaN()},
    }
    var vcIsNaNSC = []complex128{
    	complex(math.Inf(-1), math.Inf(-1)),
    	complex(math.Inf(-1), math.NaN()),
    	complex(math.NaN(), math.Inf(-1)),
    	complex(0, math.NaN()),
    	complex(math.NaN(), 0),
    	complex(math.Inf(1), math.Inf(1)),
    	complex(math.Inf(1), math.NaN()),
    	complex(math.NaN(), math.Inf(1)),
    	complex(math.NaN(), math.NaN()),
    }
    var isNaNSC = []bool{
    	false,
    	false,
    	false,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 01 03:16:37 UTC 2020
    - 48.1K bytes
    - Viewed (0)
  8. api/go1.17.txt

    pkg math (linux-amd64-cgo), const MinInt = -9223372036854775808
    pkg math (linux-arm), const MaxInt = 2147483647
    pkg math (linux-arm), const MaxUint = 4294967295
    pkg math (linux-arm), const MinInt = -2147483648
    pkg math (linux-arm-cgo), const MaxInt = 2147483647
    pkg math (linux-arm-cgo), const MaxUint = 4294967295
    pkg math (linux-arm-cgo), const MinInt = -2147483648
    pkg math (netbsd-386), const MaxInt = 2147483647
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 20:31:46 UTC 2023
    - 18K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/math/StatsTest.java

    import static com.google.common.math.StatsTesting.MANY_VALUES_MAX;
    import static com.google.common.math.StatsTesting.MANY_VALUES_MEAN;
    import static com.google.common.math.StatsTesting.MANY_VALUES_MIN;
    import static com.google.common.math.StatsTesting.MANY_VALUES_STATS_ITERABLE;
    import static com.google.common.math.StatsTesting.MANY_VALUES_STATS_ITERATOR;
    import static com.google.common.math.StatsTesting.MANY_VALUES_STATS_SNAPSHOT;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 28.4K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/math/PairedStatsTest.java

    import static com.google.common.math.StatsTesting.EMPTY_STATS_ITERABLE;
    import static com.google.common.math.StatsTesting.HORIZONTAL_VALUES_PAIRED_STATS;
    import static com.google.common.math.StatsTesting.MANY_VALUES;
    import static com.google.common.math.StatsTesting.MANY_VALUES_COUNT;
    import static com.google.common.math.StatsTesting.MANY_VALUES_PAIRED_STATS;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 14K bytes
    - Viewed (0)
Back to top