Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 500 for data1 (0.23 sec)

  1. src/encoding/asn1/marshal_test.go

    		return
    	}
    
    	var v1 any
    	_, err = Unmarshal(data1, &v1)
    	if err != nil {
    		t.Errorf("%v", err)
    		return
    	}
    	if !reflect.DeepEqual(v, v1) {
    		t.Errorf("got: %#v data=%q, want : %#v data=%q\n ", v1, data1, v, data)
    	}
    }
    
    func BenchmarkMarshal(b *testing.B) {
    	b.ReportAllocs()
    
    	for i := 0; i < b.N; i++ {
    		for _, test := range marshalTests {
    			Marshal(test.in)
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 10K bytes
    - Viewed (0)
  2. src/sort/sort_test.go

    	data := make([]int, 30)
    	for i := range data {
    		data[i] = 10
    	}
    	data[(len(data)/4)*1] = 0
    	data[(len(data)/4)*2] = 1
    	data[(len(data)/4)*3] = 2
    	Sort(IntSlice(data))
    }
    
    func TestReverseRange(t *testing.T) {
    	data := []int{1, 2, 3, 4, 5, 6, 7}
    	ReverseRange(IntSlice(data), 0, len(data))
    	for i := len(data) - 1; i > 0; i-- {
    		if data[i] > data[i-1] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 19:41:04 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  3. docs/logging/README.md

      },
      "tags": {
        "objectLocation": {
          "name": "hosts",
          "poolId": 1,
          "setId": 1,
          "drives": [
            "/mnt/data1",
            "/mnt/data2",
            "/mnt/data3",
            "/mnt/data4"
          ]
        }
      },
      "accessKey": "minioadmin"
    }
    ```
    
    ### Kafka Target
    
    Assuming that you already have Apache Kafka configured and running.
    
    ```
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 09 17:15:03 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  4. src/archive/tar/reader_test.go

    		{data1[:511], 0, io.ErrUnexpectedEOF},
    		{data1[:512], 1, io.ErrUnexpectedEOF},
    		{data1[:1024], 1, io.EOF},
    		{data1[:1536], 2, io.ErrUnexpectedEOF},
    		{data1[:2048], 2, io.EOF},
    		{data1, 2, io.EOF},
    		{data1[:2048] + data2[:1536], 3, io.EOF},
    		{data2[:511], 0, io.ErrUnexpectedEOF},
    		{data2[:512], 1, io.ErrUnexpectedEOF},
    		{data2[:1195], 1, io.ErrUnexpectedEOF},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 21 21:14:38 UTC 2022
    - 47.1K bytes
    - Viewed (0)
  5. src/internal/syscall/windows/syscall_windows.go

    	socket_error = uintptr(^uint32(0))
    )
    
    var WSAID_WSASENDMSG = syscall.GUID{
    	Data1: 0xa441e712,
    	Data2: 0x754f,
    	Data3: 0x43ca,
    	Data4: [8]byte{0x84, 0xa7, 0x0d, 0xee, 0x44, 0xcf, 0x60, 0x6d},
    }
    
    var WSAID_WSARECVMSG = syscall.GUID{
    	Data1: 0xf689d7c8,
    	Data2: 0x6f1f,
    	Data3: 0x436b,
    	Data4: [8]byte{0x8a, 0x53, 0xe5, 0x4f, 0xe3, 0x51, 0xc3, 0x22},
    }
    
    var sendRecvMsgFunc struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  6. src/testing/fstest/testfs.go

    	if string(data1) != string(data2) {
    		t.errorf("%s: %s: different data returned\n\t%q\n\t%q", file, desc, data1, data2)
    		return
    	}
    }
    
    // checkBadPath checks that various invalid forms of file's name cannot be opened using t.fsys.Open.
    func (t *fsTester) checkOpen(file string) {
    	t.checkBadPath(file, "Open", func(file string) error {
    		f, err := t.fsys.Open(file)
    		if err == nil {
    			f.Close()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirMetadataCalculator.kt

            Metadata(
                kind = kind.id,
                metadataVersion = metadataVersion.toArray(),
                data1 = JvmProtoBufUtil.writeData(message, stringTable),
                data2 = stringTable.strings.toTypedArray(),
                extraInt = JvmBackendExtension.Default.generateMetadataExtraFlags(JvmAbiStability.STABLE) or
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 20:26:34 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  8. src/cmd/go/internal/work/gc.go

    	if err := b.Shell(a).run(p.Dir, p.ImportPath, nil, newArgs...); err != nil {
    		return err
    	}
    	data1, err := os.ReadFile(ofile)
    	if err != nil {
    		return err
    	}
    	data2, err := os.ReadFile(ofile + ".new")
    	if err != nil {
    		return err
    	}
    	if !bytes.Equal(data1, data2) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:37:44 UTC 2024
    - 23K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/accessors/AccessorsClassPath.kt

        }
    
    
    sealed class TypeAccessibility {
        data class Accessible(val type: SchemaType) : TypeAccessibility()
        data class Inaccessible(val type: SchemaType, val reasons: List<InaccessibilityReason>) : TypeAccessibility()
    }
    
    
    sealed class InaccessibilityReason {
    
        data class NonPublic(val type: String) : InaccessibilityReason()
        data class NonAvailable(val type: String) : InaccessibilityReason()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 20:25:05 UTC 2024
    - 22K bytes
    - Viewed (0)
  10. src/syscall/types_windows.go

    	Addr      Pointer
    	Next      *AddrinfoW
    }
    
    const (
    	AI_PASSIVE     = 1
    	AI_CANONNAME   = 2
    	AI_NUMERICHOST = 4
    )
    
    type GUID struct {
    	Data1 uint32
    	Data2 uint16
    	Data3 uint16
    	Data4 [8]byte
    }
    
    var WSAID_CONNECTEX = GUID{
    	0x25a207b9,
    	0xddf3,
    	0x4660,
    	[8]byte{0x8e, 0xe9, 0x76, 0xe5, 0x8c, 0x74, 0x06, 0x3e},
    }
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 27.8K bytes
    - Viewed (0)
Back to top