Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 144 for bulk_6 (0.11 sec)

  1. cmd/erasure-sets.go

    		return ObjectInfo{}, err
    	}
    	set := s.getHashedSet(object)
    	return set.DeleteObject(ctx, bucket, object, opts)
    }
    
    // DeleteObjects - bulk delete of objects
    // Bulk delete is only possible within one set. For that purpose
    // objects are group by set first, and then bulk delete is invoked
    // for each set, the error response of each delete will be returned
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/thumbnail/impl/BaseThumbnailGenerator.java

                return filePathMap.get(value);
            }
            return value;
        }
    
        protected void updateThumbnailField(final String thumbnailId, final String value) {
            // TODO bulk
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
            try {
                ComponentUtil.getIndexingHelper().updateDocument(ComponentUtil.getSearchEngineClient(), thumbnailId,
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  3. src/runtime/memmove_arm.s

    // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    // THE SOFTWARE.
    
    #include "textflag.h"
    
    // TE or TS are spilled to the stack during bulk register moves.
    #define TS	R0
    #define TE	R8
    
    // Warning: the linker will use R11 to synthesize certain instructions. Please
    // take care and double check with objdump.
    #define FROM	R11
    #define N	R12
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 04 07:25:06 UTC 2020
    - 5.9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/es/user/bsbhv/BsUserBhv.java

    import org.dbflute.cbean.result.PagingResultBean;
    import org.dbflute.exception.IllegalBehaviorStateException;
    import org.dbflute.optional.OptionalEntity;
    import org.dbflute.util.DfTypeUtil;
    import org.opensearch.action.bulk.BulkRequestBuilder;
    import org.opensearch.action.delete.DeleteRequestBuilder;
    import org.opensearch.action.index.IndexRequestBuilder;
    
    /**
     * @author ESFlute (using FreeGen)
     */
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 12K bytes
    - Viewed (0)
  5. src/main/resources/fess_message_de.properties

    success.job_log_delete_all=Aufgabenprotokolle gelöscht.
    success.changed_password=Passwort geändert.
    success.started_data_update=Updatevorgang für Daten gestartet.
    success.reindex_started=Neuindizierung gestartet.
    success.bulk_process_started=Bulk-Vorgang gestartet.
    success.print_thread_dump=Thread-Dump in Protokolldatei ausgegeben.
    
    success.crud_create_crud_table=Daten erstellt.
    success.crud_update_crud_table=Daten aktualisiert.
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Tue Oct 29 15:01:03 UTC 2019
    - 11.8K bytes
    - Viewed (0)
  6. src/main/resources/fess_message_ru.properties

    success.upload_mapping_file=Uploaded Mapping file.
    success.send_testmail=Sent the test mail.
    success.job_log_delete_all=Deleted job logs.
    success.changed_password=Changed your password.
    success.bulk_process_started=Bulk process is started.
    
    success.crud_create_crud_table=Created data.
    success.crud_update_crud_table=Updated data.
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri May 20 12:12:28 UTC 2022
    - 10.2K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/liveness/plive.go

    	}
    
    	nblocks := int32(len(f.Blocks))
    	nvars := int32(len(vars))
    	bulk := bitvec.NewBulk(nvars, nblocks*7)
    	for _, b := range f.Blocks {
    		be := lv.blockEffects(b)
    
    		be.uevar = bulk.Next()
    		be.varkill = bulk.Next()
    		be.livein = bulk.Next()
    		be.liveout = bulk.Next()
    	}
    	lv.livenessMap.reset()
    
    	lv.markUnsafePoints()
    
    	lv.partLiveArgs = make(map[*ir.Name]bool)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/Multiset.java

     *
     * <p>{@code Multiset} refines the specifications of several methods from {@code Collection}. It
     * also defines an additional query operation, {@link #count}, which returns the count of an
     * element. There are five new bulk-modification operations, for example {@link #add(Object, int)},
     * to add or remove multiple occurrences of an element at once, or to set the count of an element to
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Jun 17 14:40:53 UTC 2023
    - 19.7K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/maintenance/AdminMaintenanceAction.java

            }
        }
    
        protected void writeFessBasicConfig(final ZipOutputStream zos, final String id) {
            final String index = "fess_basic_config";
            final ZipEntry entry = new ZipEntry(id + "/fess_basic_config.bulk");
            try {
                zos.putNextEntry(entry);
                SearchEngineUtil.scroll(index, hit -> {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 14K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/Multiset.java

     *
     * <p>{@code Multiset} refines the specifications of several methods from {@code Collection}. It
     * also defines an additional query operation, {@link #count}, which returns the count of an
     * element. There are five new bulk-modification operations, for example {@link #add(Object, int)},
     * to add or remove multiple occurrences of an element at once, or to set the count of an element to
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Jun 17 14:40:53 UTC 2023
    - 21K bytes
    - Viewed (0)
Back to top