Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 634 for combinations (0.25 sec)

  1. android/guava-tests/test/com/google/common/math/StatsTest.java

        assertThat(Stats.of(NaN).mean()).isNaN();
        assertThat(TWO_VALUES_STATS.mean()).isWithin(ALLOWED_ERROR).of(TWO_VALUES_MEAN);
        // For datasets of many double values created from an array, we test many combinations of finite
        // and non-finite values:
        for (ManyValues values : ALL_MANY_VALUES) {
          double mean = Stats.of(values.asArray()).mean();
          if (values.hasAnyNaN()) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 28.4K bytes
    - Viewed (0)
  2. test/typeparam/interfacearg.go

    // generic type. Test that _S[I] is successfully exported.
    func F() {
    	v := _S[I]{}
    	if v.x != nil {
    		panic(v)
    	}
    }
    
    // Testing the various combinations of method expressions.
    type S1 struct{}
    
    func (*S1) M() {}
    
    type S2 struct{}
    
    func (S2) M() {}
    
    func _F1[T interface{ M() }](t T) {
    	_ = T.M
    }
    
    func F2() {
    	_F1(&S1{})
    	_F1(S2{})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 692 bytes
    - Viewed (0)
  3. testing/internal-testing/src/main/groovy/org/gradle/test/precondition/Requires.java

    /**
     * Annotation defining a set of requirements.
     * These requirements should be met per test-class or method, or else the test is ignored.
     *
     * <p>
     * Combinations are pre-defined. See {@link RequiresExtension} for more info how to introduce a new combination.
     *
     * @see RequiresExtension
     */
    @Retention(RetentionPolicy.RUNTIME)
    @Target({ElementType.METHOD, ElementType.TYPE})
    @Inherited
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/main/java/org/gradle/language/ComponentWithTargetMachines.java

         * Specifies the target machines this component should be built for.  The "machines" extension property (see {@link org.gradle.nativeplatform.TargetMachineFactory}) can be used to construct common operating system and architecture combinations.
         *
         * <p>For example:</p>
         * <pre>
         * targetMachines = [machines.linux.x86_64, machines.windows.x86_64]
         * </pre>
         *
         * @since 5.2
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/internal/http2/Http2.kt

          "DATA", "HEADERS", "PRIORITY", "RST_STREAM", "SETTINGS", "PUSH_PROMISE", "PING", "GOAWAY",
          "WINDOW_UPDATE", "CONTINUATION",
        )
    
      /**
       * Lookup table for valid flags for DATA, HEADERS, CONTINUATION. Invalid combinations are
       * represented in binary.
       */
      private val FLAGS = arrayOfNulls<String>(0x40) // Highest bit flag is 0x20.
      private val BINARY =
        Array(256) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  6. src/cmd/internal/osinfo/os_js.go

    	// Version detection on Wasm varies depending on the underlying runtime
    	// (browser, node, etc), nor is there a standard via something like
    	// WASI (see https://go.dev/issue/31105). For now, attempt a few simple
    	// combinations for the convenience of reading logs at build.golang.org
    	// and local development. It's not a goal to recognize all environments.
    	if v, ok := node(); ok {
    		return "Node.js " + v, nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 22:43:17 UTC 2023
    - 1K bytes
    - Viewed (0)
  7. src/internal/types/testdata/fixedbugs/issue62157.go

    	f(A, B /* ERROR "type namedB of B does not match inferred type namedA for T" */)
    	f(B, A /* ERROR "type namedA of A does not match inferred type namedB for T" */)
    
    	// Ensure that all combinations of directional and
    	// bidirectional channels with a named directional
    	// channel lead to the correct (named) directional
    	// channel.
    	B = f(a, b)
    	B = f(a, B)
    	B = f(b, a)
    	B = f(B, a)
    
    	B = f(a, b, B)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 23:22:35 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  8. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerExecutorParametersKotlinIntegrationTest.groovy

            outputContains ':runWork FROM-CACHE'
    
            and:
            outputDoesNotContain expectedOutput
    
            where:
            [isolationMode, primitiveType] << [isolationModes(), primitiveTypes()].combinations()
            expectedOutput = expectedOutputFor(primitiveType)
        }
    
        @Issue('https://github.com/gradle/gradle/issues/26596')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 11 20:22:02 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/math/PairedStatsTest.java

        assertThat(TWO_VALUES_PAIRED_STATS.populationCovariance())
            .isWithin(ALLOWED_ERROR)
            .of(TWO_VALUES_SUM_OF_PRODUCTS_OF_DELTAS / 2);
        // For datasets of many double values, we test many combinations of finite and non-finite
        // x-values:
        for (ManyValues values : ALL_MANY_VALUES) {
          PairedStats stats = createPairedStatsOf(values.asIterable(), OTHER_MANY_VALUES);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 14K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/ConfigurationRolesSpec.groovy

            false       | false         | true              || ConfigurationRoles.DEPENDENCY_SCOPE
        }
    
        def "can not find unknown usage combinations consumable=#consumable, resolvable=#resolvable, declarable=#declarable"() {
            expect:
            !ConfigurationRoles.byUsage(consumable, resolvable, declarable).isPresent()
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.4K bytes
    - Viewed (0)
Back to top