Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 79 for Replayed (0.2 sec)

  1. docs/bucket/notifications/README.md

    MinIO synchronizes objects in the bucket with entries in a hash. For each entry, the key is formatted as "bucketName/objectName" for an object that exists in the bucket, and the value is the JSON-encoded event data about the operation that created/replaced the object in MinIO. When objects are updated or deleted, the corresponding entry in the hash is also updated or deleted.
    
    When the _access_ format is used, MinIO appends events to a list using [RPUSH](https://redis.io/commands/rpush)....
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 84K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/expr.go

    		if isUntyped(x.typ) {
    			// spec: "If the left operand of a non-constant shift
    			// expression is an untyped constant, the type of the
    			// constant is what it would be if the shift expression
    			// were replaced by its left operand alone.".
    			//
    			// Delay operand checking until we know the final type
    			// by marking the lhs expression as lhs shift operand.
    			//
    			// Usually (in correct programs), the lhs expression
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  3. src/runtime/mprof.go

    		// allocations. Change MemProfileRate to 1 if you need to reproduce such
    		// cases for testing purposes.
    		return
    	}
    	// Only use the part of mp.profStack we need and ignore the extra space
    	// reserved for delayed inline expansion with frame pointer unwinding.
    	nstk := callers(4, mp.profStack[:debug.profstackdepth])
    	index := (mProfCycle.read() + 2) % uint32(len(memRecord{}.future))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/volumebinding/binder_test.go

    			podPVCs:    []*v1.PersistentVolumeClaim{immediateUnboundPVC},
    			shouldFail: true,
    		},
    		"immediate-unbound-pvc,delayed-mode-bound": {
    			podPVCs:    []*v1.PersistentVolumeClaim{immediateUnboundPVC, boundPVC},
    			pvs:        []*v1.PersistentVolume{pvBound},
    			shouldFail: true,
    		},
    		"immediate-unbound-pvc,delayed-mode-unbound": {
    			podPVCs:    []*v1.PersistentVolumeClaim{immediateUnboundPVC, unboundPVC},
    			shouldFail: true,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  5. pkg/controller/volume/attachdetach/reconciler/reconciler_test.go

    	// When volume is added to the node, it is set to mounted by default. Then the status will be updated by checking node status VolumeInUse.
    	// Without this, the delete operation will be delayed due to mounted status
    	asw.SetVolumesMountedByNode(logger, nil, nodeName1)
    
    	dsw.DeletePod(types.UniquePodName(podName1), generatedVolumeName, nodeName1)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:14 UTC 2024
    - 72.8K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/dwarf.go

    		dwhbs := d.mkinternaltype(ctxt, dwarf.DW_ABRV_STRUCTTYPE, "bucket", keyname, valname, func(dwhb *dwarf.DWDie) {
    			// Copy over all fields except the field "data" from the generic
    			// bucket. "data" will be replaced with keys/values below.
    			d.copychildrenexcept(ctxt, dwhb, bucket, findchild(bucket, "data"))
    
    			fld := d.newdie(dwhb, dwarf.DW_ABRV_STRUCTFIELD, "keys")
    			d.newrefattr(fld, dwarf.DW_AT_type, dwhks)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  7. src/reflect/type.go

    	if ut == nil {
    		return Method{}, false
    	}
    
    	methods := ut.ExportedMethods()
    
    	// We are looking for the first index i where the string becomes >= s.
    	// This is a copy of sort.Search, with f(h) replaced by (t.nameOff(methods[h].name).name() >= name).
    	i, j := 0, len(methods)
    	for i < j {
    		h := int(uint(i+j) >> 1) // avoid overflow when computing h
    		// i ≤ h < j
    		if !(t.nameOff(methods[h].Name).Name() >= name) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/alignment/AlignmentIntegrationTest.groovy

                    }
                    module('nebula:java:2.0') {
                        byConstraint("belongs to platform aligned-group:nebula:2.0")
                        selectedByRule("proto:java replaced with nebula:java")
                        byConflictResolution("between versions 2.0 and 1.1")
                    }
                    module('org:b:1.0') {
                        module('org:c:1.0') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 59.6K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modload/init.go

    	modFiles map[module.Version]*modfile.File
    
    	modContainingCWD module.Version
    
    	workFile *modfile.WorkFile
    
    	workFileReplaceMap map[module.Version]module.Version
    	// highest replaced version of each module path; empty string for wildcard-only replacements
    	highestReplaced map[string]string
    
    	indexMu sync.Mutex
    	indices map[module.Version]*modFileIndex
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  10. cluster/gce/windows/k8s-node-setup.psm1

      #
      # When a packet from a Kubernetes service backend arrives on the destination
      # Windows node, the reverse SNAT will be applied and the source address of
      # the packet gets replaced from the pod IP to the service VIP. The packet
      # will then leave the VM and return back through hairpinning.
      #
      # When IP alias is enabled, IP forwarding is disabled for anti-spoofing;
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
Back to top