Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 8,477 for This (0.41 sec)

  1. 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)
  2. src/main/java/jcifs/config/PropertyConfiguration.java

            this.nativeOs = p.getProperty("jcifs.smb.client.nativeOs", System.getProperty("os.name"));
            this.nativeLanMan = p.getProperty("jcifs.smb.client.nativeLanMan", "jCIFS");
            this.vcNumber = 1;
    
            this.dfsDisabled = Config.getBoolean(p, "jcifs.smb.client.dfs.disabled", false);
            this.dfsTTL = Config.getLong(p, "jcifs.smb.client.dfs.ttl", 300);
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 8.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/api/ApiResult.java

                this.total = settings.size();
                return this;
            }
    
            public ApiConfigsResponse<T> total(final long total) {
                this.total = total;
                return this;
            }
    
            @Override
            public ApiResult result() {
                return new ApiResult(this);
            }
        }
    
        public static class ApiDocResponse extends ApiResponse {
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 12.2K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SmbTransportImpl.java

                this.socket.setSoTimeout(tc.getConfig().getSoTimeout());
    
                this.out = this.socket.getOutputStream();
                this.in = this.socket.getInputStream();
    
                SessionServicePacket ssp = new SessionRequestPacket(tc.getConfig(), calledName, tc.getNameServiceClient().getLocalName());
                this.out.write(this.sbuf, 0, ssp.writeWireFormat(this.sbuf, 0));
                if ( readn(this.in, this.sbuf, 0, 4) < 4 ) {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Wed Jan 18 23:47:00 GMT 2023
    - 67K bytes
    - Viewed (0)
  5. api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyCoordinateFactoryRequest.java

                    super(session);
                    this.groupId = groupId;
                    this.artifactId = artifactId;
                    this.version = version;
                    this.classifier = classifier;
                    this.extension = extension;
                    this.type = type;
                    this.coordinateString = coordinateString;
                    this.scope = scope;
                    this.optional = optional;
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Feb 05 09:42:51 GMT 2024
    - 9.6K bytes
    - Viewed (0)
  6. 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
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Sat Apr 20 17:03:43 GMT 2024
    - 17.9K bytes
    - Viewed (2)
  7. 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<>();
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 29.6K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/internal/http2/MockHttp2Peer.kt

          check(type == -1)
          this.type = Http2.TYPE_DATA
          this.inFinished = inFinished
          this.streamId = streamId
          this.data = source.readByteString(length.toLong()).toByteArray()
        }
    
        override fun rstStream(
          streamId: Int,
          errorCode: ErrorCode,
        ) {
          check(type == -1)
          this.type = Http2.TYPE_RST_STREAM
          this.streamId = streamId
          this.errorCode = errorCode
        }
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Thu Apr 11 22:09:35 GMT 2024
    - 8.7K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb/SmbFile.java

            if ( this.treeHandle == null || !this.treeHandle.isConnected() ) {
                if ( this.treeHandle != null && this.transportContext.getConfig().isStrictResourceLifecycle() ) {
                    this.treeHandle.release();
                }
                this.treeHandle = this.treeConnection.connectWrapException(this.fileLocator);
                this.treeHandle.ensureDFSResolved();
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 81.6K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/plugin/MojoExecution.java

            this.mojoDescriptor = mojoDescriptor;
            this.executionId = executionId;
            this.configuration = null;
            this.source = source;
        }
    
        public MojoExecution(MojoDescriptor mojoDescriptor, String executionId) {
            this.mojoDescriptor = mojoDescriptor;
            this.executionId = executionId;
            this.configuration = null;
        }
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Jan 03 15:52:23 GMT 2023
    - 6.2K bytes
    - Viewed (0)
Back to top