Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 70 for test_pvc (0.22 sec)

  1. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/TestSpec.java

     *
     * @since 7.6
     */
    @Incubating
    public interface TestSpec {
    
        /**
         * Adds all tests declared in the target package to the test execution.
         * <p>
         * The effect is recursive, meaning that the tests defined in sub-packages will also be executed.
         *
         * @param pkg The target package.
         * @return this
         */
        TestSpec includePackage(String pkg);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  2. src/net/external_test.go

    import (
    	"fmt"
    	"internal/testenv"
    	"io"
    	"strings"
    	"testing"
    )
    
    func TestResolveGoogle(t *testing.T) {
    	testenv.MustHaveExternalNetwork(t)
    
    	if !supportsIPv4() || !supportsIPv6() || !*testIPv4 || !*testIPv6 {
    		t.Skip("both IPv4 and IPv6 are required")
    	}
    
    	for _, network := range []string{"tcp", "tcp4", "tcp6"} {
    		addr, err := ResolveTCPAddr(network, "www.google.com:http")
    		if err != nil {
    			t.Error(err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  3. mockwebserver/src/test/java/mockwebserver3/RecordedRequestTest.kt

    import okio.Buffer
    import org.junit.jupiter.api.Test
    import org.junit.jupiter.api.Timeout
    
    @Timeout(30)
    class RecordedRequestTest {
      private val headers: Headers = EMPTY_HEADERS
    
      @Test fun testIPv4() {
        val socket =
          FakeSocket(
            localAddress = InetAddress.getByAddress("127.0.0.1", byteArrayOf(127, 0, 0, 1)),
            localPort = 80,
          )
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. pkg/kubelet/metrics/collectors/volume_stats_test.go

    			kubelet_volume_stats_inodes{namespace="testns",persistentvolumeclaim="testpvc"} 655360
    			kubelet_volume_stats_inodes_free{namespace="testns",persistentvolumeclaim="testpvc"} 655344
    			kubelet_volume_stats_inodes_used{namespace="testns",persistentvolumeclaim="testpvc"} 16
    			kubelet_volume_stats_used_bytes{namespace="testns",persistentvolumeclaim="testpvc"} 4.21789696e+09
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  5. src/net/lookup_test.go

    	"8.8.4.4",
    	"2001:4860:4860::8888",
    	"2001:4860:4860::8844",
    }
    
    func TestLookupGooglePublicDNSAddr(t *testing.T) {
    	mustHaveExternalNetwork(t)
    
    	if !supportsIPv4() || !supportsIPv6() || !*testIPv4 || !*testIPv6 {
    		t.Skip("both IPv4 and IPv6 are required")
    	}
    
    	defer dnsWaitGroup.Wait()
    
    	for _, ip := range lookupGooglePublicDNSAddrTests {
    		names, err := LookupAddr(ip)
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/DefaultTestSpec.java

            this.patterns = patterns;
        }
    
        @Override
        public TestSpec includePackage(String pkg) {
            return includePackages(Collections.singletonList(pkg));
        }
    
        @Override
        public TestSpec includePackages(Collection<String> packages) {
            this.packages.addAll(packages);
            return this;
        }
    
        @Override
        public TestSpec includeClass(String cls) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  7. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/PerformanceTestIdProvider.groovy

            if (methodName != null && testSpec != null) {
                if (testSpec.hasProperty('testId') && testSpec.testId == null) {
                    testSpec.testId = methodName
                } else if (testSpec.hasProperty('displayName') && testSpec.displayName == null) {
                    testSpec.displayName = methodName
                }
    
                if(testSpec.hasProperty('testClassName') && testSpec.testClassName == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  8. src/net/main_test.go

    	// connectivity.
    	testIPv4 = flag.Bool("ipv4", true, "assume external IPv4 connectivity exists")
    
    	// If external IPv6 connectivity exists, we can try dialing
    	// non-node/interface local scope IPv6 addresses.
    	// On Windows, Lookup APIs may not return IPv6-related
    	// resource records when a node has no external IPv6
    	// connectivity.
    	testIPv6 = flag.Bool("ipv6", false, "assume external IPv6 connectivity exists")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/DefaultTestSpecs.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.tooling.internal.consumer;
    
    import org.gradle.tooling.TestSpec;
    import org.gradle.tooling.TestSpecs;
    
    import java.util.ArrayList;
    import java.util.List;
    
    public class DefaultTestSpecs implements TestSpecs {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  10. tensorflow/c/experimental/filesystem/modular_filesystem_test.cc

                "/a/path/to/a/file");
    }
    
    TEST_P(ModularFileSystemTest, TestCreateFile) {
      const std::string filepath = GetURIForPath("a_file");
      std::unique_ptr<WritableFile> new_file;
      Status status = env_->NewWritableFile(filepath, &new_file);
      EXPECT_PRED2(UnimplementedOrReturnsCode, status, Code::OK);
    }
    
    TEST_P(ModularFileSystemTest, TestCreateFileNonExisting) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 20:25:58 UTC 2022
    - 71K bytes
    - Viewed (0)
Back to top