Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of about 10,000 for value$ (0.34 sec)

  1. 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)
  2. 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)
  3. .idea/inspectionProfiles/idea_default.xml

                <option name="ACCESS_JAVADOC_REQUIRED_FOR" value="none" />
                <option name="REQUIRED_TAGS" value="" />
              </value>
            </option>
            <option name="INNER_CLASS_OPTIONS">
              <value>
                <option name="ACCESS_JAVADOC_REQUIRED_FOR" value="none" />
                <option name="REQUIRED_TAGS" value="" />
              </value>
            </option>
            <option name="METHOD_OPTIONS">
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Nov 09 20:59:03 UTC 2023
    - 32.4K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. subprojects/core-api/src/main/java/org/gradle/api/provider/MapProperty.java

         * @since 5.6
         */
        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)
  7. src/vendor/golang.org/x/net/idna/tables12.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
    - 273.5K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/util/concurrent/AtomicDouble.java

      }
    
      /**
       * Atomically sets the value to the given updated value if the current value is <a
       * href="#bitEquals">bitwise equal</a> to the expected value.
       *
       * @param expect the expected value
       * @param update the new value
       * @return {@code true} if successful. False return indicates that the actual value was not
       *     bitwise equal to the expected value.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 28 21:00:54 UTC 2022
    - 7.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/utils/tf_to_xla_attribute_utils.cc

      Value one = CreateScalarConstValue<int32_t>(builder, loc, 1);
      Value two = CreateScalarConstValue<int32_t>(builder, loc, 2);
      Value filter_size = CreateScalarConstValue<int32_t>(builder, loc, filter_sz);
      Type int32_scalar_type = zero.getType();
    
      auto scalar_add = [&](Value lhs, Value rhs) {
        return builder.create<TF::AddOp>(loc, int32_scalar_type, lhs, rhs);
      };
      auto scalar_mul = [&](Value lhs, Value rhs) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  10. guava/src/com/google/common/base/MoreObjects.java

          } else if (value instanceof OptionalInt) {
            return !((OptionalInt) value).isPresent();
          } else if (value instanceof OptionalLong) {
            return !((OptionalLong) value).isPresent();
          } else if (value instanceof OptionalDouble) {
            return !((OptionalDouble) value).isPresent();
          } else if (value instanceof Optional) {
            return !((Optional) value).isPresent();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 15.9K bytes
    - Viewed (0)
Back to top