Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of about 10,000 for _this6 (0.19 sec)

  1. src/main/java/jcifs/smb/SmbFileHandleImpl.java

                long initialSize ) {
            this.cfg = cfg;
            this.fileId = fid;
            this.initialSize = initialSize;
            this.fid = 0;
            this.unc = unc;
            this.flags = flags;
            this.access = access;
            this.attrs = attrs;
            this.options = options;
            this.tree = tree.acquire();
            this.tree_num = tree.getTreeId();
    
            if ( cfg.isTraceResourceUsage() ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 8.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbTreeImpl.java

            this.session = session.acquire();
            this.share = share.toUpperCase();
            if ( service != null && !service.startsWith("??") ) {
                this.service = service;
            }
            this.service0 = this.service;
    
            this.traceResource = this.session.getConfig().isTraceResourceUsage();
            if ( this.traceResource ) {
                this.acquires = new LinkedList<>();
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 29.6K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/declarations/KtDeclarationRenderer.kt

                this.nameRenderer = renderer.nameRenderer
                this.keywordsRenderer = renderer.keywordsRenderer
                this.contextReceiversRenderer = renderer.contextReceiversRenderer
                this.codeStyle = renderer.codeStyle
                this.typeRenderer = renderer.typeRenderer
                this.annotationRenderer = renderer.annotationRenderer
                this.modifiersRenderer = renderer.modifiersRenderer
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 17K bytes
    - Viewed (0)
  4. maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/PluginDescriptor.java

            this.setRequiredJavaVersion(original.getRequiredJavaVersion());
            this.setPluginArtifact(ArtifactUtils.copyArtifactSafe(original.getPluginArtifact()));
            this.setComponents(clone(original.getMojos(), this));
            this.setId(original.getId());
            this.setIsolatedRealm(original.isIsolatedRealm());
            this.setSource(original.getSource());
            this.setDependencies(original.getDependencies());
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Apr 14 17:14:22 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  5. src/main/java/jcifs/netbios/Name.java

            n = (Name) obj;
            if ( this.scope == null && n.scope == null ) {
                return this.name.equals(n.name) && this.hexCode == n.hexCode;
            }
            return this.name.equals(n.name) && this.hexCode == n.hexCode && this.scope.equals(n.scope);
        }
    
    
        @Override
        public String toString () {
            StringBuffer sb = new StringBuffer();
            String n = this.name;
    
            // fix MSBROWSE name
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 7.7K bytes
    - Viewed (0)
  6. mockwebserver/src/main/kotlin/mockwebserver3/MockResponse.kt

        this.streamHandler = builder.streamHandler
        this.webSocketListener = builder.webSocketListener
        this.inTunnel = builder.inTunnel
        this.informationalResponses = builder.informationalResponses.toList()
        this.throttleBytesPerPeriod = builder.throttleBytesPerPeriod
        this.throttlePeriodNanos = builder.throttlePeriodNanos
        this.socketPolicy = builder.socketPolicy
        this.bodyDelayNanos = builder.bodyDelayNanos
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 23 14:31:42 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelBuilderRequest.java

                this.session = request.getSession();
                this.validationLevel = request.getValidationLevel();
                this.locationTracking = request.isLocationTracking();
                this.twoPhaseBuilding = request.isTwoPhaseBuilding();
                this.source = request.getSource();
                this.projectBuild = request.isProjectBuild();
                this.processPlugins = request.isProcessPlugins();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/internal/connection/RealCall.kt

        this.exchange = result
        this.withLock {
          this.requestBodyOpen = true
          this.responseBodyOpen = true
        }
    
        if (canceled) throw IOException("Canceled")
        return result
      }
    
      fun acquireConnectionNoEvents(connection: RealConnection) {
        connection.lock.assertHeld()
    
        check(this.connection == null)
        this.connection = connection
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/RangeSet.java

       *
       * @throws UnsupportedOperationException if this range set does not support the {@code remove}
       *     operation
       */
      void remove(Range<C> range);
    
      /**
       * Removes all ranges from this {@code RangeSet} (optional operation). After this operation,
       * {@code this.contains(c)} will return false for all {@code c}.
       *
       * <p>This is equivalent to {@code remove(Range.all())}.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/BufferCacheImpl.java

        public byte[] getBuffer () {
            synchronized ( this.cache ) {
                byte[] buf;
    
                if ( this.freeBuffers > 0 ) {
                    for ( int i = 0; i < this.cache.length; i++ ) {
                        if ( this.cache[ i ] != null ) {
                            buf = (byte[]) this.cache[ i ];
                            this.cache[ i ] = null;
                            this.freeBuffers--;
                            return buf;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jan 24 11:40:34 UTC 2021
    - 2.9K bytes
    - Viewed (0)
Back to top