Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for bulk_6 (0.17 sec)

  1. src/runtime/mbarrier.go

    // emitting calls to write barriers. The main write barrier for
    // individual pointer writes is gcWriteBarrier and is implemented in
    // assembly. This file contains write barrier entry points for bulk
    // operations. See also mwbbuf.go.
    
    package runtime
    
    import (
    	"internal/abi"
    	"internal/goarch"
    	"internal/goexperiment"
    	"unsafe"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. cmd/erasure-object.go

    	return reduceWriteQuorumErrs(ctx, g.Wait(), objectOpIgnoredErrs, writeQuorum)
    }
    
    // DeleteObjects deletes objects/versions in bulk, this function will still automatically split objects list
    // into smaller bulks if some object names are found to be duplicated in the delete list, splitting
    // into smaller bulks will avoid holding twice the write lock of the duplicated object names.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  5. src/runtime/preempt.go

    		// anything closely tied to the runtime. Known issues
    		// include: various points in the scheduler ("don't
    		// preempt between here and here"), much of the defer
    		// implementation (untyped info on stack), bulk write
    		// barriers (write barrier check),
    		// reflect.{makeFuncStub,methodValueCall}.
    		//
    		// TODO(austin): We should improve this, or opt things
    		// in incrementally.
    		return false, 0
    	}
    	switch up {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/link.go

    // Each Prog is charged to a specific source line in the debug information,
    // specified by Pos.Line().
    // Every Prog has a Ctxt field that defines its context.
    // For performance reasons, Progs are usually bulk allocated, cached, and reused;
    // those bulk allocators should always be used, rather than new(Prog).
    //
    // The other fields not yet mentioned are for use by the back ends and should
    // be left zeroed by creators of Prog lists.
    type Prog struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/Multimaps.java

       * {@code Set}.
       *
       * <p>The function is applied lazily, invoked when needed. This is necessary for the returned
       * multimap to be a view, but it means that the function will be applied many times for bulk
       * operations like {@link Multimap#containsValue} and {@code Multimap.toString()}. For this to
       * perform well, {@code function} should be fast. To avoid lazy evaluation when the returned
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 86.3K bytes
    - Viewed (0)
  8. cmd/encryption-v1.go

    // Further, it decrypts all single-part SSE-S3 encrypted objects
    // and formats ETags of SSE-C / SSE-KMS encrypted objects to
    // be AWS S3 compliant.
    //
    // DecryptETags uses a KMS bulk decryption API, if available, which
    // is more efficient than decrypting ETags sequentually.
    func DecryptETags(ctx context.Context, k *kms.KMS, objects []ObjectInfo) error {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  9. cmd/storage-rest-server.go

    	}
    	volume := r.Form.Get(storageRESTVolume)
    	err := s.getStorage().MakeVol(r.Context(), volume)
    	if err != nil {
    		s.writeErrorResponse(w, err)
    	}
    }
    
    // MakeVolBulkHandler - create multiple volumes as a bulk operation.
    func (s *storageRESTServer) MakeVolBulkHandler(w http.ResponseWriter, r *http.Request) {
    	if !s.IsValid(w, r) {
    		return
    	}
    	volumes := strings.Split(r.Form.Get(storageRESTVolumes), ",")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  10. src/go/build/deps_test.go

    	< runtime/msan, runtime/asan;
    
    	# runtime/race
    	NONE < runtime/race/internal/amd64v1;
    	NONE < runtime/race/internal/amd64v3;
    	CGO, runtime/race/internal/amd64v1, runtime/race/internal/amd64v3 < runtime/race;
    
    	# Bulk of the standard library must not use cgo.
    	# The prohibition stops at net and os/user.
    	C !< fmt, go/types, CRYPTO-MATH, log/slog;
    
    	CGO, OS
    	< plugin;
    
    	CGO, FMT
    	< os/user
    	< archive/tar;
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 16:41:13 UTC 2024
    - 19.2K bytes
    - Viewed (0)
Back to top