Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for decorativo (0.31 sec)

  1. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/adapter/ProtocolToModelAdapter.java

            private final ViewDecoration decoration;
            private final ViewGraphDetails graphDetails;
            private final MethodInvoker next;
    
            private AdaptingMethodInvoker(ViewDecoration decoration, ViewGraphDetails graphDetails, MethodInvoker next) {
                this.decoration = decoration;
                this.graphDetails = graphDetails;
                this.next = next;
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 04:42:54 UTC 2024
    - 45.4K bytes
    - Viewed (0)
  2. platforms/software/signing/src/main/java/org/gradle/plugins/signing/Sign.java

                    )
                );
        }
    
        @Inject
        protected FileCollectionFactory getFileCollectionFactory() {
            // Implementation provided by decoration
            throw new UnsupportedOperationException();
        }
    
        /**
         * All of the files that will be signed by this task.
         */
        @Internal
        public FileCollection getFilesToSign() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/css/base.css

        background-color: #fff;
        -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
        -webkit-font-smoothing: antialiased;
    }
    
    a {
        color: #1DA2BD;
        text-decoration: none;
    }
    
    a:hover, a:focus {
        text-decoration: underline;
    }
    
    a strong {
        color: inherit;
    }
    
    img {
        max-width: 100%;
    }
    
    table {
        width: 100%;
        font-size: 85%;
        border: 1px solid #e5e5e5;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  4. pkg/ctrlz/assets/static/css/all.css

        }
    }
    
    a {
        color: #e9ffaa;
        text-decoration: none;
        font-weight: 300
    }
    
    a:hover, a:focus {
        color: #de7d40;
        text-decoration: underline;
        font-weight: 300
    }
    
    a.disabled {
        color: #444;
        text-decoration: none;
        font-weight: 300
    }
    
    a.active {
        color: #de7d40;
        text-decoration: none;
        font-weight: 300
    }
    
    table, th, td, tr {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  5. docs/en/docs/tutorial/first-steps.md

    !!! info "`@decorator` Info"
        That `@something` syntax in Python is called a "decorator".
    
        You put it on top of a function. Like a pretty decorative hat (I guess that's where the term came from).
    
        A "decorator" takes the function below and does something with it.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 00:24:48 UTC 2024
    - 12K bytes
    - Viewed (1)
  6. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/ClassLoaderUtils.java

         * However, this API can only "defines a class to the same class loader and in the same runtime package and protection domain as this lookup's lookup class",
         * which means, we can only use this API safely in the decorating scenario where the decorated class acts as the lookup object.
         *
         * Otherwise, we have to use {@link MethodHandle} to invoke {@link ClassLoader#defineClass}. Fortunately, this is the rare case.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/internal/classpath/intercept/DefaultCallSiteDecorator.java

        // dynamic dispatch has to happen somewhere. Wrapping the dispatch logic into the CallInterceptor allows
        // to reuse the common MethodHandle decoration routine in maybeDecorateIndyCallSite instead of using a
        // dedicated MethodHandle decorator method just for constructors.
        private final CallInterceptor dispatchingConstructorInterceptor = new AbstractCallInterceptor() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:46:35 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. docs/ko/docs/tutorial/first-steps.md

    * 경로 `/`
    * <abbr title="HTTP GET 메소드"><code>get</code> 작동</abbr> 사용
    
    !!! info "`@decorator` 정보"
        이 `@something` 문법은 파이썬에서 "데코레이터"라 부릅니다.
    
        마치 예쁜 장식용(Decorative) 모자처럼(개인적으로 이 용어가 여기서 유래한 것 같습니다) 함수 맨 위에 놓습니다.
    
        "데코레이터"는 아래 있는 함수를 받아 그것으로 무언가를 합니다.
    
        우리의 경우, 이 데코레이터는 **FastAPI**에게 아래 함수가 **경로** `/`의 `get` **작동**에 해당한다고 알려줍니다.
    
        이것이 "**경로 작동 데코레이터**"입니다.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  9. docs/fr/docs/tutorial/first-steps.md

    !!! info "`@décorateur` Info"
        Cette syntaxe `@something` en Python est appelée un "décorateur".
    
        Vous la mettez au dessus d'une fonction. Comme un joli chapeau décoratif (j'imagine que ce terme vient de là 🤷🏻‍♂).
    
        Un "décorateur" prend la fonction en dessous et en fait quelque chose.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Sep 27 20:52:31 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/api/groovy_build_script_primer.adoc

    ----
    
    A property represents some state of an object. The presence of an `=` sign is a clear indicator that you're looking at a property. Otherwise, a qualified name — it begins with `<obj>.` — without any other decoration is also a property.
    
    If the name is unqualified, then it may be one of the following:
    
     * A task instance with that name.
     * A property on link:{groovyDslPath}/org.gradle.api.Project.html[Project].
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 20:23:16 UTC 2023
    - 10.5K bytes
    - Viewed (0)
Back to top