Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,598 for Our (0.07 sec)

  1. guava-gwt/src/com/google/common/collect/Collect.gwt.xml

        util.concurrent, like nearly all our packages, has two .gwt.xml files: one
        for prod and one for tests. However, unlike our other packages, as of this
        writing it has test supersource but no prod supersource.
    
        GWT happens to use the prod .gwt.xml, so it looks for no supersource for
        tests, either. This causes it to fail to find AtomicLongMapTest.
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 24 14:08:06 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. guava-gwt/src/com/google/common/math/Math.gwt.xml

        util.concurrent, like nearly all our packages, has two .gwt.xml files: one
        for prod and one for tests. However, unlike our other packages, as of this
        writing it has test supersource but no prod supersource.
    
        GWT happens to use the prod .gwt.xml, so it looks for no supersource for
        tests, either. This causes it to fail to find AtomicLongMapTest.
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jan 06 15:30:58 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  3. guava-gwt/test/com/google/common/testing/Testing.gwt.xml

        util.concurrent, like nearly all our packages, has two .gwt.xml files: one
        for prod and one for tests. However, unlike our other packages, as of this
        writing it has test supersource but no prod supersource.
    
        GWT happens to use the prod .gwt.xml, so it looks for no supersource for
        tests, either. This causes it to fail to find AtomicLongMapTest.
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jan 06 15:30:58 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/DefaultClassLoaderFactory.java

            //    classname came from step 2.
            //
            // So, as a workaround, locate and make visible XML parser classes from the system classloader in our isolated ClassLoader.
            //
            // Note that in practise, this is only triggered when running in our tests
    
            if (needJaxpImpl()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  5. docs/en/docs/advanced/async-tests.md

    Let's look at how we can make that work.
    
    ## pytest.mark.anyio
    
    If we want to call asynchronous functions in our tests, our test functions have to be asynchronous. AnyIO provides a neat plugin for this, that allows us to specify that some test functions are to be called asynchronously.
    
    ## HTTPX
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Jan 13 12:07:15 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/model/schemas_test.go

    			InputSchema: arraySchema("boolean", "", nil),
    			// expected JSON is [true,true,...], so our length should be (maxRequestSizeBytes - 2) / 5
    			ExpectedMaxElements: 629145,
    		},
    		{
    			Name:        "durationArray",
    			InputSchema: arraySchema("string", "duration", nil),
    			// expected JSON is ["0","0",...] so our length should be (maxRequestSizeBytes - 2) / 4
    			ExpectedMaxElements: 786431,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 14K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/cel/openapi/schemas_test.go

    			InputSchema: arraySchema("boolean", "", nil),
    			// expected JSON is [true,true,...], so our length should be (maxRequestSizeBytes - 2) / 5
    			ExpectedMaxElements: 629145,
    		},
    		{
    			Name:        "durationArray",
    			InputSchema: arraySchema("string", "duration", nil),
    			// expected JSON is ["0","0",...] so our length should be (maxRequestSizeBytes - 2) / 4
    			ExpectedMaxElements: 786431,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 14 17:18:27 UTC 2022
    - 13K bytes
    - Viewed (0)
  8. guava-gwt/src/com/google/common/html/Html.gwt.xml

        util.concurrent, like nearly all our packages, has two .gwt.xml files: one
        for prod and one for tests. However, unlike our other packages, as of this
        writing it has test supersource but no prod supersource.
    
        GWT happens to use the prod .gwt.xml, so it looks for no supersource for
        tests, either. This causes it to fail to find AtomicLongMapTest.
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jan 06 15:30:58 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  9. guava-gwt/src/com/google/common/primitives/Primitives.gwt.xml

        util.concurrent, like nearly all our packages, has two .gwt.xml files: one
        for prod and one for tests. However, unlike our other packages, as of this
        writing it has test supersource but no prod supersource.
    
        GWT happens to use the prod .gwt.xml, so it looks for no supersource for
        tests, either. This causes it to fail to find AtomicLongMapTest.
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jan 06 15:30:58 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/samples/java/modules-with-transform/groovy/buildSrc/build.gradle

    plugins {
        id 'java-gradle-plugin' // so we can assign and ID to our plugin
    }
    
    dependencies {
        implementation 'org.ow2.asm:asm:8.0.1'
    }
    
    repositories {
        mavenCentral()
    }
    
    gradlePlugin {
        plugins {
            // here we register our plugin with an ID
            register("extra-java-module-info") {
                id = "extra-java-module-info"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 462 bytes
    - Viewed (0)
Back to top