Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 304 for setValues (0.33 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/collections/AbstractIterationOrderRetainingElementSource.java

                while (i < backingList.size()) {
                    Element<T> candidate = backingList.get(i);
                    if (candidate.isRealized()) {
                        List<T> collected = candidate.getValues();
                        int j = nextSubIndex + 1;
                        while (j < collected.size()) {
                            T value = collected.get(j);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 20:04:06 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/push_transpose_through_ewise.cc

          return failure();
        }
    
        auto perm1_value = llvm::dyn_cast<DenseElementsAttr>(perm1.getValue())
                               .getValues<int32_t>();
        auto perm2_value = llvm::dyn_cast<DenseElementsAttr>(perm2.getValue())
                               .getValues<int32_t>();
    
        llvm::SmallVector<int32_t> perm1_arr(perm1_value.begin(),
                                             perm1_value.end());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  3. src/internal/fuzz/mem.go

    func (m *sharedMem) valueCopy() []byte {
    	ref := m.valueRef()
    	return bytes.Clone(ref)
    }
    
    // setValue copies the data in b into the shared memory buffer and sets
    // the length. len(b) must be less than or equal to the capacity of the buffer
    // (as returned by cap(m.value())).
    func (m *sharedMem) setValue(b []byte) {
    	v := m.valueRef()
    	if len(b) > cap(v) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 28 03:44:27 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  4. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/RequestHeader.java

            return name;
        }
    
        public void setName(final String name) {
            this.name = name;
        }
    
        public String getValue() {
            return value;
        }
    
        public void setValue(final String value) {
            this.value = value;
        }
    
        public boolean isValid() {
            if (StringUtil.isBlank(name) || (value == null)) {
                return false;
            }
    
            return true;
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/util/concurrent/AbstractTransformFuture.java

        } finally {
          function = null;
        }
    
        /*
         * If set()/setValue() throws an Error, we let it propagate. Why? The most likely Error is a
         * StackOverflowError (from deep transform(..., directExecutor()) nesting), and calling
         * setException(stackOverflowError) would fail:
         *
         * - If the stack overflowed before set()/setValue() could even store the result in the output
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/misc/ValueHolder.java

         *
         * @return 値
         */
        public T getValue() {
            return value;
        }
    
        /**
         * 値を設定します。
         *
         * @param value
         *            値
         */
        public void setValue(final T value) {
            this.value = value;
        }
    
        @Override
        public String toString() {
            return value.toString();
        }
    
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/internal/OptionLessStringsJavadocOptionFileOption.java

            return new OptionLessStringsJavadocOptionFileOption(Lists.newArrayList(value));
        }
    
        @Override
        public List<String> getValue() {
            return value;
        }
    
        @Override
        public void setValue(List<String> value) {
            if (value == null) {
                this.value.clear();
            } else {
                this.value = value;
            }
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. maven-xml-impl/src/test/java/org/apache/maven/internal/xml/XmlNodeImplTest.java

            Xpp3Dom t1s1 = new Xpp3Dom("topsub1");
            t1s1.setValue("t1s1Value");
            t1s1.setInputLocation("t1s1");
    
            t1.addChild(t1s1);
    
            // create the recessive DOM
            Xpp3Dom t2 = new Xpp3Dom("top");
            t2.setInputLocation("t2top");
    
            Xpp3Dom t2s1 = new Xpp3Dom("topsub1");
            t2s1.setValue("t2s1Value");
            t2s1.setInputLocation("t2s1");
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  9. platforms/core-runtime/build-option/src/main/java/org/gradle/internal/buildoption/ListBuildOption.java

            for (CommandLineOptionConfiguration config : commandLineOptionConfigurations) {
                if (options.hasOption(config.getLongOption())) {
                    List<String> value = options.option(config.getLongOption()).getValues();
                    applyTo(value, settings, Origin.forCommandLine(config.getLongOption()));
                }
            }
        }
    
        public abstract void applyTo(List<String> values, T settings, Origin origin);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 28 21:41:57 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/ImmutableEntry.java

      public final K getKey() {
        return key;
      }
    
      @Override
      @ParametricNullness
      public final V getValue() {
        return value;
      }
    
      @Override
      @ParametricNullness
      public final V setValue(@ParametricNullness V value) {
        throw new UnsupportedOperationException();
      }
    
      private static final long serialVersionUID = 0;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jan 19 21:29:44 UTC 2023
    - 1.7K bytes
    - Viewed (0)
Back to top