Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 389 for math3 (0.07 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. staging/src/k8s.io/apimachinery/pkg/util/intstr/intstr_test.go

    		},
    		{
    			input:  "2147483647", // math.MaxInt32
    			output: IntOrString{Type: Int, IntVal: 2147483647},
    		},
    		{
    			input:  "-2147483648", // math.MinInt32
    			output: IntOrString{Type: Int, IntVal: -2147483648},
    		},
    		{
    			input:  "2147483648", // math.MaxInt32+1
    			output: IntOrString{Type: String, StrVal: "2147483648"},
    		},
    		{
    			input:  "-2147483649", // math.MinInt32-1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:09 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  6. src/go/build/deps_test.go

    	< TIME;
    
    	TIME, io, path, slices
    	< io/fs;
    
    	# MATH is RUNTIME plus the basic math packages.
    	RUNTIME
    	< math
    	< MATH;
    
    	unicode !< math;
    
    	MATH
    	< math/cmplx;
    
    	MATH
    	< math/rand, math/rand/v2;
    
    	MATH
    	< runtime/metrics;
    
    	RUNTIME, math/rand/v2
    	< internal/concurrent;
    
    	MATH, unicode/utf8
    	< strconv;
    
    	unicode !< strconv;
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 16:41:13 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/math/BigIntegerMathTest.java

    import static com.google.common.truth.Truth.assertThat;
    import static com.google.common.truth.Truth.assertWithMessage;
    import static java.math.BigInteger.ONE;
    import static java.math.BigInteger.TEN;
    import static java.math.BigInteger.ZERO;
    import static java.math.RoundingMode.CEILING;
    import static java.math.RoundingMode.DOWN;
    import static java.math.RoundingMode.FLOOR;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 17:58:33 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/math/DoubleMath.java

    import static com.google.common.math.MathPreconditions.checkInRangeForRoundingInputs;
    import static com.google.common.math.MathPreconditions.checkNonNegative;
    import static com.google.common.math.MathPreconditions.checkRoundingUnnecessary;
    import static java.lang.Math.abs;
    import static java.lang.Math.copySign;
    import static java.lang.Math.getExponent;
    import static java.lang.Math.log;
    import static java.lang.Math.rint;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  9. guava/src/com/google/common/math/DoubleMath.java

    import static com.google.common.math.MathPreconditions.checkInRangeForRoundingInputs;
    import static com.google.common.math.MathPreconditions.checkNonNegative;
    import static com.google.common.math.MathPreconditions.checkRoundingUnnecessary;
    import static java.lang.Math.abs;
    import static java.lang.Math.copySign;
    import static java.lang.Math.getExponent;
    import static java.lang.Math.log;
    import static java.lang.Math.rint;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  10. src/slices/slices_test.go

    		{x: make([]struct{}, math.MaxInt/6-5), count: 6, want: make([]struct{}, 6*(math.MaxInt/6-5))},
    		{x: make([]struct{}, math.MaxInt/7-6), count: 7, want: make([]struct{}, 7*(math.MaxInt/7-6))},
    		{x: make([]struct{}, math.MaxInt/8-7), count: 8, want: make([]struct{}, 8*(math.MaxInt/8-7))},
    		{x: make([]struct{}, math.MaxInt/9-8), count: 9, want: make([]struct{}, 9*(math.MaxInt/9-8))},
    	} {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:06 UTC 2024
    - 33.2K bytes
    - Viewed (0)
Back to top