Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for E3 (0.02 sec)

  1. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/api/internal/provider/PropertySpec.groovy

            e2.cause.message == "broken!"
    
            when:
            property.get()
    
            then:
            def e3 = thrown(AbstractProperty.PropertyQueryException)
            e3.message == "Failed to calculate the value of <property>."
            e3.cause.message == "broken!"
        }
    
        def "does not finalize upstream property on finalize"() {
            def upstream = propertyWithNoValue()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 87.8K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/CollectionPropertySpec.groovy

            e2.message == 'The value for this property is final and cannot be changed any further.'
    
            when:
            property.addAll(Stub(ProviderInternal))
    
            then:
            def e3 = thrown(IllegalStateException)
            e3.message == 'The value for this property is final and cannot be changed any further.'
        }
    
        def "cannot add elements after value finalized implicitly"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  3. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/DefaultConfigurableFileCollectionSpec.groovy

            e2.message == 'The value for <display> is final and cannot be changed any further.'
    
            when:
            collection.setFrom(['some', 'more'])
    
            then:
            def e3 = thrown(IllegalStateException)
            e3.message == 'The value for <display> is final and cannot be changed any further.'
        }
    
        def "cannot mutate from set when finalized"() {
            given:
            collection.from('a')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 17:09:50 UTC 2024
    - 53K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/collect/SetsTest.java

                      protected Set<String> create(String[] elements) {
                        Set<String> set1 = Sets.newHashSet(elements);
                        set1.add(samples().e3());
                        Set<String> set2 = Sets.newHashSet(samples().e3());
                        return Sets.difference(set1, set2);
                      }
                    })
                .named("Sets.difference")
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 49.2K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/MapPropertySpec.groovy

            e2.message == 'The value for <b> is final and cannot be changed any further.'
    
            when:
            c.set('c2')
    
            then:
            def e3 = thrown(IllegalStateException)
            e3.message == 'The value for <c> is final and cannot be changed any further.'
    
            where:
            method << ["get", "finalizeValue", "isPresent"]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 58.7K bytes
    - Viewed (0)
  6. okhttp/src/test/java/okhttp3/HttpUrlTest.kt

        // medium mathematical space
        assertThat(parse("http://h/\u205f").encodedPath).isEqualTo("/%E2%81%9F")
        // ideographic space
        assertThat(parse("http://h/\u3000").encodedPath).isEqualTo("/%E3%80%80")
      }
    
      @Test
      fun newBuilderResolve() {
        // Non-exhaustive tests because implementation is the same as resolve.
        val base = parse("http://host/a/b")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/api_test.go

    		{`package e1; const _ = float32(-1e-200)`, `float32(-1e-200)`, `float32`, `0`},
    		{`package e2; const _ = float64( 1e-2000)`, `float64(1e-2000)`, `float64`, `0`},
    		{`package e3; const _ = float64(-1e-2000)`, `float64(-1e-2000)`, `float64`, `0`},
    		{`package e4; const _ = complex64( 1e-200)`, `complex64(1e-200)`, `complex64`, `(0 + 0i)`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  8. src/go/types/api_test.go

    		{`package e1; const _ = float32(-1e-200)`, `float32(-1e-200)`, `float32`, `0`},
    		{`package e2; const _ = float64( 1e-2000)`, `float64(1e-2000)`, `float64`, `0`},
    		{`package e3; const _ = float64(-1e-2000)`, `float64(-1e-2000)`, `float64`, `0`},
    		{`package e4; const _ = complex64( 1e-200)`, `complex64(1e-200)`, `complex64`, `(0 + 0i)`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
Back to top