Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,926 for other2 (0.12 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/custom_plugins.adoc

    In the example below, the plugin is coded in the `other.gradle(.kts)` script file.
    Then, the `other.gradle(.kts)` is applied to `build.gradle(.kts)` using `apply from`:
    
    ====
    include::sample[dir="snippets/customPlugins/customPlugin/kotlin",files="other.gradle.kts[]"]
    include::sample[dir="snippets/customPlugins/customPlugin/groovy",files="other.gradle[]"]
    ====
    
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 21:49:49 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  2. docs/en/docs/deployment/docker.md

    RUN pip install --no-cache-dir --upgrade -r /app/requirements.txt
    
    COPY ./app /app/app
    ```
    
    ### When to Use
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 34K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/MultipleCandidateMatcher.java

                if (any.cardinality() > 0 && any.cardinality() != candidateCount) {
                    // there is at least one candidate which does NOT provide this attribute
                    remaining.andNot(any);
                    if (remaining.cardinality() == 0) {
                        // there are no left candidate, do not bother checking other attributes
                        break;
                    }
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 19.4K bytes
    - Viewed (0)
  4. platforms/core-runtime/files/src/test/groovy/org/gradle/internal/file/FileHierarchySetTest.groovy

            def dir3 = parent.createDir("dir3")
            def other = parent.createDir("dir4")
            def child = dir1.createDir("child1")
            def multi = from(dir1, dir2)
    
            expect:
            def s1 = multi.plus(dir3)
            s1.contains(dir1)
            s1.contains(child)
            s1.contains(dir2)
            s1.contains(dir3)
            !s1.contains(other)
            !s1.contains(parent)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:38 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/ImmutableList.java

      public static <E> ImmutableList<E> of(
          E e1, E e2, E e3, E e4, E e5, E e6, E e7, E e8, E e9, E e10, E e11, E e12, E... others) {
        checkArgument(
            others.length <= Integer.MAX_VALUE - 12, "the total number of elements must fit in an int");
        Object[] array = new Object[12 + others.length];
        array[0] = e1;
        array[1] = e2;
        array[2] = e3;
        array[3] = e4;
        array[4] = e5;
        array[5] = e6;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  6. docs/en/docs/python-types.md

        * `dict`
    
        And the same as with Python 3.8, from the `typing` module:
    
        * `Union`
        * `Optional`
        * ...and others.
    
    === "Python 3.8+"
    
        * `List`
        * `Tuple`
        * `Set`
        * `Dict`
        * `Union`
        * `Optional`
        * ...and others.
    
    ### Classes as types
    
    You can also declare a class as the type of a variable.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri May 31 02:38:05 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/ImmutableRangeSet.java

       * Returns a new range set consisting of the union of this range set and {@code other}.
       *
       * <p>This is essentially the same as {@code TreeRangeSet.create(this).addAll(other)} except it
       * returns an {@code ImmutableRangeSet}.
       *
       * @since 21.0
       */
      public ImmutableRangeSet<C> union(RangeSet<C> other) {
        return unionOf(Iterables.concat(asRanges(), other.asRanges()));
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  8. src/sort/sort.go

    // Notes on stable sorting:
    // The used algorithms are simple and provable correct on all input and use
    // only logarithmic additional stack space. They perform well if compared
    // experimentally to other stable in-place sorting algorithms.
    //
    // Remarks on other algorithms evaluated:
    //  - GCC's 4.6.3 stable_sort with merge_without_buffer from libstdc++:
    //    Not faster.
    //  - GCC's __rotate for block rotations: Not faster.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 16:40:32 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  9. docs/en/docs/deployment/concepts.md

    ### Example Tools to Run at Startup
    
    Some examples of the tools that can do this job are:
    
    * Docker
    * Kubernetes
    * Docker Compose
    * Docker in Swarm Mode
    * Systemd
    * Supervisor
    * Handled internally by a cloud provider as part of their services
    * Others...
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 18K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/publishing_gradle_plugins.adoc

    :publishplugin: Plugin Publishing Plugin
    :plugin-reference-documentation: https://plugins.gradle.org/docs/publish-plugin[reference documentation of the {publishplugin}]
    
    Publishing a plugin is the primary way to make it available for others to use.
    While you can publish to a private repository to restrict access, publishing to the https://plugins.gradle.org[{portal}] makes your plugin available to anyone in the world.
    
    image::plugin-portal-page.png[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 18:40:53 UTC 2024
    - 11.6K bytes
    - Viewed (0)
Back to top