Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 9,372 for this (0.04 sec)

  1. src/main/webapp/js/suggestor.js

                  }
                );
    
                this.resize();
                suggestor = this;
                $(window).resize(function() {
                  suggestor.resize();
                });
    
                $("body").append($boxElement);
              },
    
              suggest: function() {
                suggestingSts = true;
    
                this.resize();
    
                var suggestor = this;
                inputText = $textArea.val();
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Mar 30 05:45:24 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/ServerMessageBlock2Response.java

            }
            this.received = true;
            synchronized ( this ) {
                notifyAll();
            }
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.util.transport.Response#exception(java.lang.Exception)
         */
        @Override
        public final void exception ( Exception e ) {
            this.error = true;
            this.exception = e;
            this.received = true;
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Aug 05 09:45:59 UTC 2018
    - 7.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb2/io/Smb2ReadResponse.java

            bufferIndex += 4;
            bufferIndex += 4; // Reserved2
    
            int dataStart = getHeaderStart() + dataOffset;
    
            if ( this.dataLength + this.outputBufferOffset > this.outputBuffer.length ) {
                throw new SMBProtocolDecodingException("Buffer to small for read response");
            }
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Aug 05 07:13:17 UTC 2018
    - 3.8K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/smb2/info/Smb2QueryDirectoryRequest.java

            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;
    
            int fnOffsetOffset = dstIndex;
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Nov 14 10:41:31 UTC 2021
    - 6K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/discovery/v1/generated.proto

      // port represents the port number of the endpoint.
      // If this is not specified, ports are not restricted and must be
      // interpreted in the context of the specific consumer.
      optional int32 port = 3;
    
      // The application protocol for this port.
      // This is used as a hint for implementations to offer richer behavior for protocols that they understand.
      // This field follows standard Kubernetes label syntax.
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 8K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/Dispatcher.kt

       * will remain in flight.
       *
       * WebSocket connections to hosts **do not** count against this limit.
       */
      var maxRequestsPerHost = 5
        get() = this.withLock { field }
        set(maxRequestsPerHost) {
          require(maxRequestsPerHost >= 1) { "max < 1: $maxRequestsPerHost" }
          this.withLock {
            field = maxRequestsPerHost
          }
          promoteAndExecute()
        }
    
      /**
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Thu Jun 20 14:10:53 UTC 2024
    - 9K bytes
    - Viewed (0)
  7. 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 Nov 03 03:35:11 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 15K bytes
    - Viewed (0)
  8. build-logic-commons/module-identity/src/main/kotlin/gradlebuild/identity/extension/ModuleIdentityExtension.kt

                this.version = this@ModuleIdentityExtension.version.map { it.version }
                this.baseVersion = this@ModuleIdentityExtension.version.map { it.baseVersion.version }
                this.snapshot = this@ModuleIdentityExtension.snapshot
                this.promotionBuild = this@ModuleIdentityExtension.promotionBuild
                this.buildTimestampFrom(this@ModuleIdentityExtension.buildTimestamp)
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Sat Sep 30 16:17:28 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb/SecurityBlob.java

    
        SecurityBlob ( byte[] b ) {
            set(b);
        }
    
    
        void set ( 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 Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 2.5K bytes
    - Viewed (0)
  10. compat/maven-compat/src/main/java/org/apache/maven/project/DefaultProjectBuilderConfiguration.java

            this.globalProfileManager = globalProfileManager;
            return this;
        }
    
        public ProfileManager getGlobalProfileManager() {
            return globalProfileManager;
        }
    
        public ProjectBuilderConfiguration setLocalRepository(ArtifactRepository localRepository) {
            this.localRepository = localRepository;
            return this;
        }
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.8K bytes
    - Viewed (0)
Back to top