Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for 01234__5 (0.21 sec)

  1. src/go/doc/testdata/examples/issue43658.golden

    	4: linksTo(5),
    	5: nil,
    }
    
    -- Profile_simple.Output --
    Low:0.1 High:0.29 Score:14 Communities:[[0 1 2 3 4 5]] Q=0.9
    Low:0.29 High:2.3 Score:12 Communities:[[0 1 2] [3 4 5]] Q=0.714
    Low:2.3 High:3.5 Score:4 Communities:[[0 1] [2] [3] [4 5]] Q=-0.31
    Low:3.5 High:10 Score:0 Communities:[[0] [1] [2] [3] [4] [5]] Q=-0.607
    
    -- Profile_multiplex.Play --
    
    package main
    
    import (
    	"fmt"
    	"log"
    	"sort"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 23:13:45 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  2. src/internal/fuzz/minimize_test.go

    				b := e.Values[0].([]byte)
    				if len(b) < 3 {
    					return nil
    				}
    				if bytes.Equal(b, []byte{0, 1, 2, 3, 4, 5}) || bytes.Equal(b, []byte{0, 4, 5}) {
    					return fmt.Errorf("bad %v", e.Values[0])
    				}
    				return nil
    			},
    			input:    []any{[]byte{0, 1, 2, 3, 4, 5}},
    			expected: []any{[]byte{0, 4, 5}},
    		},
    		{
    			name: "non_ascii_bytes",
    			fn: func(e CorpusEntry) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 12 19:47:40 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  3. src/go/doc/testdata/examples/issue43658.go

    	}
    
    	// Output:
    	// Low:0.1 High:0.29 Score:14 Communities:[[0 1 2 3 4 5]] Q=0.9
    	// Low:0.29 High:2.3 Score:12 Communities:[[0 1 2] [3 4 5]] Q=0.714
    	// Low:2.3 High:3.5 Score:4 Communities:[[0 1] [2] [3] [4 5]] Q=-0.31
    	// Low:3.5 High:10 Score:0 Communities:[[0] [1] [2] [3] [4] [5]] Q=-0.607
    }
    
    // intset is an integer set.
    type intset map[int]struct{}
    
    func linksTo(i ...int) intset {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 23:13:45 UTC 2022
    - 6.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/tests/prepare-tf-with-allowing-bf16-and-f16-type-legalization.mlir

    // CHECK-LABEL: fused_batch_norm_v3_bf16
    func.func @fused_batch_norm_v3_bf16(%arg0: tensor<8x8x8x8xbf16>, %arg1: tensor<8xf32>, %arg2: tensor<8xf32>, %arg3: tensor<8xf32>, %arg4: tensor<8xf32>) -> tensor<8x8x8x8xbf16> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 26 23:53:32 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  5. src/internal/fuzz/mutators_byteslice_test.go

    			randVals: []int{0, 2, 0, 2},
    			input:    append(make([]byte, 0, 9), []byte{1, 2, 3, 4}...),
    			expected: []byte{3, 2, 1, 4},
    		},
    	} {
    		t.Run(tc.name, func(t *testing.T) {
    			r := &mockRand{values: []int{0, 1, 2, 3, 4, 5}}
    			if tc.randVals != nil {
    				r.values = tc.randVals
    			}
    			m := &mutator{r: r}
    			b := tc.mutator(m, tc.input)
    			if !bytes.Equal(b, tc.expected) {
    				t.Errorf("got %x, want %x", b, tc.expected)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 19 18:23:43 UTC 2021
    - 4.3K bytes
    - Viewed (0)
  6. pkg/webhooks/validation/server/server_test.go

    			contentType:    "application/yaml",
    			wantAllowed:    false,
    			wantStatusCode: http.StatusUnsupportedMediaType,
    		},
    		{
    			name:           "bad content",
    			body:           []byte{0, 1, 2, 3, 4, 5}, // random data
    			contentType:    "application/json",
    			wantAllowed:    false,
    			wantStatusCode: http.StatusOK,
    		},
    		{
    			name:           "no content",
    			body:           []byte{},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 01 01:34:15 UTC 2023
    - 9.6K bytes
    - Viewed (0)
Back to top