Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,423 for SetValue (0.18 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/tasks/options/SingleValueOptionElement.java

        }
    
        @Override
        public void apply(Object object, List<String> parameterValues) throws TypeConversionException {
            Object arg = notationParser.parseNotation(parameterValues.get(0));
            setter.setValue(object, arg);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 10:39:11 UTC 2019
    - 2K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r44/ParameterAction.java

            return controller.getModel(CustomModel.class, CustomParameter.class, new Action<CustomParameter>() {
                @Override
                public void execute(CustomParameter customParameter) {
                    customParameter.setValue("myParameter");
                }
            });
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/bridge.cc

                                                     bool enable_inliner) {
      PassManager bridge(module.getContext());
    
      StandardPipelineOptions pipeline_options;
      pipeline_options.enable_inliner.setValue(enable_inliner);
      CreateTFStandardPipeline(bridge, pipeline_options);
    
      mlir::StatusScopedDiagnosticHandler diag_handler(
          module.getContext(), /*propagate=*/false,
          /*filter_stack=*/!VLOG_IS_ON(1));
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 09 17:16:05 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/connection/ParameterAwareBuildControllerAdapterTest.groovy

            e1.message == "${InvalidParameter.name} is not a valid parameter type. It must be an interface."
        }
    
        interface ValidParameter {
            void setValue(String value)
    
            String getValue()
    
            void setBooleanValue(boolean booleanValue)
    
            boolean isBooleanValue()
        }
    
        class InvalidParameter {
            String foo
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 19 08:15:25 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/InputTrackingState.kt

            --inputTrackingDisabledCounterForThread
        }
    }
    
    
    private
    operator fun <T> ThreadLocal<T>.getValue(thisRef: Any?, property: KProperty<*>) = get()
    
    
    private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.5K 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. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

        /** Clears the reference queues used by this segment, if any. */
        void maybeClearReferenceQueues() {}
    
        /** Sets the value of the given {@code entry}. */
        void setValue(E entry, V value) {
          this.map.entryHelper.setValue(self(), entry, value);
        }
    
        /** Returns a copy of the given {@code entry}. */
        @CheckForNull
        E copyEntry(E original, E newNext) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/credentials/HttpHeaderCredentials.java

         *
         * @return The header value. May be null.
         */
        @Nullable
        String getValue();
    
        /**
         * Sets the header value to use when authenticating.
         *
         * @param value The header value. May be null.
         */
        void setValue(@Nullable String value);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 17 09:29:35 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  9. 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)
  10. platforms/jvm/language-java/src/test/groovy/org/gradle/external/javadoc/internal/FileJavadocOptionFileOptionTest.groovy

            then:
            0 * writerContextMock._
        }
    
        def testWriteNonNullValue() throws IOException {
            final File testValue = new File("dummyTestFileValue")
            fileOption.setValue(testValue)
    
            when:
            fileOption.write(writerContextMock)
    
            then:
            1 * writerContextMock.writeValueOption(optionName, testValue.absolutePath)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 1.4K bytes
    - Viewed (0)
Back to top