Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 325 for deflated (0.06 sec)

  1. docs/site-replication/run-multi-site-ldap.sh

    ./mc rm minio3/newbucket/README.md
    sleep 5
    
    ./mc stat --no-list minio2/newbucket/README.md
    if [ $? -eq 0 ]; then
    	echo "expected file to be deleted, exiting.."
    	exit_1
    fi
    
    ./mc stat --no-list minio1/newbucket/README.md
    if [ $? -eq 0 ]; then
    	echo "expected file to be deleted, exiting.."
    	exit_1
    fi
    
    ./mc mb --with-lock minio3/newbucket-olock
    sleep 5
    
    Registered: 2025-05-25 19:28
    - Last Modified: 2024-09-24 08:03
    - 10.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/opensearch/config/allcommon/EsAbstractBehavior.java

            }
        }
    
        @Override
        protected Number doReadNextVal() {
            final String msg = "This table is NOT related to sequence: " + asEsIndexType();
            throw new UnsupportedOperationException(msg);
        }
    
        @Override
    Registered: 2025-05-26 08:04
    - Last Modified: 2025-05-18 04:53
    - 26.4K bytes
    - Viewed (0)
  3. docs/config/README.md

    stale_uploads_cleanup_interval  (duration)  set to change intervals when stale multipart uploads are expired (default: '6h')
    delete_cleanup_interval         (duration)  set to change intervals when deleted objects are permanently deleted from ".trash" folder (default: '5m')
    odirect                         (boolean)   set to enable or disable O_DIRECT for writes under special conditions. NOTE: do not disable O_DIRECT without prior testing (default: 'on')
    Registered: 2025-05-25 19:28
    - Last Modified: 2025-04-24 23:34
    - 18K bytes
    - Viewed (1)
  4. cmd/erasure-healing.go

    	}
    
    	cannotHeal := !latestMeta.XLV1 && !latestMeta.Deleted && xlMetaToHealCount > latestMeta.Erasure.ParityBlocks
    	if cannotHeal && quorumETag != "" {
    		// This is an object that is supposed to be removed by the dangling code
    		// but we noticed that ETag is the same for all objects, let's give it a shot
    		cannotHeal = false
    	}
    
    	if !latestMeta.Deleted && !latestMeta.IsRemote() {
    Registered: 2025-05-25 19:28
    - Last Modified: 2025-04-04 13:49
    - 34.6K bytes
    - Viewed (0)
  5. architecture/networking/pilot.md

    However, all other types *cannot* be deleted explicitly, and instead are cleaned up when all references are removed. This means we can send partial updates for non-root types, without deleting unsent resources. This effectively allows doing delta updates over SotW. This optimization is critical...
    Registered: 2025-05-28 22:53
    - Last Modified: 2024-02-07 17:53
    - 19.1K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/io/Closer.java

       *
       * @return this method does not return; it always throws
       * @throws IOException when the given throwable is an IOException
       * @throws X1 when the given throwable is of the declared type X1
       * @throws X2 when the given throwable is of the declared type X2
       */
      public <X1 extends Exception, X2 extends Exception> RuntimeException rethrow(
          Throwable e, Class<X1> declaredType1, Class<X2> declaredType2) throws IOException, X1, X2 {
    Registered: 2025-05-30 12:43
    - Last Modified: 2025-03-17 20:26
    - 10.3K bytes
    - Viewed (0)
  7. cni/pkg/nodeagent/ztunnelserver.go

    	c.mu.Lock()
    	defer c.mu.Unlock()
    	log := log.WithLabels("conn_uuid", conn.UUID())
    
    	// Loop over the slice, keeping non-deleted conn but
    	// filtering out the deleted one.
    	var retainedConns []ZtunnelConnection
    	for _, existingConn := range c.connectionSet {
    		// Not conn that was deleted? Keep it.
    		if existingConn != conn {
    			retainedConns = append(retainedConns, existingConn)
    		}
    	}
    	c.connectionSet = retainedConns
    Registered: 2025-05-28 22:53
    - Last Modified: 2025-03-03 21:55
    - 10.7K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/reflect/Invokable.java

      }
    
      /**
       * Returns {@code true} if this is an overridable method. Constructors, private, static or final
       * methods, or methods declared by final classes are not overridable.
       */
      public abstract boolean isOverridable();
    
      /** Returns {@code true} if this was declared to take a variable number of arguments. */
      public abstract boolean isVarArgs();
    
      /**
    Registered: 2025-05-30 12:43
    - Last Modified: 2025-03-17 20:26
    - 18.4K bytes
    - Viewed (0)
  9. guava-testlib/src/com/google/common/testing/AbstractPackageSanityTests.java

       *       AbstractPackageSanityTests} doesn't know how to construct, the test will fail.
       *   <li>If there is no visible constructor or visible static factory method declared by {@code
       *       C}, {@code C} is skipped for serialization test, even if it implements {@link
       *       Serializable}.
       *   <li>Serialization test is not performed on method return values unless the method is a
    Registered: 2025-05-30 12:43
    - Last Modified: 2025-05-13 17:27
    - 17.9K bytes
    - Viewed (0)
  10. docs/en/docs/tutorial/sql-databases.md

    * `Field(index=True)` tells SQLModel that it should create a **SQL index** for this column, that would allow faster lookups in the database when reading data filtered by this column.
    
        SQLModel will know that something declared as `str` will be a SQL column of type `TEXT` (or `VARCHAR`, depending on the database).
    
    ### Create an Engine
    
    Registered: 2025-05-25 07:19
    - Last Modified: 2024-12-25 20:10
    - 14.7K bytes
    - Viewed (0)
Back to top