Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 47 of 47 for testhist (0.16 sec)

  1. pkg/config/analysis/msg/messages.gen.go

    func NewVirtualServiceDestinationPortSelectorRequired(r *resource.Instance, destHost string, destPorts []int) diag.Message {
    	return diag.NewMessage(
    		VirtualServiceDestinationPortSelectorRequired,
    		r,
    		destHost,
    		destPorts,
    	)
    }
    
    // NewDeploymentAssociatedToMultipleServices returns a new diag.Message based on DeploymentAssociatedToMultipleServices.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/io/FilesTest.java

        Files.readLines(temp, Charsets.UTF_8, collectNonEmptyLines);
        assertThat(collectNonEmptyLines.getResult()).containsExactly("hello", " world  ").inOrder();
    
        assertTrue(temp.delete());
      }
    
      public void testHash() throws IOException {
        File asciiFile = getTestFile("ascii.txt");
        File i18nFile = getTestFile("i18n.txt");
    
        String init = "d41d8cd98f00b204e9800998ecf8427e";
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 22.2K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ArtifactDependenciesIntegrationTest.groovy

    }
    configurations {
        compile
    }
    dependencies {
        compile "org.gradle.test:lib:1.0"
        compile "org.gradle.test:lib:1.0:classifier"
        compile "org.gradle.test:lib:1.0@zip"
        compile "org.gradle.test:dist:1.0"
    }
    
    abstract class CheckArtifacts extends DefaultTask {
        @Internal
        FileCollection files
    
        @Internal
        ArtifactCollection artifacts
    
        @TaskAction
        void test() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 01:09:32 UTC 2024
    - 23.7K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h.pump

    //
    // In the following sample, tests from test case FooTest are instantiated
    // each three times with parameter values 3, 5, and 8:
    //
    // class FooTest : public TestWithParam<int> { ... };
    //
    // TEST_P(FooTest, TestThis) {
    // }
    // TEST_P(FooTest, TestThat) {
    // }
    // INSTANTIATE_TEST_CASE_P(TestSequence, FooTest, Values(3, 5, 8));
    //
    
    // Range() returns generators providing sequences of values in a range.
    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/etcd3/store_test.go

    }
    
    func TestTransformationFailure(t *testing.T) {
    	ctx, store, _ := testSetup(t)
    	storagetesting.RunTestTransformationFailure(ctx, t, &storeWithPrefixTransformer{store})
    }
    
    func TestList(t *testing.T) {
    	ctx, store, client := testSetup(t)
    	storagetesting.RunTestList(ctx, t, store, compactStorage(client), false)
    }
    
    func TestConsistentList(t *testing.T) {
    	ctx, store, client := testSetup(t)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  6. pkg/config/analysis/msg/messages.yaml

        template: "This VirtualService routes to a service %q that exposes multiple ports %v. Specifying a port in the destination is required to disambiguate."
        args:
          - name: destHost
            type: string
          - name: destPorts
            type: "[]int"
    
      # IST0113 RETIRED
      # IST0114 RETIRED
      # IST0115 RETIRED
    
      - name: "DeploymentAssociatedToMultipleServices"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/math/BigIntegerMathTest.java

          BigInteger halfEven = BigIntegerMath.sqrt(x, HALF_EVEN);
          // Now figure out what rounding mode we should behave like (it depends if FLOOR was
          // odd/even).
          boolean floorWasOdd = BigIntegerMath.sqrt(x, FLOOR).testBit(0);
          assertEquals(BigIntegerMath.sqrt(x, floorWasOdd ? HALF_UP : HALF_DOWN), halfEven);
        }
      }
    
      @GwtIncompatible // TODO
      @AndroidIncompatible // slow
      public void testDivNonZero() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 17:58:33 UTC 2024
    - 27.8K bytes
    - Viewed (0)
Back to top