Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 304 for setValues (0.15 sec)

  1. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/java/archives/ManifestMergeDetails.java

         * of the source for the merge.
         */
        String getValue();
    
        /**
         * Set's the value for the key of the manifest after the merge takes place.
         */
        void setValue(String value);
    
        /**
         * Excludes this key from being in the manifest after the merge.
         */
        void exclude();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  2. maven-core/src/test/java/org/apache/maven/project/harness/Xpp3DomNodePointer.java

        public boolean isCollection() {
            return false;
        }
    
        @Override
        public boolean isLeaf() {
            return node.getChildren().isEmpty();
        }
    
        @Override
        public void setValue(Object value) {
            throw new UnsupportedOperationException();
        }
    
        @Override
        public NodeIterator childIterator(NodeTest test, boolean reverse, NodePointer startWith) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/test/testdata/gen/cmpConstGen.go

    		max = max.SetInt64(maxI16)
    	case "int8":
    		min = min.SetInt64(minI8)
    		max = max.SetInt64(maxI8)
    	default:
    		panic("unexpected type")
    	}
    	return cmp(min, "<=", val) && cmp(val, "<=", max)
    }
    
    func getValues(typ string) []*big.Int {
    	Uint := func(v uint64) *big.Int { return big.NewInt(0).SetUint64(v) }
    	Int := func(v int64) *big.Int { return big.NewInt(0).SetInt64(v) }
    	values := []*big.Int{
    		// limits
    		Uint(maxU64),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 20 02:13:02 UTC 2022
    - 6.4K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/MutableClassDetails.java

        }
    
        @Override
        public List<Method> getAllMethods() {
            return methods;
        }
    
        @Override
        public Collection<Method> getInstanceMethods() {
            return instanceMethods.getValues();
        }
    
        @Override
        public List<Field> getInstanceFields() {
            return instanceFields;
        }
    
        public Set<Class<?>> getSuperTypes() {
            return superTypes;
        }
    
        /*
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/execution/commandline/CommandLineTaskConfigurer.java

                    if (parsed.hasOption(name)) {
                        ParsedCommandLineOption o = parsed.option(name);
                        try {
                            commandLineOptionDescriptor.apply(task, o.getValues());
                        } catch (TypeConversionException ex) {
                            throw new TaskConfigurationException(task.getPath(),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 4K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/helper/LabelTypeHelper.java

            for (final LabelType labelType : labelTypeList) {
                final LabelTypeItem item = new LabelTypeItem();
                item.setLabel(labelType.getName());
                item.setValue(labelType.getValue());
                item.setPermissions(labelType.getPermissions());
                item.setVirtualHost(labelType.getVirtualHost());
                item.setLocale(labelType.getLocale());
                itemList.add(item);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/es/config/bsentity/BsCrawlingInfoParam.java

            this.key = value;
        }
    
        public String getValue() {
            checkSpecifiedProperty("value");
            return convertEmptyToNull(value);
        }
    
        public void setValue(String value) {
            registerModifiedProperty("value");
            this.value = value;
        }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  8. android/guava-testlib/test/com/google/common/collect/testing/MapTestSuiteBuilderTests.java

                          return new Entry<String, String>() {
    
                            @Override
                            public String setValue(String value) {
                              checkNotNull(value);
                              return next.setValue(value);
                            }
    
                            @Override
                            public String getValue() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 19 19:24:36 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/stablehlo/transforms/composite_utils.td

    // When given a DenseIntElementsAttr containing I64 elements, this extracts
    // one I32IntegerAttr from the given index.
    class GetI32At<int index>: NativeCodeCall<
      "$_builder.getI32IntegerAttr(static_cast<int32_t>(*($0.getValues<int64_t>().begin() + " # index #")))">;
    
    def GetI32DenseAttr: NativeCodeCall<
      "DenseI64AttrToI32Attr($0, $_builder)">;
    
    // Receives a composite DictionaryAttr and returns the value of the Attribute
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 19:05:30 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

      "$0.isa<DenseElementsAttr>() && "
      "$0.cast<DenseElementsAttr>().getNumElements() == 1 && "
      "(($0.cast<DenseElementsAttr>().getValues<APFloat>()[0].isLargest() && "
      "$0.cast<DenseElementsAttr>().getValues<APFloat>()[0].isNegative()) || "
      "$0.cast<DenseElementsAttr>().getValues<APFloat>()[0].isNegInfinity())">>;
    
    def L2NormValidReduceIndex : Constraint<CPred<
      "L2NormalizeReduceAxis($0, $1.cast<DenseElementsAttr>())">>;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
Back to top