Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of about 10,000 for reserved4 (0.12 sec)

  1. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    	UnwindData   uint32
    }
    
    type LDR_DATA_TABLE_ENTRY struct {
    	reserved1          [2]uintptr
    	InMemoryOrderLinks LIST_ENTRY
    	reserved2          [2]uintptr
    	DllBase            uintptr
    	reserved3          [2]uintptr
    	FullDllName        NTUnicodeString
    	reserved4          [8]byte
    	reserved5          [3]uintptr
    	reserved6          uintptr
    	TimeDateStamp      uint32
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb1/trans/SmbComTransaction.java

                dst[ dstIndex++ ] = this.maxSetupCount;
                dst[ dstIndex++ ] = (byte) 0x00; // Reserved1
                SMBUtil.writeInt2(this.tflags, dst, dstIndex);
                dstIndex += 2;
                SMBUtil.writeInt4(this.timeout, dst, dstIndex);
                dstIndex += 4;
                dst[ dstIndex++ ] = (byte) 0x00; // Reserved2
                dst[ dstIndex++ ] = (byte) 0x00;
            }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun May 17 13:43:42 UTC 2020
    - 13.2K bytes
    - Viewed (0)
  3. maven-model-builder/src/test/resources/poms/validation/reserved-repository-id.xml

    Benjamin Bentmann <******@****.***> 1269989581 +0000
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Mar 30 22:53:01 UTC 2010
    - 1.4K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/smb2/lock/Smb2OplockBreakNotification.java

                throw new SMBProtocolDecodingException("Expected structureSize = 24");
            }
    
            this.oplockLevel = buffer[ bufferIndex + 2 ];
            bufferIndex += 4;
            bufferIndex += 4; // Reserved2
    
            this.fileId = new byte[16];
            System.arraycopy(buffer, bufferIndex, this.fileId, 0, 16);
            bufferIndex += 16;
    
            return bufferIndex - start;
        }
    
    
        /**
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 2.6K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/smb2/io/Smb2ReadResponse.java

            this.dataLength = SMBUtil.readInt4(buffer, bufferIndex);
            bufferIndex += 4;
            this.dataRemaining = SMBUtil.readInt4(buffer, bufferIndex);
            bufferIndex += 4;
            bufferIndex += 4; // Reserved2
    
            int dataStart = getHeaderStart() + dataOffset;
    
            if ( this.dataLength + this.outputBufferOffset > this.outputBuffer.length ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Aug 05 07:13:17 UTC 2018
    - 3.8K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/ioctl_linux.go

    	rawrange.Src_offset = value.Src_offset
    	rawrange.Src_length = value.Src_length
    	rawrange.Dest_count = uint16(len(value.Info))
    	rawrange.Reserved1 = value.Reserved1
    	rawrange.Reserved2 = value.Reserved2
    
    	for i := range value.Info {
    		rawinfo := (*RawFileDedupeRangeInfo)(unsafe.Pointer(
    			uintptr(unsafe.Pointer(&buf[0])) + uintptr(SizeofRawFileDedupeRange) +
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  7. src/main/java/jcifs/internal/smb2/ioctl/Smb2IoctlRequest.java

            SMBUtil.writeInt4(this.maxOutputResponse, dst, dstIndex);
            dstIndex += 4;
    
            SMBUtil.writeInt4(this.flags, dst, dstIndex);
            dstIndex += 4;
            dstIndex += 4; // Reserved2
    
            if ( this.inputData != null ) {
                SMBUtil.writeInt4(dstIndex - getHeaderStart(), dst, inputOffsetOffset);
                int len = this.inputData.encode(dst, dstIndex);
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Aug 05 07:13:17 UTC 2018
    - 7.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/layout_optimization_layout_assignment_gpu_cc_70.mlir

    ) -> tensor<1x28x28x64xf32> {
    
      // CHECK: "tf.FusedBatchNormV3"
      // CHECK-SAME: (%[[X_TRANSPOSE:[0-9]*]], %arg1, %arg1, %arg1, %arg1)
      // CHECK-SAME: data_format = "NCHW"
      %y, %batch_mean, %batch_var, %reserve_1, %reserve_2, %reserve_3
        = "tf.FusedBatchNormV3"(%arg0, %arg1, %arg1, %arg1, %arg1)
           {
             data_format = "NHWC",
             epsilon = 1.001 : f32,
             exponential_avg_factor = 1.0 : f32,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 21 08:41:18 UTC 2022
    - 8.5K bytes
    - Viewed (0)
  9. src/debug/macho/macho.go

    	Nreloc   uint32
    	Flags    uint32
    	Reserve1 uint32
    	Reserve2 uint32
    }
    
    // A Section64 is a 64-bit Mach-O section header.
    type Section64 struct {
    	Name     [16]byte
    	Seg      [16]byte
    	Addr     uint64
    	Size     uint64
    	Offset   uint32
    	Align    uint32
    	Reloff   uint32
    	Nreloc   uint32
    	Flags    uint32
    	Reserve1 uint32
    	Reserve2 uint32
    	Reserve3 uint32
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 14 00:56:52 UTC 2021
    - 7.6K bytes
    - Viewed (0)
  10. src/syscall/types_windows.go

    	dst.CreationTime = src.CreationTime
    	dst.LastAccessTime = src.LastAccessTime
    	dst.LastWriteTime = src.LastWriteTime
    	dst.FileSizeHigh = src.FileSizeHigh
    	dst.FileSizeLow = src.FileSizeLow
    	dst.Reserved0 = src.Reserved0
    	dst.Reserved1 = src.Reserved1
    
    	// The src is 1 element bigger than dst, but it must be NUL.
    	copy(dst.FileName[:], src.FileName[:])
    	copy(dst.AlternateFileName[:], src.AlternateFileName[:])
    }
    
    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