Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 116 for actor (0.11 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/constant_fold.cc

    // allowed if one of the following conditions are met:
    // 1. size of results is less than a certain threshold
    // (`kResultsSizeThreshold`), or
    // 2. size of results is within a factor (`kSizeFactor`) of size of operands, or
    // TODO(b/157226221): Look into other heuristics for constant fold policy.
    static bool IsFoldedByDefaultPolicy(Operation* inst) {
      bool has_unknown_shape = false;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  2. pkg/kubelet/kuberuntime/kuberuntime_container_linux.go

    			// It will be set based on formula:
    			// `memory.high=floor[(requests.memory + memory throttling factor * (limits.memory or node allocatable memory - requests.memory))/pageSize] * pageSize`
    			// where default value of memory throttling factor is set to 0.9
    			// More info: https://git.k8s.io/enhancements/keps/sig-node/2570-memory-qos
    			memoryHigh := int64(0)
    			if memoryLimit != 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  3. pkg/controller/certificates/certificate_controller.go

    			workqueue.NewTypedMaxOfRateLimiter[string](
    				workqueue.NewTypedItemExponentialFailureRateLimiter[string](200*time.Millisecond, 1000*time.Second),
    				// 10 qps, 100 bucket size.  This is only for retry speed and its only the overall factor (not per item)
    				&workqueue.TypedBucketRateLimiter[string]{Limiter: rate.NewLimiter(rate.Limit(10), 100)},
    			),
    			workqueue.TypedRateLimitingQueueConfig[string]{
    				Name: "certificate",
    			},
    		),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_utils.h

        return success();
      }
    };
    
    // Given a quantized type `input`, magnifying its scales by the factor stored in
    // `factor`. If `input` isn't a quantized type or the `factor` doesn't match the
    // dimension size of `input` or isn't floating-point, nullptr will be returned.
    TypeAttr RescaleQuantizedType(Type input, Attribute factor);
    
    // Converts the min/max/num_bits/narrow_range information to a
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  5. src/runtime/map_fast64.go

    			goto done
    		}
    		ovf := b.overflow(t)
    		if ovf == nil {
    			break
    		}
    		b = ovf
    	}
    
    	// Did not find mapping for key. Allocate new cell & add entry.
    
    	// If we hit the max load factor or we have too many overflow buckets,
    	// and we're not already in the middle of growing, start growing.
    	if !h.growing() && (overLoadFactor(h.count+1, h.B) || tooManyOverflowBuckets(h.noverflow, h.B)) {
    		hashGrow(t, h)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfr/ir/tfr_ops.td

      }];
    }
    
    def TFR_TFRQuantRescaleOp : TFR_Op<"quant_rescale", [Pure]> {
      let description = [{
       The `quant_rescale` rescales the elements of the integer tensor by the
       floating-point rescale factor. This op needs to be legalized to the preferred
       operations of the backends.
    
        Example:
    
        ```mlir
        %3 = tfr.quant_rescale(%2, %1, %0) :
            (tfr.tensor, tfr.tensor, i64) -> (tfr.tensor)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 10:54:29 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r65/ToolingApiShutdownCrossVersionSpec.groovy

    @Timeout(120)
    @Retry(count = 3)
    class ToolingApiShutdownCrossVersionSpec extends CancellationSpec {
    
        def waitFor
    
        def setup() {
            waitFor = new PollingConditions(timeout: 60, initialDelay: 0, factor: 1.25)
            toolingApi.requireIsolatedDaemons()
        }
    
        @TargetGradleVersion(">=6.5")
        def "disconnect during build stops daemon"() {
            setup:
            buildFile.text = """
                task hang {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  8. pkg/controller/namespace/namespace_controller.go

    		workqueue.NewTypedItemExponentialFailureRateLimiter[string](5*time.Millisecond, 60*time.Second),
    		// 10 qps, 100 bucket size.  This is only for retry speed and its only the overall factor (not per item)
    		&workqueue.TypedBucketRateLimiter[string]{Limiter: rate.NewLimiter(rate.Limit(10), 100)},
    	)
    }
    
    // enqueueNamespace adds an object to the controller work queue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/feature/feature_support_checker.go

    	// start with 10 ms, multiply by 2 each step, until 15 s and stays on 15 seconds.
    	delayFunc := wait.Backoff{
    		Duration: 10 * time.Millisecond,
    		Cap:      15 * time.Second,
    		Factor:   2.0,
    		Steps:    11}.DelayFunc()
    	f.lock.Lock()
    	defer f.lock.Unlock()
    	for _, ep := range c.Endpoints() {
    		if _, found := f.checkingEndpoint[ep]; found {
    			continue
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 11:56:42 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    	} else {
    		factor = fmt.Sprintf("%.1fx", exceedFactor)
    	}
    	return fmt.Sprintf("%s exceeds budget by factor of %s (try simplifying the rule, or adding maxItems, maxProperties, and maxLength where arrays, maps, and strings are declared)", costName, factor)
    }
    
    var newlineMatcher = regexp.MustCompile(`[\n\r]+`) // valid newline chars in CEL grammar
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
Back to top