Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 546 for begin6_ (0.24 sec)

  1. src/mime/type.go

    		fn()
    	} else {
    		setMimeTypes(builtinTypesLower, builtinTypesLower)
    		osInitMime()
    	}
    }
    
    // TypeByExtension returns the MIME type associated with the file extension ext.
    // The extension ext should begin with a leading dot, as in ".html".
    // When ext has no associated type, TypeByExtension returns "".
    //
    // Extensions are looked up first case-sensitively, then case-insensitively.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. src/time/time.go

    	month = Month(day / 31)
    	end := int(daysBefore[month+1])
    	var begin int
    	if day >= end {
    		month++
    		begin = end
    	} else {
    		begin = int(daysBefore[month])
    	}
    
    	month++ // because January is 1
    	day = day - begin + 1
    	return
    }
    
    // daysBefore[m] counts the number of days in a non-leap year
    // before month m begins. There is an entry for m=12, counting
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/util/x509metrics/server_cert_deprecations_test.go

    	"k8s.io/apiserver/pkg/audit"
    	"k8s.io/component-base/metrics"
    	"k8s.io/component-base/metrics/testutil"
    )
    
    // taken from pkg/util/webhook/certs_test.go
    var caCert = []byte(`-----BEGIN CERTIFICATE-----
    MIIDGTCCAgGgAwIBAgIUealQGELTHLUVcpsNNwz8XexiWvswDQYJKoZIhvcNAQEL
    BQAwGzEZMBcGA1UEAwwQd2ViaG9va190ZXN0c19jYTAgFw0yMjAzMjUxNTMzMjla
    GA8yMjk2MDEwODE1MzMyOVowGzEZMBcGA1UEAwwQd2ViaG9va190ZXN0c19jYTCC
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 03 16:16:51 UTC 2023
    - 25.5K bytes
    - Viewed (0)
  4. tensorflow/cc/framework/scope.cc

        std::vector<string> constraints(impl()->colocation_constraints_.begin(),
                                        impl()->colocation_constraints_.end());
        // Sort the set.
        std::sort(constraints.begin(), constraints.end());
        // Add loc:@ prefix
        std::transform(constraints.begin(), constraints.end(), constraints.begin(),
                       [](const string& s) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/hash/HashFunction.java

     *
     * @author Kevin Bourrillion
     * @since 11.0
     */
    @Immutable
    @ElementTypesAreNonnullByDefault
    public interface HashFunction {
      /**
       * Begins a new hash code computation by returning an initialized, stateful {@code Hasher}
       * instance that is ready to receive data. Example:
       *
       * <pre>{@code
       * HashFunction hf = Hashing.md5();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 25 18:22:59 UTC 2021
    - 10.9K bytes
    - Viewed (0)
  6. guava/src/com/google/common/hash/HashFunction.java

     *
     * @author Kevin Bourrillion
     * @since 11.0
     */
    @Immutable
    @ElementTypesAreNonnullByDefault
    public interface HashFunction {
      /**
       * Begins a new hash code computation by returning an initialized, stateful {@code Hasher}
       * instance that is ready to receive data. Example:
       *
       * <pre>{@code
       * HashFunction hf = Hashing.md5();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 25 18:22:59 UTC 2021
    - 10.9K bytes
    - Viewed (0)
  7. src/runtime/runtime-gdb_test.go

    		"-ex", "print chanint",
    		"-ex", "echo END\n",
    		"-ex", "echo BEGIN print chanstr\n",
    		"-ex", "print chanstr",
    		"-ex", "echo END\n",
    		"-ex", "echo BEGIN info locals\n",
    		"-ex", "info locals",
    		"-ex", "echo END\n",
    		"-ex", "echo BEGIN goroutine 1 bt\n",
    		"-ex", "goroutine 1 bt",
    		"-ex", "echo END\n",
    		"-ex", "echo BEGIN goroutine all bt\n",
    		"-ex", "goroutine all bt",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  8. tests/testdata/envoy_local.json

    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 13 02:10:15 UTC 2021
    - 9.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/python/pywrap_quantize_model.cc

            // LINT.ThenChange(pywrap_quantize_model.pyi:quantize_qat_model)
            std::unordered_set<std::string> tags;
            tags.insert(quantization_options.tags().begin(),
                        quantization_options.tags().end());
            const absl::StatusOr<ExportedModel> exported_model = QuantizeQatModel(
                src_saved_model_path, signature_keys, tags, quantization_options);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 09 06:33:29 UTC 2024
    - 12K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/smb1/SigningDigest.java

         * The first 8 bytes of this are placed in the signature field.
         *
         * @param data The data.
         * @param offset The starting offset at which the SMB header begins.
         * @param length The length of the SMB data starting at offset. 
         */
        void sign(byte[] data, int offset, int length,
                    ServerMessageBlock request, ServerMessageBlock response) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 7K bytes
    - Viewed (0)
Back to top