Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 651 for 12e34 (0.12 sec)

  1. pkg/kube/inject/testdata/inject/proxy-override-runas.yaml.injected

            prometheus.io/port: "15020"
            prometheus.io/scrape: "true"
            proxy.istio.io/overrides: '{"containers":[{"name":"istio-proxy","resources":{},"securityContext":{"runAsUser":1234,"runAsGroup":4321}}]}'
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:59:39 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/testdata/invalid.status.yaml.golden

    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: Gateway
    metadata:
      creationTimestamp: null
      name: gateway
      namespace: istio-system
    spec: null
    status:
      addresses:
      - type: IPAddress
        value: 1.2.3.4
      conditions:
      - lastTransitionTime: fake
        message: Resource accepted
        reason: Accepted
        status: "True"
        type: Accepted
      - lastTransitionTime: fake
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 20:48:23 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/util/staticpod/utils_test.go

    				},
    			},
    			isIPv6:           false,
    			expectedHostname: "1.2.3.4",
    			expectedPort:     1234,
    			expectedScheme:   v1.URISchemeHTTP,
    		},
    		{
    			name: "etcd probe URL without scheme should result in defaults",
    			cfg: &kubeadmapi.Etcd{
    				Local: &kubeadmapi.LocalEtcd{
    					ExtraArgs: []kubeadmapi.Arg{
    						{Name: "listen-metrics-urls", Value: "1.2.3.4"},
    					},
    				},
    			},
    			isIPv6:           false,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 12 15:44:44 UTC 2023
    - 22.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/stablehlo/tests/fold_broadcast.mlir

    func.func @notFoldBroadcastInDimBeforeMulOpWhenArgIsNonConst_bcast_dim_1D_int(%arg0: tensor<1x1x2x4xi32>) -> (tensor<1x1x2x4xi32>) {
      // CHECK-DAG: %[[CONST:.*]] = mhlo.constant dense<{{\[}}1, 2, 3, 4]> : tensor<4xi32>
      %cst0 = mhlo.constant dense<[1, 2, 3, 4]> : tensor<4xi32>
      // CHECK: %[[BROADCAST:.*]] = "mhlo.broadcast_in_dim"(%[[CONST]]) <{broadcast_dimensions = dense<3> : tensor<1xi64>}> : (tensor<4xi32>) -> tensor<1x1x2x4xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 15:32:52 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  5. okhttp/src/test/java/okhttp3/RequestCommonTest.kt

      }
    
      @Test
      fun kotlinReifiedTag() {
        val uuidTag = "1234"
        val request =
          Request.Builder()
            .url("https://square.com")
            .tag<String>(uuidTag) // Use the type parameter.
            .build()
        assertThat(request.tag<String>()).isSameAs("1234")
        assertThat(request.tag<Any>()).isNull()
    
        // Alternate access APIs also work.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/phases/kubeconfig/kubeconfig_test.go

    			ClusterConfiguration: kubeadmapi.ClusterConfiguration{
    				CertificatesDir:     pkidir,
    				EncryptionAlgorithm: kubeadmapi.EncryptionAlgorithmECDSAP256,
    			},
    			NodeRegistration: kubeadmapi.NodeRegistrationOptions{Name: "valid-node-name"},
    		},
    		{
    			LocalAPIEndpoint: kubeadmapi.APIEndpoint{AdvertiseAddress: "1.2.3.4", BindPort: 1234},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:04:18 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/mavenMigration/profiles/kotlin/profile-test.gradle.kts

    val message by extra("testing 1 2 3")  // <4>...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 46 bytes
    - Viewed (0)
  8. internal/rest/client_test.go

    		target interface{}
    		want   bool
    	}{
    		{
    			name:   "url.Error",
    			err:    &url.Error{Op: "PUT", URL: "http://localhost/1234", Err: restError("remote server offline")},
    			target: &url.Error{},
    			want:   true,
    		},
    		{
    			name: "net.Error",
    			err:  &url.Error{Op: "PUT", URL: "http://localhost/1234", Err: restError("remote server offline")},
    			want: true,
    		},
    		{
    			name: "net.Error-unmatched",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Nov 16 17:28:29 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  9. src/go/ast/ast_test.go

    var isDirectiveTests = []struct {
    	in string
    	ok bool
    }{
    	{"abc", false},
    	{"go:inline", true},
    	{"Go:inline", false},
    	{"go:Inline", false},
    	{":inline", false},
    	{"lint:ignore", true},
    	{"lint:1234", true},
    	{"1234:lint", true},
    	{"go: inline", false},
    	{"go:", false},
    	{"go:*", false},
    	{"go:x*", true},
    	{"export foo", true},
    	{"extern foo", true},
    	{"expert foo", false},
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 22:03:44 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/cmd/util/cmdutil_test.go

    		expectedErr         bool
    	}{
    		{
    			name:          "one arg given and one arg expected",
    			args:          []string{"my-node-1234"},
    			supportedArgs: []string{"node-name"},
    			expectedErr:   false,
    		},
    		{
    			name:          "two args given and two args expected",
    			args:          []string{"my-node-1234", "foo"},
    			supportedArgs: []string{"node-name", "second-toplevel-arg"},
    			expectedErr:   false,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 05:14:21 UTC 2024
    - 4K bytes
    - Viewed (0)
Back to top