Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 for _123 (0.04 sec)

  1. pilot/pkg/networking/core/httproute_test.go

    			node: &model.Proxy{
    				DNSDomain: "foo.svc.custom.k8s.local",
    			},
    			want: []string{"google.local"},
    		},
    		{
    			name: "ipv4 domain",
    			service: &model.Service{
    				Hostname:     "1.2.3.4",
    				MeshExternal: false,
    			},
    			port: 8123,
    			node: &model.Proxy{
    				DNSDomain: "example.com",
    			},
    			want: []string{"1.2.3.4"},
    		},
    		{
    			name: "ipv6 domain",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/quantize_composite_functions.mlir

    }
    
    // -----
    
    // Checks that fused functions with 4D bias is properly quantized.
    // The 4D bias should be braoadcasted in dims [0, 1, 2, 3], where it
    // already has `quantizedDimension=3`.
    
    module attributes {tf_saved_model.semantics} {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 05:56:10 UTC 2024
    - 91.6K bytes
    - Viewed (0)
  3. src/fmt/fmt_test.go

    	if s != "[]" {
    		t.Errorf("empty slice printed as %q not %q", s, "[]")
    	}
    	slice = []int{1, 2, 3}
    	s = Sprint(slice)
    	if s != "[1 2 3]" {
    		t.Errorf("slice: got %q expected %q", s, "[1 2 3]")
    	}
    	s = Sprint(&slice)
    	if s != "&[1 2 3]" {
    		t.Errorf("&slice: got %q expected %q", s, "&[1 2 3]")
    	}
    }
    
    // presentInMap checks map printing using substrings so we don't depend on the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  4. pkg/apis/certificates/validation/validation_test.go

    					Request:    newCSRPEM(t),
    					SignerName: "example.com/",
    				},
    			},
    			errs: field.ErrorList{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:49 UTC 2023
    - 61K bytes
    - Viewed (0)
  5. okhttp/src/test/java/okhttp3/HttpUrlTest.kt

            .build()
        assertThat(url.toString())
          .isEqualTo(
            "http://a%3A%01%40%2F%5C%3F%23%25b:c%3A%01%40%2F%5C%3F%23%25d@ef:8080/" +
              "g:%01@%2F%5C%3F%23%25h?i:%01@/\\?%23%25j#k:%01@/\\?#%25l",
          )
        assertThat(url.scheme).isEqualTo("http")
        assertThat(url.username).isEqualTo("a:\u0001@/\\?#%b")
        assertThat(url.password).isEqualTo("c:\u0001@/\\?#%d")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  6. src/strings/strings_test.go

    	{"xx012xx", "012", true},
    	{"xxxx012", "012", true},
    	{"012xxxxx"[1:], "012", false},
    	{"xxxxx012"[:7], "012", false},
    	// 4-byte needle
    	{"xxxxxxxx", "0123", false},
    	{"0123xxxx", "0123", true},
    	{"xx0123xx", "0123", true},
    	{"xxxx0123", "0123", true},
    	{"0123xxxxx"[1:], "0123", false},
    	{"xxxxx0123"[:8], "0123", false},
    	// 5-7-byte needle
    	{"xxxxxxxxx", "01234", false},
    	{"01234xxxx", "01234", true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 53K bytes
    - Viewed (0)
  7. pkg/apis/networking/validation/validation_test.go

    			expectedErrs: field.ErrorList{},
    		},
    		"invalid name, valid controller": {
    			ingressClass: makeValidIngressClass("test*123", "foo.co/bar"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 73.3K bytes
    - Viewed (0)
  8. pkg/apis/flowcontrol/validation/validation_test.go

    			field.Invalid(field.NewPath("spec").Child("rules").Index(0).Child("resourceRules").Index(0).Child("namespaces").Index(0), "-foo", nsErrIntro+`a lowercase RFC 1123 label must consist of lower case alphanumeric characters or '-', and must start and end with an alphanumeric character (e.g. 'my-name',  or '123-abc', regex used for validation is '[a-z0-9]([-a-z0-9]*[a-z0-9])?')`),
    		},
    	}, {
    		name: "MatchingPrecedence must not be greater than 10000",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 54.7K bytes
    - Viewed (0)
  9. kotlin-js-store/yarn.lock

      integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==
      dependencies:
        safer-buffer ">= 2.1.2 < 3"
    
    iconv-lite@^0.6.3:
      version "0.6.3"
      resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.6.3.tgz#a52f80bf38da1952eb5c681790719871a1a72501"
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jul 22 12:28:51 UTC 2023
    - 87.4K bytes
    - Viewed (0)
  10. gradle/verification-metadata.xml

                <pgp value="D477D51812E692011DB11E66A6EA2E2BF22E0543"/>
             </artifact>
          </component>
          <component group="io.github.microutils" name="kotlin-logging-jvm" version="2.1.23">
             <artifact name="kotlin-logging-jvm-2.1.23.jar">
                <pgp value="47EB6836245D2D40E89DFB4136D4E9618F3ADAB5"/>
             </artifact>
          </component>
          <component group="io.netty" name="netty-all" version="4.1.63.Final">
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 22:30:36 UTC 2024
    - 90.1K bytes
    - Viewed (0)
Back to top