Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 440 for printr (0.03 sec)

  1. src/test/java/jcifs/netbios/NameServicePacketTest.java

            int written = packet.writeResourceRecordWireFormat(dst, 0);
            assertEquals(12, written); // 2 (pointer) + 2 (type) + 2 (class) + 4 (ttl) + 2 (rDataLength) + 0 (rData)
    
            assertEquals((byte) 0xC0, dst[0]); // Pointer
            assertEquals((byte) 0x0C, dst[1]);
            assertEquals((byte) 0x00, dst[2]); // recordType high byte
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 17.9K bytes
    - Viewed (0)
  2. apache-maven/src/assembly/maven/bin/mvnDebug.cmd

    @REM -----------------------------------------------------------------------------
    @REM Apache Maven Debug Script
    @REM
    @REM Environment Variable Prerequisites
    @REM
    @REM   JAVA_HOME           (Optional) Points to a Java installation.
    @REM   MAVEN_BATCH_ECHO    (Optional) Set to 'on' to enable the echoing of the batch commands.
    @REM   MAVEN_BATCH_PAUSE   (Optional) set to 'on' to wait for a key stroke before ending.
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Oct 18 11:01:21 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. interfaces.go

    	QueryContext(ctx context.Context, query string, args ...interface{}) (*sql.Rows, error)
    	QueryRowContext(ctx context.Context, query string, args ...interface{}) *sql.Row
    }
    
    // SavePointerDialectorInterface save pointer interface
    type SavePointerDialectorInterface interface {
    	SavePoint(tx *DB, name string) error
    	RollbackTo(tx *DB, name string) error
    }
    
    // TxBeginner tx beginner
    type TxBeginner interface {
    Registered: Sun Sep 07 09:35:13 UTC 2025
    - Last Modified: Sat Aug 19 13:33:31 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  4. src/main/java/jcifs/pac/PacDataInputStream.java

            final short length = readShort();
            final short maxLength = readShort();
            final int pointer = readInt();
    
            if (maxLength < length) {
                throw new PACDecodingException("Malformed string in PAC");
            }
    
            return new PacUnicodeString(length, maxLength, pointer);
        }
    
        /**
         * Reads a string with length prefix from the stream.
         * @return the decoded string
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 8.9K bytes
    - Viewed (0)
  5. src/main/webapp/WEB-INF/orig/view/search.jsp

    				<div class="col">
    					${item}
    				</div>
    			</div>
    		</c:forEach>
    		<c:choose>
    			<c:when test="${f:h(allRecordCount) != 0}">
    				<jsp:include page="searchResults.jsp" />
    				<div class="text-end d-print-none">
    					<a href="#"><la:message key="labels.footer_back_to_top" /></a>
    				</div>
    			</c:when>
    			<c:otherwise>
    				<jsp:include page="searchNoResult.jsp" />
    			</c:otherwise>
    		</c:choose>
    	</main>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jan 18 11:38:54 UTC 2025
    - 6.8K bytes
    - Viewed (0)
  6. src/main/webapp/WEB-INF/view/search.jsp

    				<div class="col">
    					${item}
    				</div>
    			</div>
    		</c:forEach>
    		<c:choose>
    			<c:when test="${f:h(allRecordCount) != 0}">
    				<jsp:include page="searchResults.jsp" />
    				<div class="text-end d-print-none">
    					<a href="#"><la:message key="labels.footer_back_to_top" /></a>
    				</div>
    			</c:when>
    			<c:otherwise>
    				<jsp:include page="searchNoResult.jsp" />
    			</c:otherwise>
    		</c:choose>
    	</main>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jan 18 11:38:54 UTC 2025
    - 6.8K bytes
    - Viewed (0)
  7. okhttp-dnsoverhttps/src/main/kotlin/okhttp3/dnsoverhttps/DnsRecordCodec.kt

      }
    
      @Throws(EOFException::class)
      private fun skipName(source: Buffer) {
        // 0 - 63 bytes
        var length = source.readByte().toInt()
    
        if (length < 0) {
          // compressed name pointer, first two bits are 1
          // drop second byte of compression offset
          source.skip(1)
        } else {
          while (length > 0) {
            // skip each part of the domain name
            source.skip(length.toLong())
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 3.9K bytes
    - Viewed (0)
  8. src/main/webapp/WEB-INF/fe.tld

      <display-name>JSTL functions</display-name>
      <tlib-version>1.1</tlib-version>
      <short-name>fe</short-name>
      <uri>fess.tags.functions</uri>
      
      <function>
        <description>
          Print HTML tag.
        </description>
        <name>html</name>
        <function-class>org.codelibs.fess.taglib.FessFunctions</function-class>
        <function-signature>java.lang.String html(boolean)</function-signature>
        <example>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jan 18 11:38:54 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  9. docs/fa/docs/environment-variables.md

    مثلاً می‌تونی یه فایل `main.py` داشته باشی با:
    
    ```Python hl_lines="3"
    import os
    
    name = os.getenv("MY_NAME", "World")
    print(f"Hello {name} from Python")
    ```
    
    /// tip
    
    آرگومان دوم <a href="https://docs.python.org/3.8/library/os.html#os.getenv" class="external-link" target="_blank">`os.getenv()`</a> مقدار پیش‌فرضیه که برمی‌گردونه.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Fri Jul 25 09:27:03 UTC 2025
    - 11K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/witness/WitnessAsyncNotifyMessage.java

            }
            message.setIpAddresses(ipAddresses);
        }
    
        /**
         * Decodes a wide string pointer from NDR format.
         */
        private String decodeWideStringPointer(NdrBuffer buf) throws NdrException {
            int pointer = buf.dec_ndr_long();
            if (pointer == 0) {
                return null; // NULL pointer
            }
    
            int maxCount = buf.dec_ndr_long();
            int offset = buf.dec_ndr_long();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:12:28 UTC 2025
    - 16.4K bytes
    - Viewed (0)
Back to top