Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of about 10,000 for value$ (0.1 sec)

  1. src/cmd/vendor/golang.org/x/text/cases/tables13.0.0.go

    	{value: 0x0024, lo: 0x94, hi: 0xa1},
    	{value: 0x0014, lo: 0xa2, hi: 0xa2},
    	{value: 0x0034, lo: 0xa3, hi: 0xa3},
    	{value: 0x0024, lo: 0xa4, hi: 0xa5},
    	{value: 0x0034, lo: 0xa6, hi: 0xa6},
    	{value: 0x0024, lo: 0xa7, hi: 0xa8},
    	{value: 0x0034, lo: 0xa9, hi: 0xa9},
    	{value: 0x0024, lo: 0xaa, hi: 0xac},
    	{value: 0x0034, lo: 0xad, hi: 0xb2},
    	{value: 0x0024, lo: 0xb3, hi: 0xb5},
    	{value: 0x0034, lo: 0xb6, hi: 0xb6},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 100.7K bytes
    - Viewed (0)
  2. platforms/ide/ide/src/main/resources/org/gradle/plugins/ide/idea/model/defaultWorkspace.xml

            <option name="LOG_EXPRESSION_ENABLED" value="false" />
            <option name="SUSPEND_POLICY" value="SuspendAll" />
            <option name="COUNT_FILTER_ENABLED" value="false" />
            <option name="COUNT_FILTER" value="0" />
            <option name="CONDITION_ENABLED" value="false" />
            <option name="CLASS_FILTERS_ENABLED" value="false" />
            <option name="INSTANCE_FILTERS_ENABLED" value="false" />
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  3. android/guava-testlib/src/com/google/common/testing/AbstractPackageSanityTests.java

      /**
       * Sets two distinct values for {@code type}. These values can be used for both null pointer
       * testing and equals testing.
       *
       * @since 17.0
       */
      protected final <T> void setDistinctValues(Class<T> type, T value1, T value2) {
        tester.setDistinctValues(type, value1, value2);
      }
    
      /** Specifies that classes that satisfy the given predicate aren't tested for sanity. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  4. src/config/eclipse/formatter/java.xml

    <setting id="org.eclipse.jdt.core.formatter.disabling_tag" value="@formatter:off"/>
    <setting id="org.eclipse.jdt.core.formatter.continuation_indentation" value="2"/>
    <setting id="org.eclipse.jdt.core.formatter.alignment_for_enum_constants" value="0"/>
    <setting id="org.eclipse.jdt.core.formatter.blank_lines_before_imports" value="1"/>
    <setting id="org.eclipse.jdt.core.formatter.blank_lines_after_package" value="1"/>
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Mar 23 21:27:06 UTC 2015
    - 30.5K bytes
    - Viewed (0)
  5. src/config/eclipse/formatter/javascript.xml

    <setting id="org.eclipse.wst.jsdt.core.formatter.indent_empty_lines" value="false"/>
    <setting id="org.eclipse.wst.jsdt.core.formatter.alignment_for_compact_if" value="16"/>
    <setting id="org.eclipse.wst.jsdt.core.formatter.brace_position_for_annotation_type_declaration" value="end_of_line"/>
    <setting id="org.eclipse.wst.jsdt.core.formatter.insert_new_line_after_annotation" value="insert"/>
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Mar 23 21:27:06 UTC 2015
    - 29.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/api/resource/amount_test.go

    		{int64Amount{value: mostPositive, scale: -1}, int64Amount{value: 1, scale: -1}, int64Amount{value: 0, scale: -1}, false},
    		{int64Amount{value: mostPositive, scale: -1}, int64Amount{value: 0, scale: -1}, int64Amount{value: mostPositive, scale: -1}, true},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 13 20:54:15 UTC 2023
    - 7K bytes
    - Viewed (0)
  7. .idea/codeStyles/Project.xml

          <option name="NAMES_COUNT_TO_USE_IMPORT_ON_DEMAND" value="999" />
          <option name="JD_ALIGN_PARAM_COMMENTS" value="false" />
          <option name="JD_ALIGN_EXCEPTION_COMMENTS" value="false" />
          <option name="JD_P_AT_EMPTY_LINES" value="false" />
          <option name="JD_KEEP_EMPTY_PARAMETER" value="false" />
          <option name="JD_KEEP_EMPTY_EXCEPTION" value="false" />
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 31 14:47:08 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/tests/keras_imagenet_main.pbtxt

        value {
          type: DT_RESOURCE
        }
      }
      attr {
        key: "_handle_dtypes"
        value {
          list {
            type: DT_FLOAT
          }
        }
      }
      attr {
        key: "_handle_shapes"
        value {
          list {
            shape {
              dim {
                size: 2048
              }
            }
          }
        }
      }
      attr {
        key: "index"
        value {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 30 02:52:54 UTC 2019
    - 1.3M bytes
    - Viewed (0)
  9. src/fmt/doc.go

    are simpler.
    
    # Printing
    
    The verbs:
    
    General:
    
    	%v	the value in a default format
    		when printing structs, the plus flag (%+v) adds field names
    	%#v	a Go-syntax representation of the value
    		(floating-point infinities and NaNs print as ±Inf and NaN)
    	%T	a Go-syntax representation of the type of the value
    	%%	a literal percent sign; consumes no value
    
    Boolean:
    
    	%t	the word true or false
    
    Integer:
    
    	%b	base 2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:56:20 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  10. platforms/core-execution/workers/src/testFixtures/groovy/org/gradle/workers/fixtures/OptionsVerifier.groovy

        }
    
        void minHeap(String value) {
            options.add(new MinHeap(value))
        }
    
        void maxHeap(String value) {
            options.add(new MaxHeap(value))
        }
    
        void jvmArgs(String value) {
            options.add(new JvmArg(value))
        }
    
        void systemProperty(String name, String value) {
            options.add(new SystemProperty(name, value))
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 6.2K bytes
    - Viewed (0)
Back to top