Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of about 10,000 for this (0.18 sec)

  1. android/guava/src/com/google/common/util/concurrent/ExecutionSequencer.java

          super(NOT_RUN);
          this.delegate = delegate;
          this.sequencer = sequencer;
        }
    
        @Override
        public void execute(Runnable task) {
          // If this operation was successfully cancelled already, calling the runnable will be a noop.
          // This also avoids a race where if outputFuture is cancelled, it will call taskFuture.cancel,
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Feb 01 21:46:34 GMT 2024
    - 22.1K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb1/ServerMessageBlock.java

            dstIndex += this.wordCount;
            this.wordCount /= 2;
            this.byteCount = writeBytesWireFormat(dst, dstIndex + 2);
            dst[ dstIndex++ ] = (byte) ( this.byteCount & 0xFF );
            dst[ dstIndex++ ] = (byte) ( ( this.byteCount >> 8 ) & 0xFF );
            dstIndex += this.byteCount;
    
            this.length = dstIndex - start;
    
            if ( this.digest != null ) {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Aug 05 09:45:59 GMT 2018
    - 32.7K bytes
    - Viewed (0)
  3. android/guava-tests/benchmark/com/google/common/util/concurrent/MonitorBasedArrayBlockingQueue.java

       * (In other words, this method must allocate a new array). The caller is thus free to modify the
       * returned array.
       *
       * <p>This method acts as bridge between array-based and collection-based APIs.
       *
       * @return an array containing all of the elements in this queue
       */
      @CanIgnoreReturnValue
      @Override
      public Object[] toArray() {
        final E[] items = this.items;
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed Apr 19 19:24:36 GMT 2023
    - 22.5K bytes
    - Viewed (0)
  4. guava/src/com/google/common/cache/CacheBuilder.java

      public CacheBuilder<K, V> maximumSize(long maximumSize) {
        checkState(
            this.maximumSize == UNSET_INT, "maximum size was already set to %s", this.maximumSize);
        checkState(
            this.maximumWeight == UNSET_INT,
            "maximum weight was already set to %s",
            this.maximumWeight);
        checkState(this.weigher == null, "maximum size can not be combined with weigher");
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Thu Feb 15 16:12:13 GMT 2024
    - 51.3K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/Interners.java

         */
        public InternerBuilder strong() {
          this.strong = true;
          return this;
        }
    
        /**
         * Instructs the {@link InternerBuilder} to build a weak interner.
         *
         * @see Interners#newWeakInterner()
         */
        @GwtIncompatible("java.lang.ref.WeakReference")
        public InternerBuilder weak() {
          this.strong = false;
          return this;
        }
    
        /**
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Mon Mar 13 14:30:51 GMT 2023
    - 5.9K bytes
    - Viewed (1)
  6. src/main/webapp/js/admin/plugins/daterangepicker/daterangepicker.js

           if (this.minDate && this.startDate.isBefore(this.minDate)) {
    L467:                this.startDate = this.minDate.clone();
    L468:                if (this.timePicker && this.timePickerIncrement)
    L469:                    this.startDate.minute(Math.round(this.startDate.minute() / this.timePickerIncrement) * this.timePickerIncrement);
    L470:            }
    L471:
    L472:            if (this.maxDate && this.startDate.isAfter(this.maxDate)) {
    L473:                this.startDate = this.maxDate.clone();
    ...
    JavaScript
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 13 04:21:06 GMT 2020
    - 65.7K bytes
    - Viewed (0)
  7. tensorflow/c/eager/abstract_context.h

      //
      // WARNING: The destructor of this class is marked as protected to disallow
      // clients from directly destroying this object since it may manage its own
      // lifetime through ref counting. Thus clients MUST call Release() in order to
      // destroy an instance of this class.
      virtual void Release() = 0;
    
      // Creates an operation builder and ties it to this context.
    C
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Sun Oct 24 11:16:58 GMT 2021
    - 3K bytes
    - Viewed (0)
  8. src/main/java/jcifs/http/NtlmHttpURLConnection.java

                }
                this.setRequestProperty(key, value.toString());
            }
    
            this.setAllowUserInteraction(this.connection.getAllowUserInteraction());
            this.setDoInput(this.connection.getDoInput());
            this.setDoOutput(this.connection.getDoOutput());
            this.setIfModifiedSince(this.connection.getIfModifiedSince());
            this.setUseCaches(this.connection.getUseCaches());
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 25.5K bytes
    - Viewed (0)
  9. src/main/java/jcifs/dcerpc/ndr/NdrBuffer.java

            this.length = 0;
            this.deferred = this;
        }
    
    
        public int getIndex () {
            return this.index;
        }
    
    
        public void setIndex ( int index ) {
            this.index = index;
        }
    
    
        public int getCapacity () {
            return this.buf.length - this.start;
        }
    
    
        public int getTailSpace () {
            return this.buf.length - this.index;
        }
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 6.6K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/execution/DefaultMavenExecutionRequest.java

                this.projectActivation.overwriteInactiveProjects(excludedProjects);
            }
    
            return this;
        }
    
        @Override
        public MavenExecutionRequest setResume(boolean resume) {
            this.resume = resume;
    
            return this;
        }
    
        @Override
        public MavenExecutionRequest setResumeFrom(String project) {
            this.resumeFrom = project;
    
            return this;
        }
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 31K bytes
    - Viewed (0)
Back to top