Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,114 for genValue (0.14 sec)

  1. guava/src/com/google/common/collect/SparseImmutableTable.java

        ImmutableMap<C, V> row = rowEntry.getValue();
        int columnIndex = cellColumnInRowIndices[index];
        Entry<C, V> colEntry = row.entrySet().asList().get(columnIndex);
        return cellOf(rowEntry.getKey(), colEntry.getKey(), colEntry.getValue());
      }
    
      @Override
      V getValue(int index) {
        int rowIndex = cellRowIndices[index];
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Nov 30 21:54:06 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/tpu_metadata_utils.cc

      if (!step_marker_location.getValue().empty() &&
          !xla::DebugOptions::StepMarkerLocation_Parse(
              std::string(step_marker_location.getValue()), &location))
        return op.emitOpError(llvm::formatv("bad '{0}' attribute with value '{1}'",
                                            kStepMarkerLocationAttr,
                                            step_marker_location.getValue()));
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/PluginsMetadataGenerator.java

                                String groupId = root.getChild("groupId").getValue();
                                String artifactId = root.getChild("artifactId").getValue();
                                String goalPrefix = root.getChild("goalPrefix").getValue();
                                String name = root.getChild("name").getValue();
                                return new PluginInfo(groupId, artifactId, goalPrefix, name);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/filter/EncodingFilter.java

                    parameterMap.putAll(getParameterMapFromQueryString(req, entry.getValue()));
                    for (final Map.Entry<String, String[]> paramEntry : parameterMap.entrySet()) {
                        final String[] values = paramEntry.getValue();
                        if (values == null) {
                            continue;
                        }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  5. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/NormalizedPathChangeDetector.java

                Entry<FileSystemLocationFingerprint, FilePathWithType> entry = iterator.next();
                FileSystemLocationFingerprint previousFingerprint = entry.getKey();
                FilePathWithType pathWithType = entry.getValue();
    
                Change change = getChange(propertyTitle, addedFilesByNormalizedPath, previousFingerprint, pathWithType);
                if (!visitor.visitChange(change)) {
                    return false;
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  6. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/measure/DataSeries.java

            BigDecimal sumSquares = BigDecimal.ZERO;
            Units<Q> baseUnits = average.getUnits().getBaseUnits();
            BigDecimal averageValue = average.toUnits(baseUnits).getValue();
            for (Amount<Q> amount : this) {
                BigDecimal diff = amount.toUnits(baseUnits).getValue();
                diff = diff.subtract(averageValue);
                diff = diff.multiply(diff);
                sumSquares = sumSquares.add(diff);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/ManagedModelMapIntegrationTest.groovy

        def "rule can create a map of model elements"() {
            when:
            buildScript '''
                @Managed
                interface Thing extends Named {
                  void setValue(String value)
                  String getValue()
                }
    
                @Managed
                interface Container {
                  ModelMap<Thing> getThings();
                }
    
                class Rules extends RuleSource {
    
                  @Model
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/ResolutionResultProvider.java

                    return transformer.apply(ResolutionResultProvider.this.getTaskDependencyValue());
                }
    
                @Override
                public E getValue() {
                    return transformer.apply(ResolutionResultProvider.this.getValue());
                }
            };
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Jan 21 03:08:51 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  9. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/FormatSupport.java

        }
    
        public static Number getDifferenceRatio(DataSeries<Duration> baselineVersion, DataSeries<Duration> currentVersion) {
            double base = baselineVersion.getMedian().getValue().doubleValue();
            double current = currentVersion.getMedian().getValue().doubleValue();
            return (current - base) / base;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/utils/perception_ops_utils.cc

      if (!padding) {
        return func_.emitWarning() << "'padding' attribute for " << kMaxUnpooling
                                   << " is not set or not a string";
      }
      if (padding.getValue() != "VALID" && padding.getValue() != "SAME") {
        return func_.emitWarning()
               << "Padding for " << kMaxUnpooling << " must be 'SAME' or 'VALID'";
      }
      return success();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 8.9K bytes
    - Viewed (0)
Back to top