Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 80 for leastOf (0.97 sec)

  1. src/reflect/value.go

    		}
    	}
    
    	// Announce that the return values are valid.
    	// After this point the runtime can depend on the return values being valid.
    	*retValid = true
    
    	// We have to make sure that the out slice lives at least until
    	// the runtime knows the return values are valid. Otherwise, the
    	// return values might not be scanned by anyone during a GC.
    	// (out would be dead, and the return slots not yet alive.)
    	runtime.KeepAlive(out)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  2. doc/go1.17_spec.html

    implementation must:
    </p>
    
    <ul>
    	<li>Represent integer constants with at least 256 bits.</li>
    
    	<li>Represent floating-point constants, including the parts of
    	    a complex constant, with a mantissa of at least 256 bits
    	    and a signed binary exponent of at least 16 bits.</li>
    
    	<li>Give an error if unable to represent an integer constant
    	    precisely.</li>
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  3. pkg/apis/batch/validation/validation_test.go

    						Rules: []batch.SuccessPolicyRule{},
    					},
    				},
    			},
    			opts: JobValidationOptions{RequirePrefixedLabels: true},
    		},
    		`spec.successPolicy.rules: Required value: at least one rules must be specified when the successPolicy is specified`: {
    			job: batch.Job{
    				ObjectMeta: validJobObjectMeta,
    				Spec: batch.JobSpec{
    					Selector:       validGeneratedSelector,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 124.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

          if (attrs && !attrs.empty()) {
            ++entry_func_count;
          }
        }
    
        // Verify that module has a least one enrty function.
        if (entry_func_count == 0) {
          return emitError(UnknownLoc::get(context),
                           "should have a least one entry function"),
                 false;
        }
      }
    
      for (auto fn : module.getOps<FuncOp>()) {
        if (!llvm::hasSingleElement(fn)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  5. cmd/metrics-v2.go

    	return MetricDescription{
    		Namespace: namespace,
    		Subsystem: replicationSubsystem,
    		Name:      lastMinFailedBytes,
    		Help:      "Total number of bytes failed at least once to replicate in the last full minute",
    		Type:      gaugeMetric,
    	}
    }
    
    func getRepFailedOperationsLastMinuteMD(namespace MetricNamespace) MetricDescription {
    	return MetricDescription{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

      if (axis_i < 0) {
        axis_i += params_rank;
      }
    
      // params must be at least rank axis + 1
      if (params_rank < axis_i + 1) {
        emitError(result.location, "params must be at least rank axis + 1");
      }
    
      int64_t batch_dims_i = batch_dims.getInt();
      if (batch_dims_i < 0) {
        batch_dims_i += indices_rank;
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  7. pkg/controller/garbagecollector/garbagecollector_test.go

    		defer workerLock.Unlock()
    		close(workerLockAcquired)
    	}()
    	select {
    	case <-workerLockAcquired:
    		return nil
    	case <-time.After(t):
    		return fmt.Errorf("workerLock blocked for at least %v", t)
    	}
    }
    
    type fakeServerResources struct {
    	PreferredResources []*metav1.APIResourceList
    	Error              error
    	Lock               sync.Mutex
    	InterfaceUsedCount int
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  8. cmd/bucket-replication.go

    			continue
    		}
    		tgtClnt := globalBucketTargetSys.GetRemoteTargetClient(bucket, tgtEntry.Arn)
    		if tgtClnt == nil {
    			// Skip stale targets if any and log them to be missing at least once.
    			replLogOnceIf(ctx, fmt.Errorf("failed to get target for bucket:%s arn:%s", bucket, tgtEntry.Arn), tgtEntry.Arn)
    			sendEvent(eventArgs{
    				EventName:  event.ObjectReplicationNotTracked,
    				BucketName: bucket,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  9. cmd/site-replication.go

    		duration := time.Duration(r.Float64() * float64(time.Minute))
    		if duration < time.Second {
    			// Make sure to sleep at least a second to avoid high CPU ticks.
    			duration = time.Second
    		}
    		time.Sleep(duration)
    	}
    	c.RLock()
    	defer c.RUnlock()
    	if c.enabled {
    		logger.Info("Cluster replication initialized")
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/cache/LocalCache.java

       * and accesses that were performed on the map. The queue is drained on writes and when it exceeds
       * its capacity threshold.
       *
       * The Least Recently Used page replacement algorithm was chosen due to its simplicity, high hit
       * rate, and ability to be implemented with O(1) time complexity. The initial LRU implementation
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
Back to top