Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 608 for paid (0.04 sec)

  1. subprojects/build-events/src/main/java/org/gradle/internal/build/event/DefaultBuildEventsListenerRegistry.java

            }
    
            @Override
            public void finished(BuildOperationDescriptor buildOperation, OperationFinishEvent finishEvent) {
                queue(Pair.of(buildOperation, finishEvent));
            }
    
            @Override
            protected void handle(Pair<BuildOperationDescriptor, OperationFinishEvent> message) {
                listenerProvider.get().finished(message.left, message.right);
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 19:34:01 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/ComponentState.java

    import org.gradle.api.internal.artifacts.ivyservice.resolveengine.result.ComponentSelectionReasonInternal;
    import org.gradle.api.internal.artifacts.ivyservice.resolveengine.result.ComponentSelectionReasons;
    import org.gradle.internal.Pair;
    import org.gradle.internal.component.external.model.DefaultImmutableCapability;
    import org.gradle.internal.component.model.ComponentGraphResolveMetadata;
    import org.gradle.internal.component.model.ComponentGraphResolveState;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 17K bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/CollectionUtils.java

                if (rightValue == null) {
                    setDiff.leftOnly.add(leftEntry.getValue());
                } else {
                    Pair<T, T> pair = Pair.of(leftEntry.getValue(), rightValue);
                    setDiff.common.add(pair);
                }
            }
    
            for (T rightValue : indexedRight.values()) {
                setDiff.rightOnly.add(rightValue);
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/dilated_conv.h

      // Expand + Squeeze op.
      if (llvm::isa<TF::ExpandDimsOp>(producer_op)) {
        if (!llvm::isa<TF::SqueezeOp>(consumer_op)) {
          // Expand/Squeeze op must come in pair.
          return rewriter.notifyMatchFailure(
              op, "ExpandDimsOp and SqueezeOp should come in pair");
        }
        expand_op = llvm::cast<TF::ExpandDimsOp>(producer_op);
        squeeze_op = llvm::cast<TF::SqueezeOp>(consumer_op);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 20K bytes
    - Viewed (0)
  5. guava/src/com/google/common/math/PairedStats.java

      }
    
      /**
       * Returns the population covariance of the values. The count must be non-zero.
       *
       * <p>This is guaranteed to return zero if the dataset contains a single pair of finite values. It
       * is not guaranteed to return zero when the dataset consists of the same pair of values multiple
       * times, due to numerical errors.
       *
       * <h3>Non-finite values</h3>
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 17:02:53 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  6. src/cmd/internal/objabi/reloctype.go

    	// R_RISCV_CALL resolves a 32 bit PC-relative address for an AUIPC + JALR
    	// instruction pair.
    	R_RISCV_CALL
    
    	// R_RISCV_PCREL_ITYPE resolves a 32 bit PC-relative address for an
    	// AUIPC + I-type instruction pair.
    	R_RISCV_PCREL_ITYPE
    
    	// R_RISCV_PCREL_STYPE resolves a 32 bit PC-relative address for an
    	// AUIPC + S-type instruction pair.
    	R_RISCV_PCREL_STYPE
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 17:26:07 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/math/PairedStats.java

      }
    
      /**
       * Returns the population covariance of the values. The count must be non-zero.
       *
       * <p>This is guaranteed to return zero if the dataset contains a single pair of finite values. It
       * is not guaranteed to return zero when the dataset consists of the same pair of values multiple
       * times, due to numerical errors.
       *
       * <h3>Non-finite values</h3>
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 17:02:53 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/transforms/prepare_quantize_dynamic_range.cc

    // A boolean attribute used to describe whether input activations need to be
    // asymmetrically quantized.
    constexpr char kAsymmetricQuantizeInputsAttr[] = "asymmetric_quantize_inputs";
    
    using QuantizationUnits = llvm::SetVector<std::pair<Operation*, int>>;
    
    // Applies prepare dynamic range quantization on the model in TFL dialect.
    // This pass runs before the quantization pass and apply preprocess if
    // applicable.
    class PrepareDynamicRangeQuantizePass
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/stablehlo/passes/quantize_weight.cc

    // the declarations in passes.h.
    #define GEN_PASS_DEF_QUANTIZEWEIGHTPASS
    #include "tensorflow/compiler/mlir/quantization/stablehlo/passes/passes.h.inc"
    
    namespace {
    
    using QuantizationUnits = llvm::SetVector<std::pair<Operation*, int>>;
    using mlir::stablehlo::ConstantOp;
    using mlir::stablehlo::ConvertOp;
    using ::stablehlo::quantization::QuantizationComponentSpec;
    
    // Min/Max values used for creating ConstantOp.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/util/CollectionUtils.java

                if (rightValue == null) {
                    setDiff.leftOnly.add(leftEntry.getValue());
                } else {
                    Pair<T, T> pair = Pair.of(leftEntry.getValue(), rightValue);
                    setDiff.common.add(pair);
                }
            }
    
            for (T rightValue : indexedRight.values()) {
                setDiff.rightOnly.add(rightValue);
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 11:17:19 UTC 2024
    - 26K bytes
    - Viewed (0)
Back to top