Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Name3 (2.27 sec)

  1. schema/field_test.go

    		{Name: "Name2", DBName: "name2", BindNames: []string{"Name2"}, DataType: schema.String, Tag: `gorm:"->"`, Creatable: false, Updatable: false, Readable: true},
    		{Name: "Name3", DBName: "name3", BindNames: []string{"Name3"}, DataType: schema.String, Tag: `gorm:"<-"`, Creatable: true, Updatable: true, Readable: true},
    Registered: Sun Sep 07 09:35:13 UTC 2025
    - Last Modified: Sat Feb 19 09:02:53 UTC 2022
    - 12.7K bytes
    - Viewed (0)
  2. src/test/java/jcifs/internal/dfs/ReferralTest.java

            bb.put(specialName.getBytes(StandardCharsets.UTF_16LE));
            bb.putShort((short) 0);
    
            // Expanded names at offset 44
            bb.position(44);
            String[] expandedNames = { "NAME1", "NAME2", "NAME3" };
            for (String name : expandedNames) {
                bb.put(name.getBytes(StandardCharsets.UTF_16LE));
                bb.putShort((short) 0);
            }
    
            // Decode
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 22K bytes
    - Viewed (0)
  3. src/test/java/jcifs/netbios/NodeStatusResponseTest.java

            src[srcIndex + 34] = 0x00; // hex code
            src[srcIndex + 35] = (byte) 0x84; // flags: group, active
    
            // Third name entry (18 bytes) - matching queryAddress
            String name3 = "TEST            ";
            System.arraycopy(name3.getBytes("US-ASCII"), 0, src, srcIndex + 37, 16);
            src[srcIndex + 52] = 0x20; // hex code matching mockQueryAddress
            src[srcIndex + 53] = 0x04; // flags: active
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 19.3K bytes
    - Viewed (0)
Back to top