Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1531 - 1540 of 1,688 for Builds (0.09 sec)

  1. src/main/webapp/css/admin/adminlte.min.css.map

    s","..\\..\\build\\scss\\_modals.scss","..\\..\\build\\scss\\_toasts.scss","..\\..\\build\\scss\\mixins\\_toasts.scss","..\\..\\build\\scss\\_buttons.scss","..\\..\\build\\scss\\_callout.scss","..\\..\\build\\scss\\_alerts.scss","..\\..\\build\\scss\\_table.scss","..\\..\\build\\scss\\_carousel.scss","..\\..\\build\\scss\\_close.scss","..\\..\\build\\scss\\_small-box.scss","..\\..\\build\\scss\\_info-box.scss","..\\..\\build\\scss\\_timeline.scss","..\\..\\build\\scss\\_products.scss","..\\..\\b...
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sat Oct 26 01:49:09 UTC 2024
    - 3.7M bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/base/CharMatcherTest.java

      }
    
      public void testPrecomputedOptimizations() {
        // These are testing behavior that's never promised by the API.
        // Some matchers are so efficient that it is a waste of effort to
        // build a precomputed version.
        CharMatcher m1 = is('x');
        assertSame(m1, m1.precomputed());
        assertEquals(m1.toString(), m1.precomputed().toString());
    
        CharMatcher m2 = anyOf("Az");
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Feb 21 18:32:41 UTC 2024
    - 30.1K bytes
    - Viewed (0)
  3. docs/uk/docs/alternatives.md

    ///
    
    ### <a href="https://www.starlette.io/" class="external-link" target="_blank">Starlette</a>
    
    Starlette — це легкий фреймворк/набір інструментів <abbr title="The new standard for build asynchronous Python web">ASGI</abbr>, який ідеально підходить для створення високопродуктивних asyncio сервісів.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 20 19:20:23 UTC 2024
    - 38.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

                builder.setQuery(parameter.getQuery());
                stream(parameter.getSuggestFields()).of(stream -> stream.forEach(builder::addField));
                roleQueryHelper.build(SearchRequestType.SUGGEST).stream().forEach(builder::addRole);
                builder.setSize(parameter.getNum());
                stream(langs).of(stream -> stream.forEach(builder::addLang));
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sat Oct 12 01:54:46 UTC 2024
    - 50.3K bytes
    - Viewed (0)
  5. README.md

    MinIO is a High Performance Object Storage released under GNU Affero General Public License v3.0. It is API compatible with Amazon S3 cloud storage service. Use MinIO to build high performance infrastructure for machine learning, analytics and application data workloads.
    
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Sun Oct 13 13:34:11 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  6. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // operations.
      //
      // Populated by the system.
      // Read-only.
      // More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids
      // +optional
      optional string uid = 5;
    
      // An opaque value that represents the internal version of this object that can
      // be used by clients to determine when objects have changed. May be used for optimistic
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  7. docs/en/docs/release-notes.md

            * [Build simple API service with Python FastAPI — Part 1](https://dev.to/cuongld2/build-simple-api-service-with-python-fastapi-part-1-581o) by [cuongld2](https://dev.to/cuongld2).
            * [FastAPI + Zeit.co = 🚀](https://paulsec.github.io/posts/fastapi_plus_zeit_serverless_fu/) by [Paul Sec](https://twitter.com/PaulWebSec).
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Fri Nov 01 11:25:57 UTC 2024
    - 460.3K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/collect/SetsTest.java

      }
    
      @GwtIncompatible // NavigableSet
      public void testSubSet_unnaturalOrdering() {
        ImmutableSortedSet<Integer> set =
            ImmutableSortedSet.<Integer>reverseOrder().add(2, 4, 6, 8, 10).build();
    
        assertThrows(IllegalArgumentException.class, () -> Sets.subSet(set, Range.closed(4, 8)));
    
        // These results are all incorrect, but there's no way (short of iterating over the result)
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 48.6K bytes
    - Viewed (0)
  9. docs/ja/docs/index.md

    </p>
    <p align="center">
    <a href="https://travis-ci.com/fastapi/fastapi" target="_blank">
        <img src="https://travis-ci.com/fastapi/fastapi.svg?branch=master" alt="Build Status">
    </a>
    <a href="https://codecov.io/gh/fastapi/fastapi" target="_blank">
        <img src="https://img.shields.io/codecov/c/github/fastapi/fastapi" alt="Coverage">
    </a>
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 20 19:20:23 UTC 2024
    - 21K bytes
    - Viewed (0)
  10. docs/em/docs/deployment/docker.md

    COPY ./app /code/app
    ```
    
    ### 🏗 ☁ 🖼
    
    🔜 👈 🌐 📁 🥉, ➡️ 🏗 📦 🖼.
    
    * 🚶 🏗 📁 (🌐❔ 👆 `Dockerfile` , ⚗ 👆 `app` 📁).
    * 🏗 👆 FastAPI 🖼:
    
    <div class="termy">
    
    ```console
    $ docker build -t myimage .
    
    ---> 100%
    ```
    
    </div>
    
    /// tip
    
    👀 `.` 🔚, ⚫️ 🌓 `./`, ⚫️ 💬 ☁ 📁 ⚙️ 🏗 📦 🖼.
    
    👉 💼, ⚫️ 🎏 ⏮️ 📁 (`.`).
    
    ///
    
    ### ▶️ ☁ 📦
    
    * 🏃 📦 ⚓️ 🔛 👆 🖼:
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Mon Aug 12 21:47:53 UTC 2024
    - 27.9K bytes
    - Viewed (0)
Back to top