Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for Tolerance (0.11 sec)

  1. maven-model-builder/src/test/resources/dag.txt

    	quarkus/test-framework/junit5/pom.xml
    quarkus/extensions/smallrye-fault-tolerance/deployment/pom.xml
    	quarkus/core/deployment/pom.xml
    	quarkus/extensions/arc/deployment/pom.xml
    	quarkus/extensions/smallrye-context-propagation/deployment/pom.xml
    	quarkus/extensions/mutiny/deployment/pom.xml
    	quarkus/extensions/smallrye-fault-tolerance/runtime/pom.xml
    	quarkus/test-framework/junit5-internal/pom.xml
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jan 15 16:49:26 UTC 2024
    - 224K bytes
    - Viewed (0)
  2. pkg/controller/podautoscaler/horizontal_test.go

    	// i.e. .60 * 20 -> scaled down expectation.
    	finalPods := int32(math.Ceil(resourcesUsedRatio * float64(startPods)))
    
    	// To breach tolerance we will create a utilization ratio difference of tolerance to usageRatioToleranceValue)
    	tc1 := testCase{
    		minReplicas:             0,
    		maxReplicas:             1000,
    		specReplicas:            startPods,
    		statusReplicas:          startPods,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

        mlir::TFL::NumericVerifyOp op, const std::vector<int32_t>& operands,
        const std::vector<int32_t>& results) {
      float tolerance = op.getTolerance().convertToFloat();
      bool log_if_failed = op.getLogIfFailed();
      auto fbb = std::make_unique<flexbuffers::Builder>();
      fbb->Map([&]() {
        fbb->Float("tolerance", tolerance);
        fbb->Bool("log_if_failed", log_if_failed);
      });
      fbb->Finish();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (2)
  4. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

        above tolerance exist. If log_if_failed = false, then it doesn't care about
        errors.
      }];
    
      let arguments = (ins
        TFL_TensorOf<[QI8, QUI8, QI16, F16, TFL_Quint8]>:$input,
        TFL_TensorOf<[F32]>:$ref,
    
        // Attributes
        DefaultValuedOptionalAttr<F32Attr, "0.1">:$tolerance,
        DefaultValuedOptionalAttr<BoolAttr, "false">:$log_if_failed
      );
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  5. src/net/http/server.go

    		defer func() {
    			c.rwc.SetWriteDeadline(time.Now().Add(d))
    		}()
    	}
    
    	c.r.setReadLimit(c.server.initialReadLimitSize())
    	if c.lastMethod == "POST" {
    		// RFC 7230 section 3 tolerance for old buggy clients.
    		peek, _ := c.bufr.Peek(4) // ReadRequest will get err below
    		c.bufr.Discard(numLeadingCRorLF(peek))
    	}
    	req, err := readRequest(c.bufr)
    	if err != nil {
    		if c.r.hitReadLimit() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
Back to top