Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 241 for IMMEDIATE (0.15 sec)

  1. src/vendor/golang.org/x/text/unicode/bidi/core.go

    	// values in a way that would appear to affect the computations
    	// later in the scan, there is actually no problem. A change in the
    	// current value can only affect the value to its immediate right,
    	// and only affect it if it is ES or CS. But the current value can
    	// only change if the value to its right is not ES or CS. Thus
    	// either the current value will not change, or its change will have
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:26:23 UTC 2022
    - 29.4K bytes
    - Viewed (0)
  2. cmd/object-handlers.go

    		RespElements: extractRespElements(w),
    		UserAgent:    r.UserAgent(),
    		Host:         handlers.GetSourceIP(r),
    	})
    
    	if !remoteCallRequired && !globalTierConfigMgr.Empty() {
    		// Schedule object for immediate transition if eligible.
    		objInfo.ETag = origETag
    		enqueueTransitionImmediate(objInfo, lcEventSrc_s3CopyObject)
    		// Remove the transitioned object whose object version is being overwritten.
    		os.Sweep()
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (PanicBounds [kind] x y mem) && boundsABI(kind) == 2 => (LoweredPanicBoundsC [kind] x y mem)
    
    // Optimizations
    // Note that PPC "logical" immediates come in 0:15 and 16:31 unsigned immediate forms,
    // so ORconst, XORconst easily expand into a pair.
    
    // Include very-large constants in the const-const case.
    (AND (MOVDconst [c]) (MOVDconst [d])) => (MOVDconst [c&d])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  4. internal/config/notify/parse.go

    			ExchangeType:      env.Get(exchangeTypeEnv, kv.Get(target.AmqpExchangeType)),
    			DeliveryMode:      uint8(deliveryMode),
    			Mandatory:         env.Get(mandatoryEnv, kv.Get(target.AmqpMandatory)) == config.EnableOn,
    			Immediate:         env.Get(immediateEnv, kv.Get(target.AmqpImmediate)) == config.EnableOn,
    			Durable:           env.Get(durableEnv, kv.Get(target.AmqpDurable)) == config.EnableOn,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 46.4K bytes
    - Viewed (0)
  5. cmd/xl-storage-disk-id-check.go

    		if err != nil || len(b) != len(toWrite) {
    			continue
    		}
    
    		err = p.storage.Delete(context.Background(), minioMetaTmpBucket, fn, DeleteOptions{
    			Recursive: false,
    			Immediate: false,
    		})
    
    		if err == nil {
    			logger.Event(context.Background(), "healthcheck",
    				"node(%s): Read/Write/Delete successful, bringing drive %s online", globalLocalNodeName, p.storage.String())
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/Iterables.java

            }
            final Iterator<T> iterator = iterable.iterator();
    
            Iterators.advance(iterator, numberToSkip);
    
            /*
             * We can't just return the iterator because an immediate call to its
             * remove() method would remove one of the skipped elements instead of
             * throwing an IllegalStateException.
             */
            return new Iterator<T>() {
              boolean atStart = true;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 42.8K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/Iterables.java

            }
            final Iterator<T> iterator = iterable.iterator();
    
            Iterators.advance(iterator, numberToSkip);
    
            /*
             * We can't just return the iterator because an immediate call to its
             * remove() method would remove one of the skipped elements instead of
             * throwing an IllegalStateException.
             */
            return new Iterator<T>() {
              boolean atStart = true;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 42.5K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/kube/controller/controller.go

    ) {
    	wrappedHandler := func(prev, curr T, event model.Event) error {
    		curr = informer.Get(curr.GetName(), curr.GetNamespace())
    		if controllers.IsNil(curr) {
    			// this can happen when an immediate delete after update
    			// the delete event can be handled later
    			return nil
    		}
    		return handler(prev, curr, event)
    	}
    	// Pre-build our metric types to avoid recompute them on each event
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/rewrite.go

    	case 0:
    		return false // ±0
    	case 0xff:
    		return false // ±inf
    	case 0xfe:
    		return false // exponent is not representable
    	default:
    		return true
    	}
    }
    
    // check if an immediate can be directly encoded into an ARM's instruction.
    func isARMImmRot(v uint32) bool {
    	for i := 0; i < 16; i++ {
    		if v&^0xff == 0 {
    			return true
    		}
    		v = v<<2 | v>>30
    	}
    
    	return false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  10. pkg/printers/internalversion/printers_test.go

    				},
    				Provisioner: "kubernetes.io/glusterfs",
    			},
    			expected: []metav1.TableRow{{Cells: []interface{}{"sc1", "kubernetes.io/glusterfs", "Delete",
    				"Immediate", false, "0s"}}},
    		},
    		{
    			sc: storage.StorageClass{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:              "sc2",
    					CreationTimestamp: metav1.Time{Time: time.Now().Add(-3e11)},
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
Back to top