Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for 666F (0.04 sec)

  1. android/guava-tests/test/com/google/common/io/BaseEncodingTest.java

      }
    
      public void testBase16() {
        testEncodingWithCasing(base16(), "", "");
        testEncodingWithCasing(base16(), "f", "66");
        testEncodingWithCasing(base16(), "fo", "666F");
        testEncodingWithCasing(base16(), "foo", "666F6F");
        testEncodingWithCasing(base16(), "foob", "666F6F62");
        testEncodingWithCasing(base16(), "fooba", "666F6F6261");
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Oct 21 16:27:30 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/io/BaseEncodingTest.java

      }
    
      public void testBase16() {
        testEncodingWithCasing(base16(), "", "");
        testEncodingWithCasing(base16(), "f", "66");
        testEncodingWithCasing(base16(), "fo", "666F");
        testEncodingWithCasing(base16(), "foo", "666F6F");
        testEncodingWithCasing(base16(), "foob", "666F6F62");
        testEncodingWithCasing(base16(), "fooba", "666F6F6261");
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Oct 21 16:27:30 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  3. cni/pkg/nodeagent/server_test.go

    	fakeIPSetDeps.On("listEntriesByIP",
    		"foo-v4",
    	).Return([]netip.Addr{
    		netip.MustParseAddr("2.2.2.2"),
    		netip.MustParseAddr("6.6.6.6"),
    		netip.MustParseAddr("3.3.3.3"),
    	}, nil)
    
    	fakeIPSetDeps.On("clearEntriesWithIP",
    		"foo-v4",
    		netip.MustParseAddr("6.6.6.6"),
    	).Return(nil)
    
    	err := m.syncHostIPSets([]*corev1.Pod{pod})
    	assert.NoError(t, err)
    	fakeIPSetDeps.AssertExpectations(t)
    }
    
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Wed Oct 09 16:05:45 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  4. cmd/erasure-decode_test.go

    	b.Run(" XXX000|XXX000 ", func(b *testing.B) { benchmarkErasureDecode(6, 6, 3, 3, size, b) })
    	b.Run(" XXXXXX|000000 ", func(b *testing.B) { benchmarkErasureDecode(6, 6, 6, 0, size, b) })
    }
    
    func BenchmarkErasureDecode_16_40MB(b *testing.B) {
    	const size = 40 * 1024 * 1024
    	b.Run(" 00000000|00000000 ", func(b *testing.B) { benchmarkErasureDecode(8, 8, 0, 0, size, b) })
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Jan 30 20:43:25 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  5. android/pom.xml

          <!--
          We moved away from using dependencyManagement for test-only deps because of https://github.com/google/guava/issues/6654.
          We could probably have resumed it after https://github.com/google/guava/pull/6664.
          But it's always weird that published poms reference test-only libraries at all, so I'm not in any rush to do so.
          -->
        </dependencies>
      </dependencyManagement>
      <profiles>
        <profile>
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 31 14:51:04 UTC 2024
    - 21K bytes
    - Viewed (0)
  6. pom.xml

          <!--
          We moved away from using dependencyManagement for test-only deps because of https://github.com/google/guava/issues/6654.
          We could probably have resumed it after https://github.com/google/guava/pull/6664.
          But it's always weird that published poms reference test-only libraries at all, so I'm not in any rush to do so.
          -->
        </dependencies>
      </dependencyManagement>
      <profiles>
        <profile>
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 31 14:51:04 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/net/MediaTypeTest.java

        assertThrows(IllegalArgumentException.class, () -> MediaType.parse("text/plain; a=\u2025"));
      }
    
      // https://github.com/google/guava/issues/6663
      public void testParse_spaceInParameterSeparator() {
        assertThat(MediaType.parse("text/plain; charset =utf-8").charset()).hasValue(UTF_8);
        assertThat(MediaType.parse("text/plain; charset= utf-8").charset()).hasValue(UTF_8);
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Oct 21 15:41:36 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  8. .teamcity/performance-test-durations.json

        "testProject" : "largeAndroidBuild",
        "linux" : 549
      }, {
        "testProject" : "largeJavaMultiProject",
        "linux" : 687
      }, {
        "testProject" : "largeJavaMultiProjectHierarchy",
        "linux" : 666
      }, {
        "testProject" : "nowInAndroidBuild",
        "linux" : 292
      } ]
    }, {
      "scenario" : "org.gradle.performance.regression.java.JavaIDETaskExecutionPerformanceTest.run compileJava via Tooling API",
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Thu Sep 12 14:38:24 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/collect/OrderingTest.java

        assertTrue(c.compare(5, 42) > 0);
        assertTrue(c.compare(42, 5) < 0);
        IncomparableValueException expected =
            assertThrows(IncomparableValueException.class, () -> c.compare(5, 666));
        assertEquals(666, expected.value);
        new EqualsTester()
            .addEqualityGroup(c, Ordering.explicit(42, 5))
            .addEqualityGroup(Ordering.explicit(5, 42))
            .addEqualityGroup(Ordering.explicit(42))
            .testEquals();
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/collect/OrderingTest.java

        assertTrue(c.compare(5, 42) > 0);
        assertTrue(c.compare(42, 5) < 0);
        IncomparableValueException expected =
            assertThrows(IncomparableValueException.class, () -> c.compare(5, 666));
        assertEquals(666, expected.value);
        new EqualsTester()
            .addEqualityGroup(c, Ordering.explicit(42, 5))
            .addEqualityGroup(Ordering.explicit(5, 42))
            .addEqualityGroup(Ordering.explicit(42))
            .testEquals();
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 42.6K bytes
    - Viewed (0)
Back to top