Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,353 for genValue (0.19 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/snapshot/impl/AttributeDefinitionSnapshot.java

            super(value);
            this.classLoaderHasher = classLoaderHasher;
        }
    
        @Override
        public void appendToHasher(Hasher hasher) {
            hasher.putString(getValue().getName());
            Class<?> type = getValue().getType();
            ImplementationSnapshot.of(type, classLoaderHasher).appendToHasher(hasher);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/utils/export_utils.cc

      TF_RETURN_IF_ERROR(ConvertAttributes(attr.getAttrs().getValue(),
                                           /*attrs_to_ignore=*/{}, remove_ref_type,
                                           value->mutable_func()->mutable_attr()));
      return absl::OkStatus();
    }
    
    Status ConvertAttribute(const mlir::StringAttr& attr, AttrValue* value) {
      absl::string_view attr_value(attr.getValue().data(), attr.getValue().size());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/incremental/sourceparser/AbstractExpression.java

            if (expression.getType() == IncludeType.IDENTIFIER) {
                return new SimpleExpression(expression.getValue(), IncludeType.MACRO);
            }
            if (expression.getType() == IncludeType.TOKEN_CONCATENATION) {
                return new ComplexExpression(IncludeType.EXPAND_TOKEN_CONCATENATION, expression.getValue(), expression.getArguments());
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  4. guava-testlib/src/com/google/common/collect/testing/google/DerivedGoogleCollectionGenerators.java

          this.samples =
              new SampleElements<>(
                  mapSamples.e0().getValue(),
                  mapSamples.e1().getValue(),
                  mapSamples.e2().getValue(),
                  mapSamples.e3().getValue(),
                  mapSamples.e4().getValue());
        }
    
        @Override
        public SampleElements<V> samples() {
          return samples;
        }
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  5. 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)
  6. maven-xml-impl/src/main/java/org/apache/maven/internal/xml/XmlPlexusConfiguration.java

                    buf.append(getChild(i));
                }
                buf.append("</").append(getName()).append('>');
            } else if (null != getValue()) {
                buf.append('>').append(getValue()).append("</").append(getName()).append('>');
            } else {
                buf.append("/>");
            }
            return buf.append('\n').toString();
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 03 15:52:23 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top