Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 142 for summed (0.1 sec)

  1. staging/src/k8s.io/apiserver/pkg/endpoints/request/webhook_duration.go

    	// that takes an object returned from the underlying storage layer
    	// (etcd) and performs decoding of the response object.
    	// When called multiple times, the latency incurred inside to
    	// decode func each time will be summed up.
    	DecodeTracker DurationTracker
    }
    
    type latencyTrackersKeyType int
    
    // latencyTrackersKey is the key that associates a LatencyTrackers
    // instance with the request context.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 13 22:15:37 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/math/StatsTesting.java

              + (-2.2 - MANY_VALUES_MEAN) * (-2.2 - MANY_VALUES_MEAN);
      static final double MANY_VALUES_MAX = 555.555;
      static final double MANY_VALUES_MIN = -44.44;
    
      // Doubles which will overflow if summed:
      static final double[] LARGE_VALUES = {Double.MAX_VALUE, Double.MAX_VALUE / 2.0};
      static final double LARGE_VALUES_MEAN = 0.75 * Double.MAX_VALUE;
    
      static final ImmutableList<Double> OTHER_MANY_VALUES =
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Nov 09 22:49:56 UTC 2023
    - 22.4K bytes
    - Viewed (0)
  3. .github/ISSUE_TEMPLATE/feature_addition_request.yaml

            features down to compact but powerful abstractions, and controlling feature bloat carefully.
    
    
            Guava's main yardstick for evaluating proposed features can be summed up as [utility times
            ubiquity](https://github.com/google/guava/wiki/PhilosophyExplained#utility-times-ubiquity).
    
    
            #### Utility: compare with alternatives
    
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Nov 17 18:47:47 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  4. pkg/scheduler/metrics/resources/resources.go

    		val.AsApproximateFloat64(),
    		namespace, name, nodeName, schedulerName, priority, string(resourceName), unit,
    	)
    }
    
    // podRequestsAndLimitsByLifecycle returns a dictionary of all defined resources summed up for all
    // containers of the pod. Pod overhead is added to the
    // total container resource requests and to the total container limits which have a
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 09 23:15:53 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/server/options/server_run_options.go

    	fs.IntVar(&s.MaxRequestsInFlight, "max-requests-inflight", s.MaxRequestsInFlight, ""+
    		"This and --max-mutating-requests-inflight are summed to determine the server's total concurrency limit "+
    		"(which must be positive) if --enable-priority-and-fairness is true. "+
    		"Otherwise, this flag limits the maximum number of non-mutating requests in flight, "+
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 24 21:53:51 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  6. pkg/monitoring/monitoring.go

    	recordHookMutex.Lock()
    	defer recordHookMutex.Unlock()
    	recordHooks[name] = h
    }
    
    // NewSum creates a new Sum Metric (the values will be cumulative).
    // That means that data collected by the new Metric will be summed before export.
    func NewSum(name, description string, opts ...Options) Metric {
    	knownMetrics.register(MetricDefinition{
    		Name:        name,
    		Type:        "Sum",
    		Description: description,
    	})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 24 03:31:28 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  7. tensorflow/cc/framework/gradients_test.cc

      std::vector<Tensor> outputs;
      test::GetTensors(scope_test_, {x_assign, y_assign, z_assign},
                       {grad_outputs[0]}, &outputs);
    
      // The gradients from m1 and m2 will be summed to compute the gradient
      // w.r.t y:
      // dz/dy = xT * dm1 + dm2 * zT
      test::ExpectTensorNear<double>(
          outputs[0], test::AsTensor<double>({17.5, 24.7, 26.8}, {3, 1}), 1e-5);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 15 15:13:38 UTC 2023
    - 25K bytes
    - Viewed (0)
  8. tensorflow/cc/framework/gradients.cc

      // frontier. Maps from Output -> index into `grad_outputs_`.
      std::unordered_map<Output, int, OutputHash, OutputEq> input_nodes_;
    
      // For each while loop in the graph, collects the summed gradients for each of
      // the loop's exit nodes. Note that unlike backprops_, this map contains the
      // output of SumGradients(), not the input (i.e. each exit node may have
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 22K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/TreeMultiset.java

        this.range = GeneralRange.all(comparator);
        this.header = new AvlNode<>();
        successor(header, header);
        this.rootReference = new Reference<>();
      }
    
      /** A function which can be summed across a subtree. */
      private enum Aggregate {
        SIZE {
          @Override
          int nodeAggregate(AvlNode<?> node) {
            return node.elemCount;
          }
    
          @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/Multisets.java

       * Elements are added in encounter order.
       *
       * <p>If the mapped elements contain duplicates (according to {@link Object#equals}), the element
       * will be added more than once, with the count summed over all appearances of the element.
       *
       * <p>Note that {@code stream.collect(toMultiset(function, e -> 1, supplier))} is equivalent to
       * {@code stream.map(function).collect(Collectors.toCollection(supplier))}.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 41.6K bytes
    - Viewed (0)
Back to top