Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 97 for getpgrp (0.18 sec)

  1. pkg/config/analysis/analyzers/gateway/conflictinggateway.go

    			m.Line = line
    		}
    		c.Report(gvk.Gateway, m)
    		return
    	}
    
    	for _, server := range gw.Servers {
    		var gateways []string
    		conflictingGWMatch := 0
    		sPortNumber := strconv.Itoa(int(server.GetPort().GetNumber()))
    		mapKey := genGatewayMapKey(sGWSelector, sPortNumber)
    		for gwNameKey, gwHostsValue := range gwCMap[mapKey] {
    			for _, gwHost := range server.GetHosts() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 05 03:44:57 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/authentication/AuthenticationInternal.java

             * 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)
  3. src/main/java/org/codelibs/fess/es/config/exentity/WebAuthentication.java

        private AuthScope getAuthScope() {
            if (StringUtil.isBlank(getHostname())) {
                return AuthScope.ANY;
            }
    
            int p;
            if (getPort() == null) {
                p = AuthScope.ANY_PORT;
            } else {
                p = getPort();
            }
    
            String r = getAuthRealm();
            if (StringUtil.isBlank(r)) {
                r = AuthScope.ANY_REALM;
            }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  4. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/inet/MultiChoiceAddress.java

        public UUID getCanonicalAddress() {
            return canonicalAddress;
        }
    
        @Override
        public List<InetAddress> getCandidates() {
            return candidates;
        }
    
        @Override
        public int getPort() {
            return port;
        }
    
        @Override
        public String toString() {
            return getDisplayName();
        }
    
        @Override
        public boolean equals(Object o) {
            if (o == this) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/JavaDebugOptionsInternal.java

            this.enabled = enabled;
        }
    
        public String getHost() {
            return host;
        }
    
        public void setHost(String host) {
            this.host = host;
        }
    
        public int getPort() {
            return port;
        }
    
        public void setPort(int port) {
            this.port = port;
        }
    
        public boolean isServer() {
            return server;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.2K 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. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkQueueIntegrationTest.groovy

                action = """
                    System.out.println("Running \${parameters.itemName}...")
                    new URI("http", null, "localhost", ${blockingHttpServer.getPort()}, "/\${parameters.itemName}", null, null).toURL().text
                    if (parameters.shouldFail) {
                        throw new Exception("Failure from " + parameters.itemName)
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/FessBoot.java

            final String tempPath = System.getProperty(FESS_TEMP_PATH);
            if (tempPath != null) {
                System.setProperty(JAVA_IO_TMPDIR, tempPath);
            }
    
            final TomcatBoot tomcatBoot = new FessBoot(getPort(), getContextPath()) //
                    .useTldDetect(); // for JSP
            final String varPath = System.getProperty(FESS_VAR_PATH);
            if (varPath != null) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  9. src/time/zoneinfo_android.go

    import (
    	"errors"
    	"syscall"
    )
    
    var platformZoneSources = []string{
    	"/system/usr/share/zoneinfo/tzdata",
    	"/data/misc/zoneinfo/current/tzdata",
    }
    
    func initLocal() {
    	// TODO(elias.naur): getprop persist.sys.timezone
    	localLoc = *UTC
    }
    
    func init() {
    	loadTzinfoFromTzdata = androidLoadTzinfoFromTzdata
    }
    
    var allowGorootSource = true
    
    func gorootZoneSource(goroot string) (string, bool) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 18 20:57:35 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  10. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb/SmbAuthentication.java

            return buf.toString();
        }
    
        public String getServer() {
            return server;
        }
    
        public void setServer(final String server) {
            this.server = server;
        }
    
        public int getPort() {
            return port;
        }
    
        public void setPort(final int port) {
            this.port = port;
        }
    
        public String getUsername() {
            return username;
        }
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 1.9K bytes
    - Viewed (0)
Back to top