Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 524 for getValve (0.16 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/TransformingAsyncArtifactListener.java

                    return true;
                }
                if (!artifact.getFileSource().getValue().isSuccessful()) {
                    synchronized (this) {
                        // Failed to resolve input artifact, no need to execute
                        transformedSubject = Try.failure(artifact.getFileSource().getValue().getFailure().get());
                        return false;
                    }
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/FilteredEntryMultimap.java

          K key = entry.getKey();
          Collection<V> collection = filterCollection(entry.getValue(), new ValuePredicate(key));
          if (!collection.isEmpty()
              && predicate.apply(Maps.<K, Collection<V>>immutableEntry(key, collection))) {
            if (collection.size() == entry.getValue().size()) {
              entryIterator.remove();
            } else {
              collection.clear();
            }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  3. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/java/archives/internal/DefaultManifest.java

                DefaultAttributes sectionAttributes = new DefaultAttributes();
                for (Object attributeKey : sectionEntry.getValue().keySet()) {
                    String attributeName = attributeKey.toString();
                    String attributeValue = sectionEntry.getValue().getValue(attributeName);
                    sectionAttributes.put(attributeName, attributeValue);
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/WorkNodeCodec.kt

            }
            // Note that using the ImmutableSet retains the original ordering of entry nodes.
            val entryNodes = ImmutableSet.builder<Node>()
            readCollection {
                entryNodes.add(nodesById.getValue(readSmallInt()))
            }
            nodes.forEach { node ->
                readSuccessorReferencesOf(node, nodesById)
                node.group = readNodeGroup(nodesById)
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  5. maven-xml-impl/src/main/java/org/apache/maven/internal/xml/XmlNodeImpl.java

        }
    
        public XmlNodeImpl(String name, String value) {
            this(name, value, null, null, null);
        }
    
        public XmlNodeImpl(XmlNode from, String name) {
            this(name, from.getValue(), from.getAttributes(), from.getChildren(), from.getInputLocation());
        }
    
        public XmlNodeImpl(
                String name, String value, Map<String, String> attributes, List<XmlNode> children, Object location) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 03 17:49:40 UTC 2024
    - 18K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/layout_optimization.cc

          // With the same permutation indices.
          auto dense_elem_attr = mlir::dyn_cast<DenseElementsAttr>(perm.getValue());
          if (!dense_elem_attr) return;
    
          if (!permutation_op) permutation_op = perm;
    
          // Check that permutation matches for all result transposes.
          if (perm.getValue() != permutation_op.getValue()) return;
    
          // Add a transpose operation for later reuse.
          transpose_ops.push_back(transpose);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/dom/fromLanguageTree/LanguageTreeToDom.kt

            override fun data(node: DeclarativeDocument.DocumentNode.PropertyNode): BlockElement = nodeMapping.getValue(node)
            override fun data(node: DeclarativeDocument.DocumentNode.ErrorNode): BlockElement = nodeMapping.getValue(node)
            override fun data(value: DeclarativeDocument.ValueNode.ValueFactoryNode): Expr = valueMapping.getValue(value)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:09 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  8. platforms/software/build-init/src/main/java/org/gradleinternal/buildinit/plugins/internal/maven/Maven2Gradle.java

                    if (configuredSource != null && configuredSource.getValue() != null && !configuredSource.getValue().trim().isEmpty()) {
                        source = configuredSource.getValue();
                    }
                    if (configuredTarget != null && configuredTarget.getValue() != null && !configuredTarget.getValue().trim().isEmpty()) {
                        target = configuredTarget.getValue();
                    }
                }
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 14 15:23:34 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/passes/insert_custom_aggregation_ops.cc

        if (!entry_function_attr) return std::nullopt;
        return entry_function_attr.getValue();
      } else {
        TF::PartitionedCallOp call_op = dyn_cast_or_null<TF::PartitionedCallOp>(op);
        const auto f_attr = call_op.getFAttr().dyn_cast<FlatSymbolRefAttr>();
        if (!f_attr) return std::nullopt;
        return f_attr.getValue();
      }
    }
    
    class InsertCustomAggregationOpsPass
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/deps/ClassSetAnalysisData.java

            for (Map.Entry<String, DependentsSet> entry : dependents.entrySet()) {
                if (entry.getValue().isDependencyToAll()) {
                    continue;
                }
                for (String dependent : entry.getValue().getAccessibleDependentClasses()) {
                    dependencies.put(dependent, entry.getKey());
                }
            }
            return dependencies;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 15:22:57 UTC 2024
    - 15.9K bytes
    - Viewed (0)
Back to top