Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 421 - 430 of 1,478 for x$ (0.02 seconds)

  1. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/BwcVersions.java

     *     <dt>N, N &gt; 0</dt>
     *     <dd>last released minor</dd>
     * </dl>
     *
     * <ul>
     * <li>the unreleased <b>major</b>, M+1.0.0 on the `master` branch</li>
     * <li>the unreleased <b>minor</b>,  M.N.0 on the `M.x` (x is literal) branch</li>
     * <li>the unreleased <b>bugfix</b>, M.N.c (c &gt; 0) on the `M.N` branch</li>
     * <li>the unreleased <b>maintenance</b>, M-1.d.e ( d &gt; 0, e &gt; 0) on the `(M-1).d` branch</li>
     * </ul>
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 16.8K bytes
    - Click Count (0)
  2. cmd/globals.go

    	// Some standard content-types which we strictly dis-allow for compression.
    	standardExcludeCompressContentTypes = []string{"video/*", "audio/*", "application/zip", "application/x-gzip", "application/x-zip-compressed", " application/x-compress", "application/x-spoon"}
    
    	// AuthZ Plugin system.
    	globalAuthZPlugin *polplugin.AuthZPlugin
    
    	// Deployment ID - unique per deployment
    	globalDeploymentIDPtr atomic.Pointer[string]
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Tue Sep 03 18:23:41 GMT 2024
    - 16.2K bytes
    - Click Count (1)
  3. impl/maven-core/src/main/java/org/apache/maven/lifecycle/LifecycleExecutor.java

                        PluginVersionResolutionException;
    
        void execute(MavenSession session);
    
        // used by the site plugin 3.x
        void calculateForkedExecutions(MojoExecution mojoExecution, MavenSession session)
                throws MojoNotFoundException, PluginNotFoundException, PluginResolutionException,
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Fri Oct 25 12:31:46 GMT 2024
    - 4.2K bytes
    - Click Count (0)
  4. guava-tests/benchmark/com/google/common/util/concurrent/MonitorBasedArrayBlockingQueue.java

       * monitor.
       */
      private void insert(E x) {
        items[putIndex] = x;
        putIndex = inc(putIndex);
        ++count;
      }
    
      /**
       * Extracts element at current take position, advances, and signals. Call only when occupying
       * monitor.
       */
      private E extract() {
        E[] items = this.items;
        E x = items[takeIndex];
        items[takeIndex] = null;
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Mar 23 21:06:42 GMT 2026
    - 22.4K bytes
    - Click Count (0)
  5. cmd/api-errors.go

    	},
    	ErrInvalidQueryParams: {
    		Code:           "AuthorizationQueryParametersError",
    		Description:    "Query-string authentication version 4 requires the X-Amz-Algorithm, X-Amz-Credential, X-Amz-Signature, X-Amz-Date, X-Amz-SignedHeaders, and X-Amz-Expires parameters.",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrBucketAlreadyOwnedByYou: {
    		Code:           "BucketAlreadyOwnedByYou",
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Wed Apr 16 07:34:24 GMT 2025
    - 93K bytes
    - Click Count (3)
  6. docs/en/overrides/main.html

          </a>
        </div>
        <div class="item">
          <a class="announce-link" href="https://x.com/fastapi" target="_blank">
            <span class="twemoji">
              {% include ".icons/fontawesome/brands/x-twitter.svg" %}
            </span> Follow <strong>@fastapi</strong> on <strong>X (Twitter)</strong> to stay updated
          </a>
        </div>
        <div class="item">
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Mon Dec 01 20:06:57 GMT 2025
    - 5.5K bytes
    - Click Count (0)
  7. docs/zh/docs/help-fastapi.md

        * 了解我创建的其他开源项目,也许对你有帮助。
        * 关注我何时创建新的开源项目。
    * 关注我在 [**X (Twitter)**](https://x.com/tiangolo) 或 [Mastodon](https://fosstodon.org/@tiangolo)。
        * 告诉我你如何使用 FastAPI(我很喜欢听这些)。
        * 获取我发布公告或新工具的消息。
        * 你也可以[在 X (Twitter) 上关注 @fastapi](https://x.com/fastapi)(独立账号)。
    * [在 **LinkedIn** 上关注我](https://www.linkedin.com/in/tiangolo/)。
        * 获取我发布公告或新工具的消息(不过我更常用 X (Twitter) 🤷‍♂)。
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:06:37 GMT 2026
    - 11.8K bytes
    - Click Count (0)
  8. dbflute_fess/_project.sh

    #!/bin/bash
    
    export ANT_OPTS=-Xmx512m
    
    export DBFLUTE_HOME=../mydbflute/dbflute-1.x
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jun 09 03:32:24 GMT 2016
    - 128 bytes
    - Click Count (0)
  9. scripts/test-cov.sh

    #!/usr/bin/env bash
    
    set -e
    set -x
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Feb 27 10:53:47 GMT 2026
    - 87 bytes
    - Click Count (0)
  10. src/builtin/builtin.go

    // or an expression.
    // If the argument is a type T, then new(T) allocates a variable of type T
    // initialized to its zero value.
    // Otherwise, the argument is an expression x and new(x) allocates a variable
    // of the type of x initialized to the value of x. If that value is an untyped
    // constant, it is first implicitly converted to its default type.
    func new(TypeOrExpr) *Type
    
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Thu Feb 26 17:14:40 GMT 2026
    - 13.2K bytes
    - Click Count (0)
Back to Top