Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 374 for guid (0.27 sec)

  1. src/main/java/jcifs/smb1/dcerpc/msrpc/lsarpc.java

                _dst.enc_ndr_long(domain_guid.time_low);
                _dst.enc_ndr_short(domain_guid.time_mid);
                _dst.enc_ndr_short(domain_guid.time_hi_and_version);
                _dst.enc_ndr_small(domain_guid.clock_seq_hi_and_reserved);
                _dst.enc_ndr_small(domain_guid.clock_seq_low);
                int _domain_guid_nodes = 6;
                int _domain_guid_nodei = _dst.index;
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 33K bytes
    - Viewed (0)
  2. src/main/java/jcifs/dcerpc/msrpc/lsarpc.java

                _dst.enc_ndr_long(this.domain_guid.time_low);
                _dst.enc_ndr_short(this.domain_guid.time_mid);
                _dst.enc_ndr_short(this.domain_guid.time_hi_and_version);
                _dst.enc_ndr_small(this.domain_guid.clock_seq_hi_and_reserved);
                _dst.enc_ndr_small(this.domain_guid.clock_seq_low);
                int _domain_guid_nodes = 6;
                int _domain_guid_nodei = _dst.index;
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:40:13 GMT 2019
    - 35.6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb1/com/SmbComNegotiateResponse.java

                else {
                    this.server.oemDomainName = new String();
                }
            }
            else {
                this.server.guid = new byte[16];
                System.arraycopy(buffer, bufferIndex, this.server.guid, 0, 16);
                bufferIndex += this.server.guid.length;
                this.server.oemDomainName = new String();
    
                if ( this.byteCount > 16 ) {
                    // have initial spnego token
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Tue Jul 07 10:52:42 GMT 2020
    - 15.4K bytes
    - Viewed (0)
  4. tensorflow/c/eager/parallel_device/parallel_device_testlib.cc

      TFE_OpSetAttrType(op.get(), "dtype", type);
      TFE_OpSetAttrShape(op.get(), "shape", dims, num_dims, status);
      TFE_OpSetAttrString(op.get(), "container", "", 0);
      // Use the special GUID for no buffer sharing
      //
      // TODO(allenl): Should we provide a better API for this? AFAIK this is the
      // only reasonable way to make variables with no aliasing using the eager C
      // API.
    C++
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Tue Jun 15 15:44:44 GMT 2021
    - 12.5K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/smb1/SmbTransport.java

            boolean signaturesRequired;
            int maxNumberVcs;
            int maxRawSize;
            long serverTime;
            int serverTimeZone;
            int encryptionKeyLength;
            byte[] encryptionKey;
            byte[] guid;
        }
    
        InetAddress localAddr;
        int localPort;
        UniAddress address;
        Socket socket;
        int port, mid;
        OutputStream out;
        InputStream in;
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 31.2K bytes
    - Viewed (0)
  6. internal/grid/grid_test.go

    	errFatal := func(err error) {
    		t.Helper()
    		if err != nil {
    			t.Fatal(err)
    		}
    	}
    	grid, err := SetupTestGrid(2)
    	errFatal(err)
    	t.Cleanup(grid.Cleanup)
    
    	local := grid.Managers[0]
    	localHost := grid.Hosts[0]
    	remote := grid.Managers[1]
    	remoteHost := grid.Hosts[1]
    
    	connLocalToRemote := local.Connection(remoteHost)
    	connRemoteLocal := remote.Connection(localHost)
    
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Thu Feb 08 18:15:27 GMT 2024
    - 30.1K bytes
    - Viewed (0)
  7. cmd/local-locker_test.go

    		uid := mustGetUUID()
    		arg := dsync.LockArgs{
    			UID:       uid,
    			Resources: []string{name},
    			Source:    t.Name(),
    			Owner:     "owner",
    			Quorum:    0,
    		}
    		ok, err := l.RLock(ctx, arg)
    		if err != nil {
    			t.Fatal(err)
    		}
    		if !ok {
    			t.Fatal("did not get write lock")
    		}
    		rUIDs = append(rUIDs, uid)
    
    		// RLock twice, different uid
    		uid = mustGetUUID()
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sun Mar 05 04:57:35 GMT 2023
    - 11.8K bytes
    - Viewed (0)
  8. internal/grid/connection.go

    	LastPong int64
    
    	// State of the connection (atomic)
    	state State
    
    	// Non-atomic
    	Remote string
    	Local  string
    
    	// ID of this connection instance.
    	id uuid.UUID
    
    	// Remote uuid, if we have been connected.
    	remoteID    *uuid.UUID
    	reconnectMu sync.Mutex
    
    	// Context for the server.
    	ctx context.Context
    
    	// Active mux connections.
    	outgoing *xsync.MapOf[uint64, *muxClient]
    
    	// Incoming streams
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 42.6K bytes
    - Viewed (0)
  9. cmd/admin-handlers_test.go

    	// Simulate DeleteObjects of 10 objects in a single request. i.e same lock
    	// request UID, but 10 different resource names associated with it.
    	var lris []lockRequesterInfo
    	uuid := mustGetUUID()
    	for i := 0; i < 10; i++ {
    		resource := fmt.Sprintf("bucket/delete-object-%d", i)
    		lri := lockRequesterInfo{
    			Name:   resource,
    			Writer: true,
    			UID:    uuid,
    			Owner:  owners[i%len(owners)],
    			Group:  true,
    			Quorum: 3,
    		}
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Feb 22 06:26:06 GMT 2024
    - 13.8K bytes
    - Viewed (0)
  10. src/archive/tar/writer_test.go

    				Size:     15,
    				Mode:     0644,
    				Uid:      1000,
    				Gid:      100,
    				Uname:    "vbatts",
    				Gname:    "users",
    				ModTime:  time.Unix(1425484303, 0),
    			}, nil},
    			testWrite{"Slartibartfast\n", 15, nil},
    
    			testHeader{Header{
    				Typeflag: TypeLink,
    				Name:     "hard.txt",
    				Linkname: "file.txt",
    				Mode:     0644,
    				Uid:      1000,
    				Gid:      100,
    				Uname:    "vbatts",
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Tue Feb 27 16:39:23 GMT 2024
    - 38.7K bytes
    - Viewed (0)
Back to top