Search Options

Results per page
Sort
Preferred Languages
Advance

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

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

       * </pre>
       *
       * Before going into the details of this particular function, let's keep in mind the basics:
       *
       * <ol>
       *   <li>The state of the RateLimiter (storedPermits) is a vertical line in this figure.
       *   <li>When the RateLimiter is not used, this goes right (up to maxPermits)
       *   <li>When the RateLimiter is used, this goes left (down to zero), since if we have
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Tue Apr 04 09:45:04 GMT 2023
    - 19.3K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/execution/MavenSession.java

                Date startTime) {
            this.container = container;
            this.settings = settings;
            this.executionProperties = executionProperties;
            this.request = new DefaultMavenExecutionRequest();
            this.request.setUserProperties(userProperties);
            this.request.setLocalRepository(localRepository);
            this.request.setGoals(goals);
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 16.6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/config/BaseConfiguration.java

                        | ( this.useUnicode || this.forceUnicode ? SmbConstants.FLAGS2_UNICODE : 0 );
            }
    
            if ( this.capabilities == 0 ) {
                this.capabilities = ( this.useNTSmbs ? SmbConstants.CAP_NT_SMBS : 0 ) | ( this.useNtStatus ? SmbConstants.CAP_STATUS32 : 0 )
                        | ( this.useExtendedSecurity ? SmbConstants.CAP_EXTENDED_SECURITY : 0 )
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 20.4K bytes
    - Viewed (1)
  4. guava/src/com/google/common/collect/ImmutableSet.java

          super(expectedCapacity);
          this.hashTable = null;
          this.maxRunBeforeFallback = 0;
          this.expandTableThreshold = 0;
        }
    
        RegularSetBuilderImpl(RegularSetBuilderImpl<E> toCopy) {
          super(toCopy);
          this.hashTable = (toCopy.hashTable == null) ? null : toCopy.hashTable.clone();
          this.maxRunBeforeFallback = toCopy.maxRunBeforeFallback;
          this.expandTableThreshold = toCopy.expandTableThreshold;
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 35.4K bytes
    - Viewed (0)
  5. src/main/java/jcifs/netbios/NameServicePacket.java

                        + ",answerCount=" + this.answerCount + ",authorityCount=" + this.authorityCount + ",additionalCount=" + this.additionalCount
                        + ",questionName=" + this.questionName + ",questionType=" + questionTypeString + ",questionClass="
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 12K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/NtlmContext.java

                this.transportContext,
                msg2,
                this.targetName,
                this.auth.isGuest() ? this.transportContext.getConfig().getGuestPassword() : this.auth.getPassword(),
                this.auth.isGuest() ? null : this.auth.getUserDomain(),
                this.auth.isGuest() ? this.transportContext.getConfig().getGuestUsername() : this.auth.getUsername(),
                this.workstation,
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Tue Jul 07 12:07:20 GMT 2020
    - 15.7K bytes
    - Viewed (0)
  7. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/KtFe10AnalysisSession.kt

        override val expressionTypeProviderImpl: KtExpressionTypeProvider = KtFe10ExpressionTypeProvider(this)
        override val psiTypeProviderImpl: KtPsiTypeProvider = KtFe10PsiTypeProvider(this)
        override val typeProviderImpl: KtTypeProvider = KtFe10TypeProvider(this)
        override val typeInfoProviderImpl: KtTypeInfoProvider = KtFe10TypeInfoProvider(this)
    Plain Text
    - Registered: Fri Apr 19 08:18:09 GMT 2024
    - Last Modified: Mon Mar 18 10:13:57 GMT 2024
    - 5.3K bytes
    - Viewed (1)
  8. guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ImmutableSet.java

            return new RegularImmutableSet<E>(set);
        }
      }
    
      @Override
      public boolean equals(@Nullable Object obj) {
        return Sets.equalsImpl(this, obj);
      }
    
      @Override
      public int hashCode() {
        return Sets.hashCodeImpl(this);
      }
    
      // This declaration is needed to make Set.iterator() and
      // ImmutableCollection.iterator() appear consistent to javac's type inference.
      @Override
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Tue Jan 23 18:43:40 GMT 2024
    - 8.3K bytes
    - Viewed (0)
  9. api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelBuilderRequest.java

                this.activeProfileIds = request.getActiveProfileIds();
                this.inactiveProfileIds = request.getInactiveProfileIds();
                this.systemProperties = request.getSystemProperties();
                this.userProperties = request.getUserProperties();
                this.modelResolver = request.getModelResolver();
                this.listener = request.getListener();
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 15.7K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuildingRequest.java

            this.processPlugins = processPlugins;
            return this;
        }
    
        public ProjectBuildingRequest setResolveDependencies(boolean resolveDependencies) {
            this.resolveDependencies = resolveDependencies;
            return this;
        }
    
        public boolean isResolveDependencies() {
            return resolveDependencies;
        }
    
        /**
         * @since 3.2.2
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Mon Dec 26 15:12:32 GMT 2022
    - 8.9K bytes
    - Viewed (0)
Back to top