Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 151 - 160 of 2,165 for retorno (0.04 seconds)

  1. okhttp/src/commonJvmAndroid/kotlin/okhttp3/Cookie.kt

       * end of the current session.
       *
       * This may return a value less than the current time, in which case the cookie is already
       * expired. Webservers may return expired cookies as a mechanism to delete previously set cookies
       * that may or may not themselves be expired.
       */
      @get:JvmName("expiresAt") val expiresAt: Long,
      /**
       * Returns the cookie's domain. If [hostOnly] returns true this is the only domain that matches
    Created: Fri Dec 26 11:42:13 GMT 2025
    - Last Modified: Mon May 05 16:01:00 GMT 2025
    - 23.1K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/entity/RequestParameter.java

            this.name = name;
            this.values = values;
        }
    
        /**
         * Returns the name of this request parameter.
         *
         * @return the parameter name
         */
        public String getName() {
            return name;
        }
    
        /**
         * Returns the array of values associated with this request parameter.
         *
         * @return the parameter values array, may be null or empty
         */
        public String[] getValues() {
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 2.4K bytes
    - Click Count (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/VersionRange.java

         * @return {@code true} if this range contains the specified version, {@code false} otherwise
         */
        boolean contains(@Nonnull Version version);
    
        /**
         * Returns the upper boundary of this range, or {@code null} if none.
         */
        @Nullable
        Boundary getUpperBoundary();
    
        /**
         * Returns the lower boundary of this range, or {@code null} if none.
         */
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Jun 06 14:28:57 GMT 2025
    - 2.4K bytes
    - Click Count (0)
  4. internal/config/batch/batch.go

    	configMu.RLock()
    	defer configMu.RUnlock()
    
    	return opts.ReplicationWorkersWait
    }
    
    // KeyRotationWait returns the duration for which a batch key-rotation worker
    // would wait before working on next object.
    func (opts Config) KeyRotationWait() time.Duration {
    	configMu.RLock()
    	defer configMu.RUnlock()
    
    	return opts.KeyRotationWorkersWait
    }
    
    // Clone returns a copy of Config value
    func (opts Config) Clone() Config {
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Fri May 24 23:05:23 GMT 2024
    - 4.7K bytes
    - Click Count (0)
  5. internal/http/listener.go

    		listener.listeners[i].Close()
    	}
    
    	return nil
    }
    
    // Addr - net.Listener interface compatible method returns net.Addr.  In case of multiple TCP listeners, it returns '0.0.0.0' as IP address.
    func (listener *httpListener) Addr() (addr net.Addr) {
    	addr = listener.listeners[0].Addr()
    	if len(listener.listeners) == 1 {
    		return addr
    	}
    
    	if tcpAddr, ok := addr.(*net.TCPAddr); ok {
    		return &net.TCPAddr{
    			IP:   net.IPv4zero,
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Sun Sep 28 20:59:21 GMT 2025
    - 5.8K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/dict/DictionaryFile.java

                return allRecordCount;
            }
    
            /**
             * Returns the page size (number of records per page).
             *
             * @return the page size
             */
            public int getPageSize() {
                return pageSize;
            }
    
            /**
             * Returns the current page number (1-based).
             *
             * @return the current page number
             */
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Thu Nov 20 07:09:00 GMT 2025
    - 11.2K bytes
    - Click Count (0)
  7. src/test/java/jcifs/smb/Kerb5ContextTest.java

        }
    
        @Test
        @DisplayName("isSupported returns false for null/unknown OIDs")
        void isSupported_unknownOrNull() {
            assertFalse(ctx.isSupported(null));
            assertFalse(ctx.isPreferredMech(null));
            assertFalse(ctx.isSupported(new ASN1ObjectIdentifier("1.3.6.1.4.1.99999")));
        }
    
        @Test
        @DisplayName("getSupportedMechs returns expected array")
        void getSupportedMechs_happyPath() {
    Created: Sat Dec 20 13:44:44 GMT 2025
    - Last Modified: Thu Aug 14 07:14:38 GMT 2025
    - 14.2K bytes
    - Click Count (0)
  8. android/guava/src/com/google/common/collect/Multiset.java

       */
      interface Entry<E extends @Nullable Object> {
    
        /**
         * Returns the multiset element corresponding to this entry. Multiple calls to this method
         * always return the same instance.
         *
         * @return the element corresponding to this entry
         */
        @ParametricNullness
        E getElement();
    
        /**
         * Returns the count of the associated element in the underlying multiset. This count may either
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Tue Jul 08 18:32:10 GMT 2025
    - 19.5K bytes
    - Click Count (0)
  9. src/test/java/jcifs/smb/FileEntryTest.java

            @Override
            public String getName() {
                return name;
            }
    
            @Override
            public int getType() {
                return type;
            }
    
            @Override
            public int getAttributes() {
                return attributes;
            }
    
            @Override
            public long createTime() {
                return createTime;
            }
    
            @Override
    Created: Sat Dec 20 13:44:44 GMT 2025
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 10K bytes
    - Click Count (0)
  10. internal/s3select/sql/value.go

    		return "BYTES"
    	case []Value:
    		return "ARRAY"
    	case Missing:
    		return "MISSING"
    	}
    	return "--"
    }
    
    // Repr returns a string representation of value.
    func (v Value) Repr() string {
    	switch x := v.value.(type) {
    	case nil:
    		return ":NULL"
    	case bool, int64, float64:
    		return fmt.Sprintf("%v:%s", v.value, v.GetTypeString())
    	case time.Time:
    		return fmt.Sprintf("%s:TIMESTAMP", x)
    	case string:
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Sun Sep 28 20:59:21 GMT 2025
    - 20.4K bytes
    - Click Count (0)
Back to Top