Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 74 for IMMEDIATE (0.31 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

        else -> error("Unexpected ${this::class}")
    }
    
    /**
     * N.B. We don't use [containingClassOrObject] because it works only for [KtDeclaration]s,
     * and also check only the immediate (direct) parent.
     *
     * For this function, we want to find the parent [KtClassOrObject] declaration no matter
     * how far it is from the element.
     */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/x86/asm6.go

    // example, is an opcode byte (z[0]) then an asmando (which is some kind of
    // encoded addressing mode for the Yml arg), and then a single immediate byte.
    // Zilo_m is the same but a long (32-bit) immediate.
    var optab =
    // as, ytab, andproto, opcode
    [...]Optab{
    	{obj.AXXX, nil, 0, opBytes{}},
    	{AAAA, ynone, P32, opBytes{0x37}},
    	{AAAD, ynone, P32, opBytes{0xd5, 0x0a}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    		}
    		c.watcherIdx++
    	}()
    
    	if !addedWatcher {
    		// Watcher isn't really started at this point, so it's safe to just drop it.
    		//
    		// We're simulating the immediate watch termination, which boils down to simply
    		// closing the watcher.
    		return newImmediateCloseWatcher(), nil
    	}
    
    	go watcher.processInterval(ctx, cacheInterval, requiredResourceVersion)
    	return watcher, nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  8. src/runtime/runtime2.go

    	limiterEvent limiterEvent
    
    	// gcMarkWorkerMode is the mode for the next mark worker to run in.
    	// That is, this is used to communicate with the worker goroutine
    	// selected for immediate execution by
    	// gcController.findRunnableGCWorker. When scheduling other goroutines,
    	// this field must be set to gcMarkWorkerNotWorker.
    	gcMarkWorkerMode gcMarkWorkerMode
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

        checkNotNull(executor, "Executor was null.");
        // Checking isDone and listeners != TOMBSTONE may seem redundant, but our contract for
        // addListener says that listeners execute 'immediate' if the future isDone(). However, our
        // protocol for completing a future is to assign the value field (which sets isDone to true) and
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
  10. guava/src/com/google/common/util/concurrent/AbstractFuture.java

        checkNotNull(executor, "Executor was null.");
        // Checking isDone and listeners != TOMBSTONE may seem redundant, but our contract for
        // addListener says that listeners execute 'immediate' if the future isDone(). However, our
        // protocol for completing a future is to assign the value field (which sets isDone to true) and
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
Back to top