Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for inclusive (0.38 sec)

  1. android/guava/src/com/google/common/collect/Maps.java

            boolean fromInclusive,
            @ParametricNullness K toKey,
            boolean toInclusive) {
          return asMap(set.subSet(fromKey, fromInclusive, toKey, toInclusive), function);
        }
    
        @Override
        public NavigableMap<K, V> headMap(@ParametricNullness K toKey, boolean inclusive) {
          return asMap(set.headSet(toKey, inclusive), function);
        }
    
        @Override
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed May 01 18:44:57 GMT 2024
    - 159.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java

        /** The key of the message: {item} must be less than ${inclusive == true ? 'or equal to ' : ''}{value}. */
        public static final String CONSTRAINTS_DecimalMax_MESSAGE = "{constraints.DecimalMax.message}";
    
        /** The key of the message: {item} must be greater than ${inclusive == true ? 'or equal to ' : ''}{value}. */
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 119.9K bytes
    - Viewed (0)
  3. cmd/server_test.go

    	// its expected to fail with error message "InvalidArgument".
    	verifyError(c, response4, "InvalidArgument", "Part number must be an integer between 1 and 10000, inclusive", http.StatusBadRequest)
    }
    
    // TestObjectValidMD5 - First uploads an object with a valid Content-Md5 header and verifies the status,
    // then upload an object in a wrong Content-Md5 and validate the error response.
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Feb 22 06:26:06 GMT 2024
    - 108K bytes
    - Viewed (0)
  4. doc/go1.17_spec.html

    the digits in the corresponding base.
    </p>
    
    <p>
    Although these representations all result in an integer, they have
    different valid ranges.  Octal escapes must represent a value between
    0 and 255 inclusive.  Hexadecimal escapes satisfy this condition
    by construction. The escapes <code>\u</code> and <code>\U</code>
    represent Unicode code points so within them some values are illegal,
    HTML
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  5. tensorflow/c/c_api.cc

    extern "C" {
    
    TF_OperationDescription* TF_NewOperationLocked(TF_Graph* graph,
                                                   const char* op_type,
                                                   const char* oper_name)
        TF_EXCLUSIVE_LOCKS_REQUIRED(graph->mu) {
      return new TF_OperationDescription(graph, op_type, oper_name);
    }
    
    TF_OperationDescription* TF_NewOperation(TF_Graph* graph, const char* op_type,
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 03:35:10 GMT 2024
    - 102.3K bytes
    - Viewed (0)
  6. api/maven-api-model/src/main/mdo/maven.mdo

              </description>
            </field>
            <field>
              <name>activation</name>
              <version>4.0.0+</version>
              <description>The conditional logic which will automatically trigger the inclusion of this
                profile.</description>
              <association>
                <type>Activation</type>
              </association>
            </field>
            <field xml.tagName="build">
    XML
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Apr 23 13:29:46 GMT 2024
    - 115.1K bytes
    - Viewed (0)
  7. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

      @Test
      fun connectViaHttpProxyToHttpsUsingBadProxyAndHttpResponseCache() {
        initResponseCache()
        server.useHttps(handshakeCertificates.sslSocketFactory())
        // The inclusion of a body in the response to a CONNECT is key to reproducing b/6754912.
        server.enqueue(
          MockResponse(
            body = "bogus proxy connect response content",
            inTunnel = true,
          ),
        )
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Sat Jan 20 10:30:28 GMT 2024
    - 131.7K bytes
    - Viewed (0)
  8. fastapi/applications.py

                        license name used for the API.
                    * `identifier`: (`str`) An [SPDX](https://spdx.dev/) license expression
                        for the API. The `identifier` field is mutually exclusive of the `url`
                        field. Available since OpenAPI 3.1.0, FastAPI 0.99.0.
                    * `url`: (`str`) A URL to the license used for the API. This MUST be
                        the format of a URL.
    
    Python
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Tue Apr 02 02:48:51 GMT 2024
    - 172.2K bytes
    - Viewed (0)
  9. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    melbourne
    
    // meme : 2014-01-30 Charleston Road Registry Inc.
    meme
    
    // memorial : 2014-10-16 Dog Beach, LLC
    memorial
    
    // men : 2015-02-26 Exclusive Registry Limited
    men
    
    // menu : 2013-09-11 Dot Menu Registry, LLC
    menu
    
    // merckmsd : 2016-07-14 MSD Registry Holdings, Inc.
    merckmsd
    
    // miami : 2013-12-19 Registry Services, LLC
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Wed Dec 20 23:27:07 GMT 2023
    - 240.3K bytes
    - Viewed (3)
Back to top