Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 237 for getpfr0 (0.22 sec)

  1. platforms/core-execution/build-cache-http/src/main/java/org/gradle/caching/http/internal/HttpBuildCacheService.java

         *
         * @param uri Original URI
         * @return a new URI with no user info
         */
        private static URI safeUri(URI uri) {
            try {
                return new URI(uri.getScheme(), null, uri.getHost(), uri.getPort(), uri.getPath(), uri.getQuery(), uri.getFragment());
            } catch (URISyntaxException e) {
                throw UncheckedException.throwAsUncheckedException(e);
            }
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 14:13:12 UTC 2024
    - 8K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/registry/DaemonRegistryContent.java

            return infosMap.get(address);
        }
    
        /**
         * Removes the status
         */
        public void removeInfo(int port) {
            infosMap.keySet().removeIf(address -> ((InetEndpoint) address).getPort() == port);
        }
    
        /**
         * Returns all stop events. May be empty.
         */
        public List<DaemonStopEvent> getStopEvents() {
            return stopEvents;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  3. okhttp-testing-support/src/main/kotlin/okhttp3/DelegatingSSLSocket.kt

        return delegate!!.localPort
      }
    
      @Throws(IOException::class)
      override fun getOutputStream(): OutputStream {
        return delegate!!.outputStream
      }
    
      override fun getPort(): Int {
        return delegate!!.port
      }
    
      @Throws(SocketException::class)
      override fun getSoLinger(): Int {
        return delegate!!.soLinger
      }
    
      @Throws(SocketException::class)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/HttpServerFixture.groovy

            }
    
        }
    
        void requireAuthentication(String path = '/*', String username, String password) {
            securityHandlerWrapper.requireAuthentication(path, username, password)
        }
    
        int getPort() {
            return connector.localPort
        }
    
        int getSslPort() {
            sslConnector.localPort
        }
    
        private void shutdownConnector(ServerConnector connector) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  5. src/main/java/jcifs/SmbResourceLocator.java

         * <code>null</code> is returned.
         * 
         * @return URL to the DFS volume
         */
        String getDfsPath ();
    
    
        /**
         * @return the transport port, if specified
         */
        int getPort ();
    
    
        /**
         * @return the original URL
         */
        URL getURL ();
    
    
        /**
         * @return resolved server address
         * @throws CIFSException
         */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 5.6K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/SmbFile.java

            String server = this.fileLocator.getServerWithDfs();
            int ai;
    
            if ( resolveSids ) {
                if (this.fileLocator.getDfsPath() == null && this.fileLocator.getPort() != -1) {
                    server = server + ":" + this.fileLocator.getPort();
                }
                SID[] sids = new SID[aces.length];
                for ( ai = 0; ai < aces.length; ai++ ) {
                    sids[ ai ] = aces[ ai ].getSID();
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  7. src/main/java/org/codelibs/fess/es/config/bsentity/dbmeta/FileAuthenticationDbm.java

            setupEpg(_epgMap, et -> ((FileAuthentication) et).getPassword(),
                    (et, vl) -> ((FileAuthentication) et).setPassword(DfTypeUtil.toString(vl)), "password");
            setupEpg(_epgMap, et -> ((FileAuthentication) et).getPort(),
                    (et, vl) -> ((FileAuthentication) et).setPort(DfTypeUtil.toInteger(vl)), "port");
            setupEpg(_epgMap, et -> ((FileAuthentication) et).getProtocolScheme(),
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  8. api/maven-api-settings/src/main/mdo/settings.mdo

              <description>
                The proxy port. Note: While the type of this field is {@code String} for technical
                reasons, the semantic type is actually {@code int}.
                @see #getPort()
              </description>
              <type>String</type>
              <defaultValue>8080</defaultValue>
            </field>
            <field>
              <name>host</name>
              <version>1.0.0+</version>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Feb 17 18:40:11 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/configuration/DaemonParameters.java

            userDefinedImmutableJvmArgs = userDefinedImmutableJvmArgs || debug;
            jvmOptions.setDebug(debug);
        }
    
        public void setDebugPort(int debug) {
            jvmOptions.getDebugOptions().getPort().set(debug);
        }
    
        public void setDebugHost(String host) {
            jvmOptions.getDebugOptions().getHost().set(host);
        }
    
        public void setDebugSuspend(boolean suspend) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:16:16 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  10. maven-compat/src/main/java/org/apache/maven/repository/legacy/LegacyRepositorySystem.java

                        }
    
                        Proxy p = new Proxy();
                        p.setHost(proxy.getHost());
                        p.setProtocol(proxy.getProtocol());
                        p.setPort(proxy.getPort());
                        p.setNonProxyHosts(proxy.getNonProxyHosts());
                        p.setUserName(proxy.getUsername());
                        p.setPassword(proxy.getPassword());
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Sep 14 11:48:15 UTC 2023
    - 31.6K bytes
    - Viewed (0)
Back to top