Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 6,473 for other2 (0.3 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. platforms/documentation/docs/src/snippets/modelRules/basicRuleSourcePlugin/groovy/build.gradle

    class PersonRules extends RuleSource {
    // tag::create-rule[]
      @Model void person(Person p) {}
    // end::create-rule[]
    
    // tag::plugin-mutate-rule[]
      //Create a rule that modifies a Person and takes no other inputs
      @Mutate void setFirstName(Person p) {
        p.firstName = "John"
      }
    // end::plugin-mutate-rule[]
    
    // tag::task-create-rule[]
      //Create a rule that modifies a ModelMap<Task> and takes as input a Person
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  3. src/cmd/link/internal/sym/symkind.go

    // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
    // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    // THE SOFTWARE.
    
    package sym
    
    import "cmd/internal/objabi"
    
    // A SymKind describes the kind of memory represented by a symbol.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. cmd/routers.go

    // List of some generic middlewares which are applied for all incoming requests.
    var globalMiddlewares = []mux.MiddlewareFunc{
    	// set x-amz-request-id header and others
    	addCustomHeadersMiddleware,
    	// The generic tracer needs to be the first middleware to catch all requests
    	// returned early by any other middleware (but after the middleware that
    	// sets the amz request id).
    	httpTracerMiddleware,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Mar 08 19:08:18 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  10. fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/ApiExtractorTest.java

    /*
     * Copyright 2012-2024 CodeLibs Project and the Others.
     *
     * Licensed under the Apache License, Version 2.0 (the "License");
     * you may not use this file except in compliance with the License.
     * You may obtain a copy of the License at
     *
     *     http://www.apache.org/licenses/LICENSE-2.0
     *
     * Unless required by applicable law or agreed to in writing, software
     * distributed under the License is distributed on an "AS IS" BASIS,
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 5.4K bytes
    - Viewed (0)
Back to top