Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 50 for 1435 (0.05 sec)

  1. src/net/lookup.go

    	// port in the address parameter will be a literal port number
    	// and not a service name.
    	// If the Conn returned is also a PacketConn, sent and received DNS
    	// messages must adhere to RFC 1035 section 4.2.1, "UDP usage".
    	// Otherwise, DNS messages transmitted over Conn must adhere
    	// to RFC 7766 section 5, "Transport Protocol Selection".
    	// If nil, the default dialer is used.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  2. pilot/pkg/autoregistration/controller_test.go

    	p.Locality = n.Locality
    
    	var p2conn1 *fakeConn
    	p2 := fakeProxy("1.2.3.4", wgA, "nw2", "sa-a")
    	p2.Locality = n.Locality
    
    	var p3conn1 *fakeConn
    	p3 := fakeProxy("1.2.3.5", wgA, "nw1", "sa-a")
    	p3.Locality = n.Locality
    
    	t.Run("initial registration", func(t *testing.T) {
    		// simply make sure the entry exists after connecting
    		p1conn1 = makeConn(p, time.Now())
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 00:00:36 UTC 2024
    - 31.4K bytes
    - Viewed (0)
  3. pkg/controller/deployment/util/deployment_util_test.go

    		Name           string
    		sets           []*apps.ReplicaSet
    		expectedCount  int32
    		expectedActual int32
    	}{
    		{
    			"1:2 Replicas",
    			[]*apps.ReplicaSet{&rs1},
    			1,
    			2,
    		},
    		{
    			"3:5 Replicas",
    			[]*apps.ReplicaSet{&rs1, &rs2},
    			3,
    			5,
    		},
    	}
    
    	for _, test := range tests {
    		t.Run(test.Name, func(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 08 09:10:50 UTC 2023
    - 37.1K bytes
    - Viewed (0)
  4. src/slices/slices_test.go

    		[]int{1, 2, 3, 4},
    		-1,
    	},
    	{
    		[]int{1, 2, 3, 4},
    		[]int{1, 2, 3},
    		+1,
    	},
    	{
    		[]int{1, 2, 3},
    		[]int{1, 4, 3},
    		-1,
    	},
    	{
    		[]int{1, 4, 3},
    		[]int{1, 2, 3},
    		+1,
    	},
    	{
    		[]int{1, 4, 3},
    		[]int{1, 2, 3, 8, 9},
    		+1,
    	},
    }
    
    var compareFloatTests = []struct {
    	s1, s2 []float64
    	want   int
    }{
    	{
    		[]float64{},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:06 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  5. cmd/xl-storage-format-v2_test.go

    				10: {vObj},             // disk 10
    				11: {vDelMarker, vObj}, // disk 11
    				12: {vDelMarker, vObj}, // disk 12
    				13: {vDelMarker, vObj}, // disk 13
    				14: {vDelMarker, vObj}, // disk 14
    				15: {vDelMarker, vObj}, // disk 15
    			},
    			quorum:      7,
    			reqVersions: 0,
    			want:        []xlMetaV2ShallowVersion{vDelMarker, vObj},
    		},
    	}
    	for _, test := range testCases {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Mar 08 17:50:48 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/stablehlo/tests/tfl_legalize_hlo.mlir

        %15 = "mhlo.compare"(%arg2, %arg4) {comparison_direction = #mhlo<comparison_direction LT>} : (tensor<i32>, tensor<i32>) -> tensor<i1>
        %16 = mhlo.and %14, %15 : tensor<i1>
        %17 = mhlo.or %12, %16 : tensor<i1>
        %18 = "mhlo.select"(%17, %arg2, %arg4) : (tensor<i1>, tensor<i32>, tensor<i32>) -> tensor<i32>
        "mhlo.return"(%13, %18) : (tensor<i16>, tensor<i32>) -> ()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 40.1K bytes
    - Viewed (0)
  7. src/encoding/json/encode.go

    	}
    
    	// Convert as if by ES6 number to string conversion.
    	// This matches most other JSON generators.
    	// See golang.org/issue/6384 and golang.org/issue/14135.
    	// Like fmt %g, but the exponent cutoffs are different
    	// and exponents themselves are not padded to two digits.
    	b := e.AvailableBuffer()
    	b = mayAppendQuote(b, opts.quoted)
    	abs := math.Abs(f)
    	fmt := byte('f')
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 36.2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_6.adoc

    === Potential breaking changes
    
    ==== Updates to bundled Gradle dependencies
    
    - Kotlin has been updated to https://kotlinlang.org/docs/reference/whatsnew1430.html[Kotlin 1.4.31].
    - Groovy has been updated to https://groovy-lang.org/releasenotes/groovy-3.0.html[Groovy 3.0.7].
    
    ==== Changes to Groovy and Groovy DSL
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  9. src/net/http/clientserver_test.go

    	h12Compare{
    		ReqFunc: (*Client).Head,
    		Handler: func(w ResponseWriter, r *Request) {
    			if r.Method != "HEAD" {
    				t.Errorf("unexpected method %q", r.Method)
    			}
    			w.Header().Set("Content-Length", "1235")
    		},
    	}.run(t)
    }
    
    func TestH12_Head_ImplicitLen(t *testing.T) {
    	h12Compare{
    		ReqFunc: (*Client).Head,
    		Handler: func(w ResponseWriter, r *Request) {
    			if r.Method != "HEAD" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 46.6K bytes
    - Viewed (0)
  10. src/internal/trace/testdata/tests/go122-annotations-stress.test

    	pc=4542549 func=138 file=139 line=42
    	pc=4533560 func=134 file=135 line=257
    	pc=4802469 func=125 file=126 line=125
    	pc=4803332 func=114 file=113 line=30
    Stack id=40 nframes=2
    	pc=4803943 func=112 file=113 line=64
    	pc=4803566 func=114 file=113 line=44
    Stack id=21 nframes=3
    	pc=4217905 func=140 file=141 line=442
    	pc=4539946 func=142 file=135 line=928
    	pc=4542714 func=143 file=139 line=54
    Stack id=2 nframes=3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 38.3K bytes
    - Viewed (0)
Back to top