Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for Bell (0.18 sec)

  1. doc/go1.17_spec.html

    and an exponent part (<code>p</code> or <code>P</code> followed by an optional sign and decimal digits).
    One of the integer part or the fractional part may be elided; the radix point may be elided as well,
    but the exponent part is required. (This syntax matches the one given in IEEE 754-2008 ยง5.12.3.)
    An exponent value exp scales the mantissa (integer and fractional part) by 2<sup>exp</sup>.
    </p>
    
    <p>
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Maps.java

       * a later time.
       *
       * <p>Since this method uses {@code HashMap} instances internally, the keys of the supplied maps
       * must be well-behaved with respect to {@link Object#equals} and {@link Object#hashCode}.
       *
       * <p><b>Note:</b>If you only need to know whether two maps have the same mappings, call {@code
       * left.equals(right)} instead of this method.
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Apr 24 19:38:27 GMT 2024
    - 159.3K bytes
    - Viewed (0)
  3. api/maven-api-model/src/main/mdo/maven.mdo

              <version>3.0.0+</version>
              <required>true</required>
              <description>The year of the project's inception, specified with 4 digits. This value is
                used when generating copyright notices as well as being informational.</description>
              <type>String</type>
            </field>
            <field>
              <name>organization</name>
              <version>3.0.0+</version>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Apr 23 13:29:46 GMT 2024
    - 115.1K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.30.md

    - Structured Authentication Configuration now supports `DiscoveryURL`. If specified, `discoveryURL` overrides the URL used to fetch discovery information. This is for scenarios where the well-known and jwks endpoints are hosted at a different location than the issuer (such as locally in the cluster).
       ([#123527](https://github.com/kubernetes/kubernetes/pull/123527), [@aramase](https://github.com/aramase))
    Plain Text
    - Registered: Fri Apr 26 09:05:10 GMT 2024
    - Last Modified: Wed Apr 17 17:56:15 GMT 2024
    - 227.9K bytes
    - Viewed (0)
  5. cmd/bucket-replication.go

    	meta := make(map[string]string)
    	for k, v := range objInfo.UserDefined {
    		// In case of SSE-C objects copy the allowed internal headers as well
    		if !crypto.SSEC.IsEncrypted(objInfo.UserDefined) || !slices.Contains(maps.Keys(validSSEReplicationHeaders), k) {
    			if stringsHasPrefixFold(k, ReservedMetadataPrefixLower) {
    				continue
    			}
    			if isStandardHeader(k) {
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Apr 22 17:49:30 GMT 2024
    - 112.2K bytes
    - Viewed (1)
  6. cmd/server_test.go

    	c.Assert(err, nil)
    
    	// execute the HTTP request.
    	response, err = s.client.Do(request)
    
    	c.Assert(err, nil)
    	verifyError(c, response, "InvalidArgument", "A specified destination ARN does not exist or is not well-formed. Verify the destination ARN.", http.StatusBadRequest)
    }
    
    func (s *TestSuiteCommon) TestCors(c *check) {
    	expectedMap := http.Header{}
    	expectedMap.Set("Access-Control-Allow-Credentials", "true")
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Feb 22 06:26:06 GMT 2024
    - 108K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java

        /** The key of the message: {item} is invalid {type} barcode. */
        public static final String CONSTRAINTS_EAN_MESSAGE = "{constraints.EAN.message}";
    
        /** The key of the message: {item} is not a well-formed email address. */
        public static final String CONSTRAINTS_Email_MESSAGE = "{constraints.Email.message}";
    
        /** The key of the message: Length of {item} must be between {min} and {max}. */
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 119.9K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

                new AsyncCallable<String>() {
                  @Override
                  public ListenableFuture<String> call() throws Exception {
                    // Make this executor terminate after this task so that the test can tell when
                    // futureResult has received resultOfCombiner.
                    executor.shutdown();
                    callableBlocking.await();
                    return resultOfCombiner;
                  }
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Tue Feb 20 17:00:05 GMT 2024
    - 144.5K bytes
    - Viewed (0)
  9. cmd/object-handlers.go

    	// metadataOnly is true indicating that we are not overwriting the object.
    	// if encryption is enabled we do not need explicit "REPLACE" metadata to
    	// be enabled as well - this is to allow for key-rotation.
    	if !isDirectiveReplace(r.Header.Get(xhttp.AmzMetadataDirective)) && !isDirectiveReplace(r.Header.Get(xhttp.AmzTagDirective)) &&
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Apr 22 17:49:30 GMT 2024
    - 125K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/cache/LocalCache.java

         * performed at the front of each bin. This makes it easy to check changes, and also fast to
         * traverse. When nodes would otherwise be changed, new nodes are created to replace them. This
         * works well for hash tables since the bin lists tend to be short. (The average length is less
         * than two.)
         *
         * Read operations can thus proceed without locking, but rely on selected uses of volatiles to
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Feb 22 17:40:56 GMT 2024
    - 144.7K bytes
    - Viewed (0)
Back to top