Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of about 10,000 for valve (0.09 sec)

  1. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /**
         * Get the value for the key 'search_engine.password'. <br>
         * The value is, e.g.  <br>
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getSearchEnginePassword();
    
        /**
         * Get the value for the key 'search_engine.password' as {@link Integer}. <br>
         * The value is, e.g.  <br>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Apr 11 02:34:53 UTC 2024
    - 459.2K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/provider/Property.java

         * @param value The value, can be null.
         * @return this
         * @since 5.0
         */
        Property<T> value(@Nullable T value);
    
        /**
         * Sets the property to have the same value as the given provider, replacing whatever value the property already had.
         * This property will track the value of the provider and query its value each time the value of the property is queried.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 16:06:55 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/base/MoreObjects.java

          // Put types estimated to be the most frequent first.
          if (value instanceof CharSequence) {
            return ((CharSequence) value).length() == 0;
          } else if (value instanceof Collection) {
            return ((Collection<?>) value).isEmpty();
          } else if (value instanceof Map) {
            return ((Map<?, ?>) value).isEmpty();
          } else if (value instanceof Optional) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  4. src/internal/runtime/atomic/types.go

    	Store8(&u.value, value)
    }
    
    // And takes value and performs a bit-wise
    // "and" operation with the value of u, storing
    // the result into u.
    //
    // The full process is performed atomically.
    //
    //go:nosplit
    func (u *Uint8) And(value uint8) {
    	And8(&u.value, value)
    }
    
    // Or takes value and performs a bit-wise
    // "or" operation with the value of u, storing
    // the result into u.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/net/idna/tables10.0.0.go

    	{value: 0x0000, lo: 0x0b},
    	{value: 0x0808, lo: 0x80, hi: 0x95},
    	{value: 0x3308, lo: 0x96, hi: 0x99},
    	{value: 0x0808, lo: 0x9a, hi: 0x9a},
    	{value: 0x3308, lo: 0x9b, hi: 0xa3},
    	{value: 0x0808, lo: 0xa4, hi: 0xa4},
    	{value: 0x3308, lo: 0xa5, hi: 0xa7},
    	{value: 0x0808, lo: 0xa8, hi: 0xa8},
    	{value: 0x3308, lo: 0xa9, hi: 0xad},
    	{value: 0x0040, lo: 0xae, hi: 0xaf},
    	{value: 0x0818, lo: 0xb0, hi: 0xbe},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 267.2K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/net/idna/tables11.0.0.go

    	{value: 0x3008, lo: 0x86, hi: 0x88},
    	{value: 0x0040, lo: 0x89, hi: 0x89},
    	{value: 0x3008, lo: 0x8a, hi: 0x8c},
    	{value: 0x3b08, lo: 0x8d, hi: 0x8d},
    	{value: 0x0040, lo: 0x8e, hi: 0x8f},
    	{value: 0x0008, lo: 0x90, hi: 0x90},
    	{value: 0x0040, lo: 0x91, hi: 0x96},
    	{value: 0x3008, lo: 0x97, hi: 0x97},
    	{value: 0x0040, lo: 0x98, hi: 0xa5},
    	{value: 0x0008, lo: 0xa6, hi: 0xaf},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 270.5K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/taglib/FessFunctionsTest.java

            assertEquals("", value);
    
            value = FessFunctions.maskEmail("aaa bbb ccc");
            assertEquals("aaa bbb ccc", value);
    
            value = FessFunctions.maskEmail("******@****.***");
            assertEquals("******@****.***", value);
    
            value = FessFunctions.maskEmail("******@****.***");
            assertEquals("******@****.***", value);
    
            value = FessFunctions.maskEmail("111 ******@****.*** 222");
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/apis/kubeadm/argument_test.go

    			args:         []Arg{{Name: "foo", Value: "bar1"}, {Name: "foo", Value: "bar2"}},
    			name:         "foo",
    			value:        "zz",
    			nArgs:        -1,
    			expectedArgs: []Arg{{Name: "foo", Value: "zz"}, {Name: "foo", Value: "zz"}},
    		},
    		{
    			testName:     "add new argument",
    			args:         []Arg{{Name: "foo", Value: "bar1"}, {Name: "foo", Value: "bar2"}},
    			name:         "z",
    			value:        "zz",
    			nArgs:        -1,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 16 10:27:05 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/net/idna/tables9.0.0.go

    	{value: 0x0000, lo: 0x0b},
    	{value: 0x0808, lo: 0x80, hi: 0x95},
    	{value: 0x3308, lo: 0x96, hi: 0x99},
    	{value: 0x0808, lo: 0x9a, hi: 0x9a},
    	{value: 0x3308, lo: 0x9b, hi: 0xa3},
    	{value: 0x0808, lo: 0xa4, hi: 0xa4},
    	{value: 0x3308, lo: 0xa5, hi: 0xa7},
    	{value: 0x0808, lo: 0xa8, hi: 0xa8},
    	{value: 0x3308, lo: 0xa9, hi: 0xad},
    	{value: 0x0040, lo: 0xae, hi: 0xaf},
    	{value: 0x0818, lo: 0xb0, hi: 0xbe},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 263.4K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/provider/MapProperty.java

         */
        MapProperty<K, V> value(@Nullable Map<? extends K, ? extends V> entries);
    
        /**
         * Sets the property to have the same value of the given provider, and replaces any existing value.
         *
         * This property will track the value of the provider and query its value each time the value of this property is queried.
         * When the provider has no value, this property will also have no value.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 16:25:03 UTC 2024
    - 7.7K bytes
    - Viewed (0)
Back to top