Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 651 for 12e34 (0.05 sec)

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

    			config:     fmt.Sprintf(se, "1234:1f1:123:123:f816:3eff:feb8:2287/32", "1234:1f1:123:123:f816:3eff:febf:57ce/32"),
    			kubeConfig: "",
    			calls: []simulation.Expect{{
    				// Expect listener, but no routing
    				Name: "defined port",
    				Call: simulation.Call{
    					Port:       9999,
    					HostHeader: "blah.somedomain",
    					Address:    "1234:1f1:1:1:1:1:1:1",
    					Protocol:   simulation.HTTP,
    				},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 21:06:06 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  2. pkg/log/options_test.go

    		}},
    
    		{"--log_rotate_max_age 1234", Options{
    			OutputPaths:         []string{defaultOutputPath},
    			ErrorOutputPaths:    []string{defaultErrorOutputPath},
    			defaultOutputLevels: "default:info,grpc:none",
    			stackTraceLevels:    DefaultScopeName + ":" + levelToString[defaultStackTraceLevel],
    			RotationMaxAge:      1234,
    			RotationMaxSize:     defaultRotationMaxSize,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 26 20:38:10 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  3. pkg/kube/krt/join_test.go

    	pod.Status = corev1.PodStatus{PodIP: "1.2.3.4"}
    	pc.UpdateStatus(pod)
    
    	assert.EventuallyEqual(t, fetch, []SimpleEndpoint{
    		{pod.Name, svc.Name, pod.Namespace, "1.2.3.4"},
    		{"name-static", svc.Name, pod.Namespace, "9.9.9.9"},
    	})
    
    	ExtraSimplePods.Set(nil)
    	assert.EventuallyEqual(t, fetch, []SimpleEndpoint{
    		{pod.Name, svc.Name, pod.Namespace, "1.2.3.4"},
    	})
    
    	pod.Status.PodIP = "1.2.3.5"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 09 19:55:53 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  4. src/net/netip/netip_pkg_test.go

    		{Prefix{mustIP("1.2.3.4").WithZone("a"), 32}, mustIP("1.2.3.4"), true},
    		{Prefix{mustIP("::1").WithZone("a"), 128}, mustIP("::1"), true},
    		// invalid IP
    		{mustPrefix("::1/0"), Addr{}, false},
    		{mustPrefix("1.2.3.4/0"), Addr{}, false},
    		// invalid Prefix
    		{PrefixFrom(mustIP("::1"), 129), mustIP("::1"), false},
    		{PrefixFrom(mustIP("1.2.3.4"), 33), mustIP("1.2.3.4"), false},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 02 15:37:19 UTC 2023
    - 9K bytes
    - Viewed (0)
  5. src/cmd/fix/netipv6zone_test.go

    	c := &net.TCPAddr{IP: ip3, Port: 54321}
    	d := &net.TCPAddr{ip4, 0}
    	p := 1234
    	e := &net.TCPAddr{ip4, p}
    	return &net.TCPAddr{ip5}, nil
    }
    `,
    		Out: `package main
    
    import "net"
    
    func f() net.Addr {
    	a := &net.IPAddr{IP: ip1}
    	sub(&net.UDPAddr{IP: ip2, Port: 12345})
    	c := &net.TCPAddr{IP: ip3, Port: 54321}
    	d := &net.TCPAddr{IP: ip4}
    	p := 1234
    	e := &net.TCPAddr{IP: ip4, Port: p}
    	return &net.TCPAddr{IP: ip5}, nil
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 23:34:33 UTC 2016
    - 837 bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/tfrt_ops.mlir

      return
    }
    
    // -----
    // CHECK-LABEL: func @test_ifrt_call
    func.func @test_ifrt_call(%arg0: tensor<?xf32>, %arg1: tensor<?xf32>) {
      %result = "tf.IfrtCall"(%arg0, %arg1) <{program_id = 1234 : i64, variable_arg_indices = [0 : i32, 1 : i32], variable_names = ["a", "b"]}> : (tensor<?xf32>, tensor<?xf32>) -> (tensor<1x1xf32>)
      func.return
    }
    
    // -----
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 15 06:13:11 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/file/TaskFilePropertiesIntegrationTest.groovy

                }
    """
    
            when:
            file("file1.txt").text = "123"
            file("dir1/file2.txt").text = "1234"
            run("transform")
    
            then:
            file("build/file1.txt").text == "123"
            file("build/dir1/file2.txt").text == "1234"
    
            when:
            run("transform")
    
            then:
            result.assertTasksSkipped(":transform")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  8. pilot/pkg/networking/grpcgen/lds_test.go

    				fmt.Sprintf(grpcxds.ServerListenerNameTemplate, "foo:1234"),
    				fmt.Sprintf(grpcxds.ServerListenerNameTemplate, "foo"),
    				fmt.Sprintf(grpcxds.ServerListenerNameTemplate, "[::]:8076"),
    			},
    			want: listenerNames{
    				"foo.com": {
    					RequestedNames: sets.New("foo.com"),
    					Ports:          sets.New("80"),
    				},
    				fmt.Sprintf(grpcxds.ServerListenerNameTemplate, "foo:1234"): {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Oct 30 20:07:58 UTC 2022
    - 4.7K bytes
    - Viewed (0)
  9. pkg/kube/inject/testdata/inject/proxy-override-runas.yaml.cni.injected

            prometheus.io/port: "15020"
            prometheus.io/scrape: "true"
            proxy.istio.io/overrides: '{"containers":[{"name":"istio-proxy","resources":{},"securityContext":{"runAsUser":1234,"runAsGroup":4321}}]}'
            sidecar.istio.io/interceptionMode: REDIRECT
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:59:39 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  10. tests/integration/pilot/grpc_probe_test.go

    		Service:           name,
    		ReadinessGRPCPort: "1234",
    		Subsets: []echo.SubsetConfig{
    			{
    				Annotations: map[string]string{annotation.SidecarRewriteAppHTTPProbers.Name: strconv.FormatBool(rewrite)},
    			},
    		},
    	}
    
    	if openPort {
    		cfg.Ports = []echo.Port{{
    			Name:         "readiness-grpc-port",
    			Protocol:     protocol.GRPC,
    			ServicePort:  1234,
    			WorkloadPort: 1234,
    		}}
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 2.8K bytes
    - Viewed (0)
Back to top