Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 378 for getPost (0.3 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/TransformChain.java

         */
        @Nullable
        public TransformChain getInit() {
            return init;
        }
    
        /**
         * @return The last step of this chain.
         */
        public TransformStep getLast() {
            return last;
        }
    
        public boolean requiresDependencies() {
            return (init != null && init.requiresDependencies()) || last.requiresDependencies();
        }
    
        public String getDisplayName() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2K bytes
    - Viewed (0)
  2. platforms/core-runtime/client-services/src/main/java/org/gradle/internal/daemon/client/serialization/ClasspathInferer.java

                        Type type = Type.getObjectType(classDescriptor);
                        while (type.getSort() == Type.ARRAY) {
                            type = type.getElementType();
                        }
                        if (type.getSort() != Type.OBJECT) {
                            // A primitive type
                            continue;
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:53:31 UTC 2024
    - 5.9K 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/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)
  5. 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)
  6. 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)
  7. 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 (0)
  8. 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)
  9. 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)
  10. 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)
Back to top