Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 6,246 for THIS (0.07 sec)

  1. src/main/java/jcifs/internal/witness/WitnessHeartbeatMessage.java

         * @param sequenceNumber the sequence number for this heartbeat
         */
        public WitnessHeartbeatMessage(byte[] contextHandle, long sequenceNumber) {
            super(WITNESS_HEARTBEAT);
            this.contextHandle = contextHandle != null ? contextHandle.clone() : new byte[20];
            this.sequenceNumber = sequenceNumber;
            this.responseSequenceNumber = 0;
            this.heartbeatInterval = 0;
        }
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 09:06:40 UTC 2025
    - 5.8K bytes
    - Viewed (0)
  2. compat/maven-compat/src/main/java/org/apache/maven/project/DefaultProjectBuilderConfiguration.java

            this.executionProperties = executionProperties;
            return this;
        }
    
        @Override
        public Date getBuildStartTime() {
            return buildStartTime;
        }
    
        @Override
        public ProjectBuilderConfiguration setBuildStartTime(Date buildStartTime) {
            this.buildStartTime = buildStartTime;
            return this;
        }
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 2.9K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb2/info/Smb2QueryDirectoryRequest.java

            final int start = dstIndex;
            SMBUtil.writeInt2(33, dst, dstIndex);
            dst[dstIndex + 2] = this.fileInformationClass;
            dst[dstIndex + 3] = this.queryFlags;
            dstIndex += 4;
            SMBUtil.writeInt4(this.fileIndex, dst, dstIndex);
            dstIndex += 4;
            System.arraycopy(this.fileId, 0, dst, dstIndex, 16);
            dstIndex += 16;
    
            final int fnOffsetOffset = dstIndex;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 7.3K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/JavaPathType.java

         * @param option the Java tools option for this path, or {@code null} if none
         */
        JavaPathType(JavaFileManager.Location location, String option) {
            this.location = location;
            this.option = option;
        }
    
        /**
         * Returns the unique name of this path type.
         *
         * @return the programmatic name of this enumeration value
         */
        @Override
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Thu Jun 26 07:56:58 UTC 2025
    - 15K bytes
    - Viewed (1)
  5. compat/maven-artifact/src/main/java/org/apache/maven/artifact/InvalidArtifactRTException.java

            this.groupId = groupId;
            this.artifactId = artifactId;
            this.version = version;
            this.type = type;
            this.baseMessage = message;
        }
    
        public InvalidArtifactRTException(
                String groupId, String artifactId, String version, String type, String message, Throwable cause) {
            super(cause);
    
            this.groupId = groupId;
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 2.4K bytes
    - Viewed (0)
  6. src/main/java/jcifs/internal/smb2/ioctl/ValidateNegotiateInfoRequest.java

         */
        public ValidateNegotiateInfoRequest(final int capabilities, final byte[] clientGuid, final int securityMode, final int[] dialects) {
            this.capabilities = capabilities;
            this.clientGuid = clientGuid;
            this.securityMode = securityMode;
            this.dialects = dialects;
        }
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.Encodable#encode(byte[], int)
         */
        @Override
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2.8K bytes
    - Viewed (0)
  7. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/-UtilCommon.kt

     * `\u0000` or `\n`) or a non-ASCII character. Returns -1 if this string has no such characters.
     */
    internal fun String.indexOfControlOrNonAscii(): Int {
      for (i in 0 until length) {
        val c = this[i]
        if (c <= '\u001f' || c >= '\u007f') {
          return i
        }
      }
      return -1
    }
    
    /** Returns true if we should void putting this this header in an exception or toString(). */
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon May 05 16:01:00 UTC 2025
    - 10.1K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/opensearch/user/bsentity/BsUser.java

            registerModifiedProperty("businessCategory");
            this.businessCategory = value;
        }
    
        public String getCarLicense() {
            checkSpecifiedProperty("carLicense");
            return convertEmptyToNull(carLicense);
        }
    
        public void setCarLicense(String value) {
            registerModifiedProperty("carLicense");
            this.carLicense = value;
        }
    
        public String getCity() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 22.9K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/curl/CurlRequest.java

         *
         * @param proxy the proxy
         * @return this CurlRequest instance
         */
        public CurlRequest proxy(final Proxy proxy) {
            this.proxy = proxy;
            return this;
        }
    
        /**
         * Sets the character encoding for the request.
         *
         * @param encoding the encoding
         * @return this CurlRequest instance
    Registered: Thu Sep 04 15:34:10 UTC 2025
    - Last Modified: Sat Jul 05 01:38:18 UTC 2025
    - 17.8K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/SecurityBlob.java

        SecurityBlob(final byte[] b) {
            set(b);
        }
    
        void set(final byte[] b) {
            this.b = b == null ? new byte[0] : b;
        }
    
        byte[] get() {
            return this.b;
        }
    
        int length() {
            if (this.b == null) {
                return 0;
            }
            return this.b.length;
        }
    
        /*
         * (non-Javadoc)
         *
         * @see java.lang.Object#clone()
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 2.5K bytes
    - Viewed (0)
Back to top