Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 524 for getValve (0.17 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/operations/notify/BuildOperationNotificationBridge.java

            State s = state;
            if (s == null) {
                throw new IllegalStateException("state is null");
            }
    
            return s;
        }
    
        public BuildOperationNotificationValve getValve() {
            return valve;
        }
    
        /*
            Note: the intention here is to work towards not having to create new objects
            to meet the notification object interfaces.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 04:43:28 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  2. maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/PluginDescriptorBuilder.java

        private String extractGroupId(PlexusConfiguration c) {
            return c.getChild("groupId").getValue();
        }
    
        private String extractArtifactId(PlexusConfiguration c) {
            return c.getChild("artifactId").getValue();
        }
    
        private String extractVersion(PlexusConfiguration c) {
            return c.getChild("version").getValue();
        }
    
        private String extractGoalPrefix(PlexusConfiguration c) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/TreeRangeMap.java

          Range<K> range, V value, @CheckForNull Entry<Cut<K>, RangeMapEntry<K, V>> entry) {
        if (entry != null
            && entry.getValue().getKey().isConnected(range)
            && entry.getValue().getValue().equals(value)) {
          return range.span(entry.getValue().getKey());
        }
        return range;
      }
    
      @Override
      public void putAll(RangeMap<K, ? extends V> rangeMap) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 04 14:31:50 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/StandardJavadocDocletOptions.java

         */
        @Nullable @Optional @Input
        public List<String> getLinks() {
            return links.getValue();
        }
    
        public void setLinks(@Nullable List<String> links) {
            this.links.setValue(links);
        }
    
        public StandardJavadocDocletOptions links(String... links) {
            this.links.getValue().addAll(Arrays.asList(links));
            return this;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/TreeRangeMap.java

          Range<K> range, V value, @CheckForNull Entry<Cut<K>, RangeMapEntry<K, V>> entry) {
        if (entry != null
            && entry.getValue().getKey().isConnected(range)
            && entry.getValue().getValue().equals(value)) {
          return range.span(entry.getValue().getKey());
        }
        return range;
      }
    
      @Override
      public void putAll(RangeMap<K, ? extends V> rangeMap) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  6. platforms/jvm/language-jvm/src/integTest/groovy/org/gradle/api/tasks/bundling/JarIntegrationTest.groovy

            run 'jar'
    
            then:
            jar.manifest.mainAttributes.getValue('attr') == null
    
            when: "Attribute added"
            buildFile.text = jarWithManifest("attributes(attr: 'Hello')")
            run 'jar'
    
            then:
            executedAndNotSkipped ':jar'
            jar.manifest.mainAttributes.getValue('attr') == 'Hello'
    
            when: "Attribute modified"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/DenseImmutableTable.java

          int columnIndex = requireNonNull(columnKeyToIndex.get(columnKey));
          V existingValue = values[rowIndex][columnIndex];
          checkNoDuplicate(rowKey, columnKey, existingValue, cell.getValue());
          values[rowIndex][columnIndex] = cell.getValue();
          rowCounts[rowIndex]++;
          columnCounts[columnIndex]++;
          cellRowIndices[i] = rowIndex;
          cellColumnIndices[i] = columnIndex;
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Nov 30 21:54:06 UTC 2023
    - 10K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_saved_model.cc

        if (!mlir::isa<FlatSymbolRefAttr>(named_attr.getValue())) {
          return op->emitError() << "'tf_saved_model.bound_input' attribute should "
                                    "be a FlatSymbolRefAttr";
        }
        auto symbol_name =
            mlir::cast<FlatSymbolRefAttr>(named_attr.getValue()).getValue();
        auto module = op->getParentOfType<ModuleOp>();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  9. maven-xml-impl/src/test/java/org/apache/maven/internal/xml/XmlNodeImplTest.java

            assertEquals(3, item.length);
            assertEquals("one", item[0].getValue());
            assertEquals("parent", item[0].getInputLocation());
            assertEquals("two", item[1].getValue());
            assertEquals("parent", item[1].getInputLocation());
            assertEquals("three", item[2].getValue());
            assertEquals("child", item[2].getInputLocation());
        }
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/ObjectExtensionInstantiationIntegrationTest.groovy

        }
    
        def "can create instance of interface with mutable property of type #type"() {
            buildFile << """
                interface Thing {
                    ${type} getValue()
                    void setValue(${type} value)
                }
    
                extensions.create("thing", Thing)
                assert thing.value == ${defaultValue}
                thing {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 16.9K bytes
    - Viewed (0)
Back to top