Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 292 for oplus (0.1 sec)

  1. src/main/java/org/codelibs/fess/es/user/allcommon/EsSqlClause.java

            return null;
        }
    
        @Override
        public void fetchFirst(int fetchSize) {
            _fetchScopeEffective = true;
            if (fetchSize < 0) {
                String msg = "Argument[fetchSize] should be plus: " + fetchSize;
                throw new IllegalArgumentException(msg);
            }
            _fetchStartIndex = 0;
            _fetchSize = fetchSize;
            _fetchPageNumber = 1;
            doClearFetchPageClause();
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. src/os/path_windows.go

    	// will work; empirically the path must be less then 248 bytes long.
    	pathLength := len(path)
    	if !filepathlite.IsAbs(path) {
    		// If the path is relative, we need to prepend the working directory
    		// plus a separator to the path before we can determine if it's too long.
    		// We don't want to call syscall.Getwd here, as that call is expensive to do
    		// every time fixLongPath is called with a relative path, so we use a cache.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:44:48 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  3. docs/fr/docs/history-design-future.md

    Par exemple, il était clair que l'idéal était de se baser sur les annotations de type Python standard.
    
    De plus, la meilleure approche était d'utiliser des normes déjà existantes.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  4. src/go/build/deps_test.go

    	< path;
    
    	unicode !< path;
    
    	# SYSCALL is RUNTIME plus the packages necessary for basic system calls.
    	RUNTIME, unicode/utf8, unicode/utf16
    	< internal/syscall/windows/sysdll, syscall/js
    	< syscall
    	< internal/syscall/unix, internal/syscall/windows, internal/syscall/windows/registry
    	< internal/syscall/execenv
    	< SYSCALL;
    
    	# TIME is SYSCALL plus the core packages about time, including context.
    	SYSCALL
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 16:41:13 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  5. src/fmt/print.go

    	switch verb {
    	case 'v', 'b', 'g', 'G', 'x', 'X', 'f', 'F', 'e', 'E':
    		oldPlus := p.fmt.plus
    		p.buf.writeByte('(')
    		p.fmtFloat(real(v), size/2, verb)
    		// Imaginary part always has a sign.
    		p.fmt.plus = true
    		p.fmtFloat(imag(v), size/2, verb)
    		p.buf.writeString("i)")
    		p.fmt.plus = oldPlus
    	default:
    		p.badVerb(verb)
    	}
    }
    
    func (p *pp) fmtString(v string, verb rune) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:22:43 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  6. cmd/xl-storage-meta-inline.go

    func (x *xlMetaInlineData) replace(key string, value []byte) {
    	in := x.afterVersion()
    	sz, buf, _ := msgp.ReadMapHeaderBytes(in)
    	keys := make([][]byte, 0, sz+1)
    	vals := make([][]byte, 0, sz+1)
    
    	// Version plus header...
    	plSize := 1 + msgp.MapHeaderSize
    	replaced := false
    	for i := uint32(0); i < sz; i++ {
    		var found, foundVal []byte
    		var err error
    		found, buf, err = msgp.ReadMapKeyZC(buf)
    		if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 12:04:40 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  7. src/image/jpeg/huffman.go

    	// length is the number of codes in the tree.
    	nCodes int32
    	// lut is the look-up table for the next lutSize bits in the bit-stream.
    	// The high 8 bits of the uint16 are the encoded value. The low 8 bits
    	// are 1 plus the code length, or 0 if the value is too large to fit in
    	// lutSize bits.
    	lut [1 << lutSize]uint16
    	// vals are the decoded values, sorted by their encoding.
    	vals [maxNCodes]uint8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 17:08:05 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/resolution/KaCompoundAccess.kt

        override val token: KaLifetimeToken get() = backingOperationPartiallyAppliedSymbol.token
    
        /**
         * The function that compute the value for this compound access. For example, if the access is `+=`, this is the resolved `plus`
         * function. If the access is `++`, this is the resolved `inc` function.
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/project/ProjectLifecycleController.java

    import org.gradle.internal.service.scopes.ServiceScope;
    
    import java.io.Closeable;
    
    /**
     * Controls the lifecycle of the mutable {@link ProjectInternal} instance for a project, plus its services.
     */
    @ServiceScope(Scope.Project.class)
    public class ProjectLifecycleController implements Closeable {
        private final ServiceRegistry buildServices;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/cel/limits.go

    	// to allow for quotation marks
    	MaxDatetimeSizeJSON = 32
    	// MinDurationSizeJSON
    	// Golang allows a string of 0 to be parsed as a duration, so that plus 2 to account for
    	// quotation marks makes 3
    	MinDurationSizeJSON = 3
    	// JSONDateSize is the size of a date serialized as part of a JSON object
    	// RFC 3339 dates require YYYY-MM-DD, and then we add 2 to allow for quotation marks
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 17:22:44 UTC 2024
    - 2K bytes
    - Viewed (0)
Back to top