Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 36 of 36 for test_1 (0.2 sec)

  1. pilot/pkg/trustbundle/trustbundle_test.go

    	"os"
    	"path"
    	"sort"
    	"testing"
    	"time"
    
    	meshconfig "istio.io/api/mesh/v1alpha1"
    	"istio.io/istio/pkg/config/mesh"
    	"istio.io/istio/pkg/slices"
    	"istio.io/istio/pkg/test"
    	"istio.io/istio/pkg/test/env"
    	"istio.io/istio/pkg/test/util/retry"
    )
    
    func readCertFromFile(filename string) string {
    	csrBytes, err := os.ReadFile(filename)
    	if err != nil {
    		return ""
    	}
    	return string(csrBytes)
    }
    
    var (
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. docs/metrics/v3.md

    be provided with a specific list of buckets via the `bucket` query parameter. Only metrics for the given buckets will be returned (with the bucket label set). For example to query API metrics for buckets `test1` and `test2`, make a scrape request to `/minio/metrics/v3/api/bucket?buckets=test1,test2`. 
    
    Instead of a metrics scrape, it is also possible to list the metrics that would be returned by a path. This is done by adding a `?list` query parameter. The MinIO server will then list all possible...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 09:36:25 UTC 2024
    - 40.9K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/internal/operations/logging/LoggingBuildOperationProgressIntegTest.groovy

                rootProject.name = 'root'
            """
    
            // add some more progress events
            file('src/test/java/SomeTest.java') << """
                public class SomeTest{
                    @org.junit.Test
                    public void test1(){}
    
                    @org.junit.Test
                    public void test2(){}
    
                }
            """
            file("build.gradle") << """
                apply plugin: 'java'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:34 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  4. src/flag/flag_test.go

    			expectExit: magic,
    		},
    	}
    
    	for _, test := range tests {
    		cmd := exec.Command(os.Args[0], "-test.run=^TestExitCode$")
    		cmd.Env = append(
    			os.Environ(),
    			"GO_CHILD_FLAG="+test.flag,
    			"GO_CHILD_FLAG_HANDLE="+test.flagHandle,
    		)
    		cmd.Run()
    		got := cmd.ProcessState.ExitCode()
    		// ExitCode is either 0 or 1 on Plan 9.
    		if runtime.GOOS == "plan9" && test.expectExit != 0 {
    			test.expectExit = 1
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:38:24 UTC 2024
    - 22K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/utils/tpu_rewrite_device_util_test.cc

      llvm::SmallVector<std::string, 8> core_to_host;
      EXPECT_TRUE(mlir::failed(GetDeviceToHostMap(cluster, core_to_host)));
    }
    
    // Tests `GetDeviceToHostMap` on a non-replicated TPU cluster.
    TEST(TPURewriteDeviceUtilTest, TestDeviceToHostMapNotReplicated) {
      static const char* const module_str =
          R"(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 26 09:37:10 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/PomReaderTest.groovy

        <groupId>\${groupId.prop}</groupId>
        <artifactId>\${artifactId.prop}</artifactId>
        <version>\${version.prop}</version>
        <name>Test Artifact One</name>
        <description>The first test artifact</description>
        <properties>
            <some.prop1>test1</some.prop1>
            <some.prop2>test2</some.prop2>
            <groupId.prop>group-one</groupId.prop>
            <artifactId.prop>artifact-one</artifactId.prop>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 15:53:23 UTC 2024
    - 39.1K bytes
    - Viewed (0)
Back to top