Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,110 for Although (0.39 sec)

  1. src/go/doc/comment/testdata/link4.txt

    [x]https://go.dev
    
    [x]: surprise://go.dev
    
    [x]: surprise!
    
    But this is, with a tab (although it's unused).
    
    [z]:	https://go.dev
    -- gofmt --
    These are not links.
    
    [x
    
    [x]:
    
    [x]:https://go.dev
    
    [x]https://go.dev
    
    [x]: surprise://go.dev
    
    [x]: surprise!
    
    But this is, with a tab (although it's unused).
    
    [z]: https://go.dev
    -- text --
    These are not links.
    
    [x
    
    [x]:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:43 UTC 2022
    - 1020 bytes
    - Viewed (0)
  2. fastapi/params.py

            examples: Optional[List[Any]] = None,
            example: Annotated[
                Optional[Any],
                deprecated(
                    "Deprecated in OpenAPI 3.1.0 that now uses JSON Schema 2020-12, "
                    "although still supported. Use examples instead."
                ),
            ] = _Unset,
            openapi_examples: Optional[Dict[str, Example]] = None,
            deprecated: Union[deprecated, str, bool, None] = None,
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  3. releasenotes/notes/mc-gateway-ports.yaml

    area: installation
    releaseNotes:
    - |
      **Removed** the `15012` and `15443` ports from the default gateway installation. These can be explicitly
      [added](https://istio.io/latest/docs/setup/install/istioctl/#configure-gateways) if desired, although it is
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 04 00:35:29 UTC 2021
    - 430 bytes
    - Viewed (0)
  4. maven-repository-metadata/src/test/java/org/apache/maven/artifact/repository/metadata/MetadataTest.java

            Date date = new Date();
            addSnapshotVersion(target.getVersioning(), date, artifact);
            SnapshotVersion sv1 = addSnapshotVersion(source.getVersioning(), date, artifact);
            // although nothing has changed merge returns true, as the last modified date is equal
            // TODO: improve merge here?
            assertTrue(target.merge(source));
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  5. test/fixedbugs/bug513.go

    // Copyright 2021 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Although -race turns on -d=checkptr, the explicit -d=checkptr=0
    // should override it.
    
    package main
    
    import "unsafe"
    
    var v1 = new([2]int16)
    var v2 *[3]int64
    
    func main() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 596 bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/testdata/deployment-multi-service-different-ns.yaml

        istio-injection: "enabled"
    spec: {}
    ---
    apiVersion: v1
    kind: Namespace
    metadata:
      name: bookinfo2
      labels:
        istio-injection: "enabled"
    spec: {}
    ---
    # Deployment should not generate a warning: although two services using that deployment
    # using the same port, they are in different namespaces.
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: conflicting-ports
      namespace: bookinfo
      labels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  7. docs/en/docs/deployment/index.md

    I will show you some of the main concepts you should probably keep in mind when deploying a **FastAPI** application (although most of it applies to any other type of web application).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jan 11 16:31:18 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/smb1/DosFileFilter.java

        protected int attributes;
    
    /* This filter can be considerably more efficient than other file filters
     * as the specifed wildcard and attributes are passed to the server for
     * filtering there (although attributes are largely ignored by servers
     * they are filtered locally by the default accept method).
     */
        public DosFileFilter( String wildcard, int attributes ) {
            this.wildcard = wildcard;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 1.9K bytes
    - Viewed (0)
  9. guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/SingletonImmutableSet.java

      // This reference is used both by the custom field serializer, and by the
      // GWT compiler to infer the elements of the lists that needs to be
      // serialized.
      //
      // Although this reference is non-final, it doesn't change after set creation.
      E element;
    
      SingletonImmutableSet(E element) {
        this.element = checkNotNull(element);
      }
    
      @Override
      public int size() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 23 18:43:40 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. docs/contribute/code_of_conduct.md

    may not be able to satisfy everyone, we all agree that everyone is equal.
    
    Whenever a participant has made a mistake, we expect them to take responsibility for it. If someone
    has been harmed or offended, it is our responsibility to listen carefully and respectfully, and do
    our best to right the wrong.
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 5.1K bytes
    - Viewed (0)
Back to top