Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 55 for 1435 (0.07 sec)

  1. pilot/pkg/networking/util/util_test.go

    		{
    			"unequal length",
    			[]*core.CidrRange{
    				{
    					AddressPrefix: "1.2.3.4",
    					PrefixLen: &wrappers.UInt32Value{
    						Value: 32,
    					},
    				},
    				{
    					AddressPrefix: "1.2.3.5",
    					PrefixLen: &wrappers.UInt32Value{
    						Value: 32,
    					},
    				},
    			},
    			[]*core.CidrRange{
    				{
    					AddressPrefix: "1.2.3.4",
    					PrefixLen: &wrappers.UInt32Value{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 40K bytes
    - Viewed (0)
  2. pkg/registry/discovery/endpointslice/strategy_test.go

    				ObjectMeta: metav1.ObjectMeta{Generation: 1},
    				Endpoints: []discovery.Endpoint{{
    					Addresses: []string{"1.2.3.5"},
    				}},
    			},
    			expectedEPS: &discovery.EndpointSlice{
    				ObjectMeta: metav1.ObjectMeta{Generation: 2},
    				Endpoints: []discovery.Endpoint{{
    					Addresses: []string{"1.2.3.5"},
    				}},
    			},
    		},
    		{
    			name: "changed labels should increment generation",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 27.3K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/math/MathTesting.java

            if (x != Math.round(x)) {
              fractionalBuilder.add(x);
            }
          }
        }
        INTEGRAL_DOUBLE_CANDIDATES = integralBuilder.build();
        fractionalBuilder.add(1.414).add(1.415).add(Math.sqrt(2));
        fractionalBuilder.add(5.656).add(5.657).add(4 * Math.sqrt(2));
        for (double d : INTEGRAL_DOUBLE_CANDIDATES) {
          double x = 1 / d;
          if (x != Math.rint(x)) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 11.2K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h.pump

    // INSTANTIATE_TEST_CASE_P(NumSequence, BarTest, Values("one", "two", "three"));
    //
    // This instantiates tests from test case BazTest each with values 1, 2, 3.5.
    // The exact type of values will depend on the type of parameter in BazTest.
    //
    // INSTANTIATE_TEST_CASE_P(FloatingNumbers, BazTest, Values(1, 2, 3.5));
    //
    // Currently, Values() supports from 1 to $n parameters.
    //
    $range i 1..n
    $for i [[
    $range j 1..i
    
    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. android/guava/src/com/google/common/net/InternetDomainName.java

       * validation against <a href="http://www.ietf.org/rfc/rfc3490.txt">RFC 3490</a>
       * ("Internationalizing Domain Names in Applications") is skipped, while validation against <a
       * href="http://www.ietf.org/rfc/rfc1035.txt">RFC 1035</a> is relaxed in the following ways:
       *
       * <ul>
       *   <li>Any part containing non-ASCII characters is considered valid.
       *   <li>Underscores ('_') are permitted wherever dashes ('-') are permitted.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 05 20:47:23 UTC 2024
    - 28K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/primitives/CharsTest.java

        testRotate(new char[] {'1', '2'}, 2, new char[] {'1', '2'});
        testRotate(new char[] {'1', '2'}, 3, new char[] {'2', '1'});
    
        testRotate(new char[] {'1', '2', '3'}, -5, new char[] {'3', '1', '2'});
        testRotate(new char[] {'1', '2', '3'}, -4, new char[] {'2', '3', '1'});
        testRotate(new char[] {'1', '2', '3'}, -3, new char[] {'1', '2', '3'});
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  7. pilot/pkg/xds/ads_test.go

    	}
    
    	s := xdsfake.NewFakeDiscoveryServer(t, xdsfake.FakeOptions{
    		Configs: []config.Config{
    			makeEndpoint([]*networking.WorkloadEntry{
    				{Address: "1.2.3.4", Locality: "region/zone"},
    				{Address: "1.2.3.5", Locality: "notmatch"},
    			}),
    		},
    	})
    	ads := s.Connect(&model.Proxy{Locality: &core.Locality{Region: "region"}}, nil, watchAll)
    
    	assertEndpoints(ads, "1.2.3.4:80", "1.2.3.5:80")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 30 17:25:17 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  8. guava/src/com/google/common/net/InternetDomainName.java

       * validation against <a href="http://www.ietf.org/rfc/rfc3490.txt">RFC 3490</a>
       * ("Internationalizing Domain Names in Applications") is skipped, while validation against <a
       * href="http://www.ietf.org/rfc/rfc1035.txt">RFC 1035</a> is relaxed in the following ways:
       *
       * <ul>
       *   <li>Any part containing non-ASCII characters is considered valid.
       *   <li>Underscores ('_') are permitted wherever dashes ('-') are permitted.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 05 20:47:23 UTC 2024
    - 28K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/batch/v1/types_swagger_doc_generated.go

    	"failedIndexes":           "FailedIndexes holds the failed indexes when spec.backoffLimitPerIndex is set. The indexes are represented in the text format analogous as for the `completedIndexes`...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/batch/v1/generated.proto

      // more consecutive numbers are compressed and represented by the first and
      // last element of the series, separated by a hyphen.
      // For example, if the completed indexes are 1, 3, 4, 5 and 7, they are
      // represented as "1,3-5,7".
      // +optional
      optional string completedIndexes = 7;
    
      // FailedIndexes holds the failed indexes when spec.backoffLimitPerIndex is set.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 29.1K bytes
    - Viewed (0)
Back to top