Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 439 for getPost (0.24 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/authentication/AuthenticationInternal.java

             * The hostname that the credentials are required for.
             *
             * null means "any host"
             */
            String getHost();
    
            /**
             * The port that the credentials are required for
             *
             * -1 means "any port"
             */
            int getPort();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Aug 02 16:02:39 UTC 2019
    - 1.5K bytes
    - Viewed (0)
  2. pkg/config/analysis/analyzers/gateway/conflictinggateway.go

    			sPortNumber := strconv.Itoa(int(server.GetPort().GetNumber()))
    			mapKey := genGatewayMapKey(sGWSelector, sPortNumber)
    			if _, exits := gwConflictingMap[mapKey]; !exits {
    				objMap := make(map[string][]string)
    				objMap[gwName] = server.GetHosts()
    				gwConflictingMap[mapKey] = objMap
    			} else {
    				gwConflictingMap[mapKey][gwName] = server.GetHosts()
    			}
    		}
    		return true
    	})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 05 03:44:57 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/Handler.java

            path = u.getPath();
            ref = u.getRef();
            if ( ref != null ) {
                path += '#' + ref;
            }
            port = u.getPort();
            if ( port == -1 ) {
                port = getDefaultPort();
            }
            setURL(u, "smb", u.getHost(), port, u.getAuthority(), u.getUserInfo(), path, u.getQuery(), null);
        }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sat Jun 06 09:14:24 UTC 2020
    - 2.9K bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzers/destinationrule/ca-certificates.go

    			if p.GetTls().GetCaCertificates() == "" && !(p.GetTls().GetCredentialName() != "" && dr.WorkloadSelector != nil) {
    				m := msg.NewNoServerCertificateVerificationPortLevel(r, drName,
    					drNs.String(), mode.String(), dr.GetHost(), p.GetPort().String())
    
    				if line, ok := util.ErrorLine(r, fmt.Sprintf(util.DestinationRuleTLSPortLevelCert, i)); ok {
    					m.Line = line
    				}
    				ctx.Report(gvk.DestinationRule, m)
    			}
    		}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/ftp/FtpClient.java

                }
                return url;
            }
    
            public String getCacheKey() {
                return getHost() + ":" + getPort();
            }
    
            public String getHost() {
                return uri.getHost();
            }
    
            public int getPort() {
                int port = uri.getPort();
                if (port == -1) {
                    port = DEFAULT_FTP_PORT;
                }
                return port;
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  6. platforms/jvm/toolchains-jvm/src/main/java/org/gradle/jvm/toolchain/internal/RealizedJavaToolchainRepository.java

                AuthenticationInternal authenticationInternal = (AuthenticationInternal) authentication;
                if (uri.getScheme().startsWith("http")) {
                    authenticationInternal.addHost(uri.getHost(), uri.getPort());
                }
            }
            return configuredAuthentication;
        }
    
        public String getRepositoryName() {
            return repository.getName();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 10:09:12 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/process/internal/JvmOptions.java

            otherOptions.getEnabled().set(debugOptions.getEnabled().get());
            otherOptions.getHost().set(debugOptions.getHost().getOrNull());
            otherOptions.getPort().set(debugOptions.getPort().get());
            otherOptions.getServer().set(debugOptions.getServer().get());
            otherOptions.getSuspend().set(debugOptions.getSuspend().get());
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/process/JavaDebugOptions.java

         * </p>
         *
         * @since 7.6
         */
        @Incubating
        @Optional
        @Input
        Property<String> getHost();
    
        /**
         * The debug port to listen on or connect to.
         */
        @Input
        Property<Integer> getPort();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 16 14:16:38 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  9. platforms/software/resources-sftp/src/main/java/org/gradle/internal/resource/transport/sftp/SftpClientFactory.java

                }
                return jsch;
            }
        }
    
        public void releaseSftpClient(LockableSftpClient sftpClient) {
            synchronized (lock) {
                idleClients.put(sftpClient.getHost(), sftpClient);
            }
        }
    
        @Override
        public void stop() {
            synchronized (lock) {
                try {
                    CompositeStoppable.stoppable(allClients).stop();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/cel/library/library_compatibility_test.go

    	knownFunctions := sets.New(
    		// Kubernetes 1.24:
    		"isSorted", "sum", "max", "min", "indexOf", "lastIndexOf", "find", "findAll", "url", "getScheme", "getHost", "getHostname",
    		"getPort", "getEscapedPath", "getQuery", "isURL",
    		// Kubernetes <1.27>:
    		"path", "group", "serviceAccount", "resource", "subresource", "namespace", "name", "check", "allowed", "reason",
    		// Kubernetes <1.28>:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 12:03:04 UTC 2023
    - 2.6K bytes
    - Viewed (0)
Back to top