Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 12 for Typed (0.02 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. impl/maven-cli/src/main/java/org/apache/maven/cling/props/MavenProperties.java

                boolean typed = false;
                if (maybeTyped && property[1].length() >= 2) {
                    typed = property[1].matches(
                            "\\s*[TILFDXSCBilfdxscb]?(\\[[\\S\\s]*\\]|\\([\\S\\s]*\\)|\\{[\\S\\s]*\\}|\"[\\S\\s]*\")\\s*");
                }
                if (this.typed == null) {
                    this.typed = typed;
                } else {
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Thu Oct 16 09:03:48 GMT 2025
    - 38.5K bytes
    - Click Count (0)
  2. compat/maven-embedder/src/main/java/org/apache/maven/cli/props/MavenProperties.java

                boolean typed = false;
                if (maybeTyped && property[1].length() >= 2) {
                    typed = property[1].matches(
                            "\\s*[TILFDXSCBilfdxscb]?(\\[[\\S\\s]*\\]|\\([\\S\\s]*\\)|\\{[\\S\\s]*\\}|\"[\\S\\s]*\")\\s*");
                }
                if (this.typed == null) {
                    this.typed = typed;
                } else {
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Wed Jul 23 17:27:08 GMT 2025
    - 38.4K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/app/web/base/login/FessLoginAssist.java

        protected Class<?> getLoginActionType() {
            return LoginAction.class;
        }
    
        /**
         * Converts a user key to a typed user ID.
         * In this implementation, returns the user key as-is.
         *
         * @param userKey the user key to convert
         * @return the typed user ID
         */
        @Override
        protected String toTypedUserId(final String userKey) {
            return userKey;
        }
    
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 12.1K bytes
    - Click Count (0)
  4. impl/maven-core/src/main/java/org/apache/maven/internal/impl/DefaultProjectManager.java

    import org.eclipse.sisu.Typed;
    
    import static java.util.Objects.requireNonNull;
    import static org.apache.maven.internal.impl.CoreUtils.map;
    
    /**
     * This implementation of {@code ProjectManager} is explicitly bound to
     * both {@code ProjectManager} and {@code Service} interfaces so that it can be retrieved using
     * {@link InternalSession#getAllServices()}.
     */
    @Named
    @Typed({ProjectManager.class, Service.class})
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Wed Dec 17 16:17:01 GMT 2025
    - 10.9K bytes
    - Click Count (0)
  5. fastapi/encoders.py

        """
        Encodes a Decimal as int if there's no exponent, otherwise float
    
        This is useful when we use ConstrainedDecimal to represent Numeric(x,0)
        where an integer (but not int typed) is used. Encoding this as a float
        results in failed round-tripping between encode and parse.
        Our Id type is a prime example of this.
    
        >>> decimal_encoder(Decimal("1.0"))
        1.0
    
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Sat Dec 27 12:54:56 GMT 2025
    - 10.7K bytes
    - Click Count (0)
  6. cmd/postpolicyform.go

    					}
    					sset.Add(kv.Key)
    				}
    			}
    			e.Encode(kvs)
    		}
    	}
    	return &buf, d.Err()
    }
    
    // parsePostPolicyForm - Parse JSON policy string into typed PostPolicyForm structure.
    func parsePostPolicyForm(r io.Reader) (PostPolicyForm, error) {
    	reader, err := sanitizePolicy(r)
    	if err != nil {
    		return PostPolicyForm{}, err
    	}
    
    	d := json.NewDecoder(reader)
    
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Thu Oct 23 15:10:12 GMT 2025
    - 12.1K bytes
    - Click Count (0)
  7. internal/grid/handlers.go

    		},
    	}
    	return pool.Get,
    		func(r RT) {
    			if r != rZero {
    				//nolint:staticcheck // SA6002 IT IS A GENERIC VALUE!
    				pool.Put(r)
    			}
    		}
    }
    
    // NewSingleHandler creates a typed handler that can provide Marshal/Unmarshal.
    // Use Register to register a server handler.
    // Use Call to initiate a clientside call.
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Tue Feb 18 16:25:55 GMT 2025
    - 27.7K bytes
    - Click Count (0)
  8. internal/grid/types.go

    	"encoding/json"
    	"errors"
    	"math"
    	"net/url"
    	"sort"
    	"strings"
    	"sync"
    
    	"github.com/minio/minio/internal/bpool"
    	"github.com/tinylib/msgp/msgp"
    )
    
    // Recycler will override the internal reuse in typed handlers.
    // When this is supported, the handler will not do internal pooling of objects,
    // call Recycle() when the object is no longer needed.
    // The recycler should handle nil pointers.
    type Recycler interface {
    	Recycle()
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Sun Sep 28 20:59:21 GMT 2025
    - 15.5K bytes
    - Click Count (0)
  9. internal/event/target/elasticsearch.go

    	EnvElasticQueueLimit = "MINIO_NOTIFY_ELASTICSEARCH_QUEUE_LIMIT"
    	EnvElasticUsername   = "MINIO_NOTIFY_ELASTICSEARCH_USERNAME"
    	EnvElasticPassword   = "MINIO_NOTIFY_ELASTICSEARCH_PASSWORD"
    )
    
    // ESSupportStatus is a typed string representing the support status for
    // Elasticsearch
    type ESSupportStatus string
    
    const (
    	// ESSUnknown is default value
    	ESSUnknown ESSupportStatus = "ESSUnknown"
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Sun Sep 28 20:59:21 GMT 2025
    - 15K bytes
    - Click Count (0)
  10. cmd/object-api-errors.go

    // Error returns string an error formatted as the given text.
    func (e IncompleteBody) Error() string {
    	return e.Bucket + "/" + e.Object + " has incomplete body"
    }
    
    // InvalidRange - invalid range typed error.
    type InvalidRange struct {
    	OffsetBegin  int64
    	OffsetEnd    int64
    	ResourceSize int64
    }
    
    func (e InvalidRange) Error() string {
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Fri Aug 09 02:05:14 GMT 2024
    - 22.1K bytes
    - Click Count (0)
Back to Top