Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 88 for value_ (0.21 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-linked_ptr.h

        depart();
        capture(ptr);
      }
      T* get() const { return value_; }
      T* operator->() const { return value_; }
      T& operator*() const { return *value_; }
    
      bool operator==(T* p) const { return value_ == p; }
      bool operator!=(T* p) const { return value_ != p; }
      template <typename U>
      bool operator==(linked_ptr<U> const& ptr) const {
        return value_ == ptr.get();
      }
      template <typename U>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-linked_ptr.h

        depart();
        capture(ptr);
      }
      T* get() const { return value_; }
      T* operator->() const { return value_; }
      T& operator*() const { return *value_; }
    
      bool operator==(T* p) const { return value_ == p; }
      bool operator!=(T* p) const { return value_ != p; }
      template <typename U>
      bool operator==(linked_ptr<U> const& ptr) const {
        return value_ == ptr.get();
      }
      template <typename U>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/core-plugins/project_report_plugin.adoc

    The projects to generate the reports for. _Default value_: A one element set with the project the plugin was applied to.
    
    `projectReportDirName` — `String`::
    The name of the directory to generate the project report into, relative to the reports directory. _Default value_: `"project"`.
    
    `projectReportDir` — `File` (read-only)::
    The directory to generate the project report into. _Default value_: `__reportsDir__/__projectReportDirName__`.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/core-plugins/war_plugin.adoc

    [[sec:war_convention_properties]]
    == Convention properties (deprecated)
    
    `webAppDirName` — `String`::
    _Default value_: `src/main/webapp`
    +
    The name of the web application source directory, relative to the project directory.
    
    `webAppDir` — (read-only) `File`::
    _Default value_: `$webAppDirName`, e.g. _src/main/webapp_
    +
    The path to the web application source directory.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 20:23:16 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  5. subprojects/core-api/src/test/groovy/org/gradle/api/internal/provider/views/MapPropertyMapViewTest.groovy

            when:
            map.putAll(["first": "value1", "second": "value2", "third": "value3", "forth": "value4", "fifth": "value5"])
            map.retainAll { it.key in ["first", "third", "forth"] }
    
            then:
            mapProperty.get() == ["first": "value1", "third": "value3", "forth": "value4"]
        }
    
        def "contains operations work"() {
            given:
            mapProperty.put("first", "value1")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 15:31:28 UTC 2024
    - 5K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/misc/Tuple5.java

         */
        public Tuple5(final T1 value1, final T2 value2, final T3 value3, final T4 value4, final T5 value5) {
            this.value1 = value1;
            this.value2 = value2;
            this.value3 = value3;
            this.value4 = value4;
            this.value5 = value5;
        }
    
        /**
         * 1番目の値を返します。
         *
         * @return 1番目の値
         */
        public T1 getValue1() {
            return value1;
        }
    
        /**
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/core/misc/Tuple4.java

         * インスタンスを構築します。
         *
         * @param value1
         *            1番目の値
         * @param value2
         *            2番目の値
         * @param value3
         *            3番目の値
         * @param value4
         *            4番目の値
         */
        public Tuple4(final T1 value1, final T2 value2, final T3 value3, final T4 value4) {
            this.value1 = value1;
            this.value2 = value2;
            this.value3 = value3;
            this.value4 = value4;
        }
    
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  8. platforms/core-runtime/build-option/src/test/groovy/org/gradle/internal/buildoption/DefaultInternalOptionsTest.groovy

            value2.explicit
    
            def value3 = options.getOption(new InternalFlag("prop3", true))
            !value3.get()
            value3.explicit
    
            def value4 = options.getOption(new InternalFlag("prop4", false))
            value4.get()
            value4.explicit
        }
    
        def "uses default for boolean option when system property is not set"() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:02:02 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/core/misc/Tuple3.java

         *            2番目の値
         * @param value3
         *            3番目の値
         */
        public Tuple3(final T1 value1, final T2 value2, final T3 value3) {
            this.value1 = value1;
            this.value2 = value2;
            this.value3 = value3;
        }
    
        /**
         * 1番目の値を返します。
         *
         * @return 1番目の値
         */
        public T1 getValue1() {
            return value1;
        }
    
        /**
         * 1番目の値を設定します。
         *
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/suggest/settings/BadWordSettingsTest.java

            String value1 = "a";
            String value2 = "b";
            String value3 = "c";
            settings.badword().add(value1);
            settings.badword().add(value2);
            settings.badword().add(value3);
            assertEquals(3, settings.badword().get(false).length);
            assertEquals(value1, settings.badword().get(false)[0]);
            assertEquals(value2, settings.badword().get(false)[1]);
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 4.4K bytes
    - Viewed (0)
Back to top