Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 22 for InitTest (0.18 sec)

  1. maven-core/src/test/resources/projects/fully-populated-child.xml

      <build>
        <nagEmailAddress>******@****.***</nagEmailAddress>
        <sourceDirectory>/sourceDirectory</sourceDirectory>
        <unitTestSourceDirectory>/unitTestSourceDirectory</unitTestSourceDirectory>
        <unitTest>
          <includes>
            <include>**/*Test.java</include>
          </includes>
          <excludes>
            <exclude>**/RepositoryTest.java</exclude>
            <exclude>**/JAXPTest.java</exclude>
          </excludes>
    XML
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Wed Feb 28 22:49:30 GMT 2007
    - 4.7K bytes
    - Viewed (0)
  2. istioctl/pkg/kubeinject/testdata/inject-config-inline.yaml

    spec:
      initContainers:
      - name: istio-init
        image: docker.io/istio/proxy_init:unittest-{{.Values.global.suffix}}
      containers:
      - name: istio-proxy
    Others
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Thu Jun 15 15:02:17 GMT 2023
    - 202 bytes
    - Viewed (0)
  3. maven-core/src/test/resources/projects/project.xml

      <build>
        <nagEmailAddress>******@****.***</nagEmailAddress>
        <sourceDirectory>/sourceDirectory</sourceDirectory>
        <unitTestSourceDirectory>/unitTestSourceDirectory</unitTestSourceDirectory>
        <unitTest>
          <includes>
            <include>**/*Test.java</include>
          </includes>
          <excludes>
            <exclude>**/RepositoryTest.java</exclude>
            <exclude>**/JAXPTest.java</exclude>
          </excludes>
    XML
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Wed Feb 28 22:49:30 GMT 2007
    - 4.6K bytes
    - Viewed (0)
  4. build-logic/jvm/src/main/kotlin/gradlebuild.unittest-and-compile.gradle.kts

    Rafael Chaves <******@****.***> 1705420098 -0300
    Plain Text
    - Registered: Wed Mar 27 11:36:08 GMT 2024
    - Last Modified: Wed Jan 17 13:36:27 GMT 2024
    - 15.7K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/util/concurrent/CycleDetectingLockFactoryTest.java

        lock01 = factory3.newReentrantLock(OtherOrder.FIRST);
        lock02 = factory3.newReentrantLock(OtherOrder.SECOND);
        lock03 = factory3.newReentrantLock(OtherOrder.THIRD);
      }
    
      // In the unittest, create each ordered factory with its own set of lock
      // graph nodes (as opposed to using the static per-Enum map) to avoid
      // conflicts across different test runs.
      private <E extends Enum<E>>
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Wed Sep 06 17:04:31 GMT 2023
    - 16.1K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/util/concurrent/CycleDetectingLockFactoryTest.java

        lock01 = factory3.newReentrantLock(OtherOrder.FIRST);
        lock02 = factory3.newReentrantLock(OtherOrder.SECOND);
        lock03 = factory3.newReentrantLock(OtherOrder.THIRD);
      }
    
      // In the unittest, create each ordered factory with its own set of lock
      // graph nodes (as opposed to using the static per-Enum map) to avoid
      // conflicts across different test runs.
      private <E extends Enum<E>>
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed Sep 06 17:04:31 GMT 2023
    - 16.1K bytes
    - Viewed (1)
  7. tests/test_tutorial/test_body/test_tutorial001_py310.py

    from unittest.mock import patch
    
    import pytest
    from dirty_equals import IsDict
    from fastapi.testclient import TestClient
    
    from ...utils import needs_py310
    
    
    @pytest.fixture
    def client():
        from docs_src.body.tutorial001_py310 import app
    
        client = TestClient(app)
        return client
    
    
    @needs_py310
    def test_body_float(client: TestClient):
        response = client.post("/items/", json={"name": "Foo", "price": 50.5})
    Python
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:40:57 GMT 2024
    - 15K bytes
    - Viewed (2)
  8. tests/test_tutorial/test_body/test_tutorial001.py

    from unittest.mock import patch
    
    import pytest
    from dirty_equals import IsDict
    from fastapi.testclient import TestClient
    
    
    @pytest.fixture
    def client():
        from docs_src.body.tutorial001 import app
    
        client = TestClient(app)
        return client
    
    
    def test_body_float(client: TestClient):
        response = client.post("/items/", json={"name": "Foo", "price": 50.5})
        assert response.status_code == 200
    Python
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:40:57 GMT 2024
    - 14.7K bytes
    - Viewed (7)
  9. maven-core/src/test/java/org/apache/maven/graph/DefaultGraphBuilderTest.java

             module-c
             └─── module-c-1
                  module-c-2        (depends on module-b)
             module-d               (packaging is bom)
         */
        private static final String GROUP_ID = "unittest";
        private static final String PARENT_MODULE = "module-parent";
        private static final String INDEPENDENT_MODULE = "module-independent";
        private static final String MODULE_A = "module-a";
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Dec 05 09:23:26 GMT 2023
    - 27.8K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/hash/HashingTest.java

                .testEquals();
    
            assertEquals(hashFunction1a.toString(), hashFunction1b.toString());
          }
        }
      }
    
      // Parity tests taken from //util/hash/hash_unittest.cc
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Wed Sep 06 17:04:31 GMT 2023
    - 26.5K bytes
    - Viewed (0)
Back to top