Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 375 for getPost (0.25 sec)

  1. 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)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/ComponentSelectionReasons.java

                return descriptions.size() == 1 && isCauseExpected(Iterables.getLast(descriptions));
            }
    
            @Override
            public boolean isCompositeSubstitution() {
                return hasCause(ComponentSelectionCause.COMPOSITE_BUILD);
            }
    
            @Override
            public String toString() {
                return descriptions.getLast().toString();
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  3. 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)
  4. pilot/pkg/networking/core/tracing.go

    		providerName = envoyZipkin
    		providerConfig = func() (*anypb.Any, error) {
    			hostname, cluster, err := clusterLookupFn(pushCtx, provider.Zipkin.GetService(), int(provider.Zipkin.GetPort()))
    			if err != nil {
    				model.IncLookupClusterFailures("zipkin")
    				return nil, fmt.Errorf("could not find cluster for tracing provider %q: %v", provider, err)
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/testing/utils.go

    		}
    		return nil
    	}
    }
    
    // StorageInjectingListErrors injects a dummy error for first N GetList calls.
    type StorageInjectingListErrors struct {
    	storage.Interface
    
    	lock   sync.Mutex
    	Errors int
    }
    
    func (s *StorageInjectingListErrors) GetList(ctx context.Context, key string, opts storage.ListOptions, listObj runtime.Object) error {
    	err := func() error {
    		s.lock.Lock()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 22 07:26:55 UTC 2024
    - 10.3K bytes
    - Viewed (1)
  6. pkg/test/framework/components/echo/calloptions.go

    	ProxyProtocolVersion int
    
    	PropagateResponse func(req *http.Request, resp *http.Response)
    }
    
    // GetHost returns the best default host for the call. Returns the first host defined from the following
    // sources (in order of precedence): Host header, target's DefaultHostHeader, Address, target's FQDN.
    func (o CallOptions) GetHost() string {
    	// First, use the host header, if specified.
    	if h := o.HTTP.Headers.Get(headers.Host); len(h) > 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Oct 08 09:39:20 UTC 2023
    - 13K bytes
    - Viewed (0)
  7. cmd/peer-s3-client.go

    	DeleteBucket(ctx context.Context, bucket string, opts DeleteBucketOptions) error
    
    	GetHost() string
    	SetPools([]int)
    	GetPools() []int
    }
    
    type localPeerS3Client struct {
    	node  Node
    	pools []int
    }
    
    func (l *localPeerS3Client) GetHost() string {
    	return l.node.Host
    }
    
    func (l *localPeerS3Client) SetPools(p []int) {
    	l.pools = make([]int, len(p))
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  8. 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)
  9. samples/extauthz/cmd/extauthz/main.go

    }
    
    func (s *extAuthzServerV2) logRequest(allow string, request *authv2.CheckRequest) {
    	httpAttrs := request.GetAttributes().GetRequest().GetHttp()
    	log.Printf("[gRPCv2][%s]: %s%s, attributes: %v\n", allow, httpAttrs.GetHost(),
    		httpAttrs.GetPath(),
    		request.GetAttributes())
    }
    
    func (s *extAuthzServerV2) allow(request *authv2.CheckRequest) *authv2.CheckResponse {
    	s.logRequest("allowed", request)
    	return &authv2.CheckResponse{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 15 18:23:48 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/resolver/ResourceVersionLister.java

                listedVersions = listAll(parent, result);
            } else {
                int parentFolderSlashIndex = prefix.lastIndexOf(fileSeparator);
                String revisionParentFolder = parentFolderSlashIndex == -1 ? "" : prefix.substring(0, parentFolderSlashIndex + 1);
                ExternalResourceName parent = versionListPattern.getRoot().resolve(revisionParentFolder);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 10.3K bytes
    - Viewed (0)
Back to top