Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 200 for emberi (0.11 sec)

  1. platforms/jvm/normalization-java/src/main/java/org/gradle/internal/normalization/java/impl/Member.java

     * members and construct API classes out of them.
     */
    public abstract class Member {
    
        private final String name;
    
        public Member(String name) {
            this.name = checkNotNull(name);
        }
    
        public String getName() {
            return name;
        }
    
        protected ComparisonChain compare(Member o) {
            return ComparisonChain.start().compare(name, o.name);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/declarations/renderers/KtClassifierBodyRenderer.kt

            printer: PrettyPrinter,
        ) {
            val members = declarationRenderer.bodyMemberScopeProvider.getMemberScope(analysisSession, symbol)
                .filter { it !is KaConstructorSymbol || !it.isPrimary }
                .let { declarationRenderer.bodyMemberScopeSorter.sortMembers(analysisSession, it, symbol) }
    
            val membersToPrint = members.mapNotNull { member ->
                val rendered = prettyPrintWithSettingsFrom(printer) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_vendor_embed.txt

    cmp vendor/example.com/a/subdir/embed.txt a/subdir/embed.txt
    cmp vendor/example.com/a/subdir/test/embed.txt a/subdir/test/embed.txt
    cmp vendor/example.com/a/subdir/test/xtest/embed.txt a/subdir/test/xtest/embed.txt
    
    cd broken_no_matching_files
    ! go mod vendor
    stderr '^go: resolving embeds in example.com/brokendep: pattern foo.txt: no matching files found$'
    go mod vendor -e
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:14:55 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/cmd/phases/join/controlplanejoin.go

    	// "If you add a new member to a 1-node cluster, the cluster cannot make progress before the new member starts
    	// because it needs two members as majority to agree on the consensus. You will only see this behavior between the time
    	// etcdctl member add informs the cluster about the new member and the new member successfully establishing a connection to the
    	// existing one."
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:09:42 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  5. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/KtSymbol.kt

         * interface A<T> { fun x(): T }
         * interface B : A<Int> { }
         * ```
         *
         * The B will have a member B.foo(): Int, this member is generated inside interface B with substitution T -> Int,
         * such members are SUBSTITUTION_OVERRIDE
         */
        SUBSTITUTION_OVERRIDE,
    
        /**
         * Member symbol which was generated by compiler when using `by` interface delegation
         * e.g,
         * ```
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 09:36:27 UTC 2024
    - 5K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modindex/scan.go

    			}
    			rf.imports = append(rf.imports, rawImport{path: imp.path, position: fset.Position(imp.pos)})
    		}
    		rf.cgoDirectives = strings.Join(cgoDirectives, "\n")
    		for _, emb := range info.embeds {
    			rf.embeds = append(rf.embeds, embed{emb.pattern, emb.pos})
    		}
    
    	}
    	return p
    }
    
    // extractCgoDirectives filters only the lines containing #cgo directives from the input,
    // which is the comment on import "C".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  7. platforms/jvm/normalization-java/src/main/java/org/gradle/internal/normalization/java/impl/ApiMemberSelector.java

    import static org.objectweb.asm.Opcodes.ACC_STATIC;
    import static org.objectweb.asm.Opcodes.ACC_SUPER;
    
    /**
     * Visits each {@link Member} of a given class and selects only those members that
     * are part of its API.
     * Selected members are delegated to an adapter that determines how to further
     * process those members (e.g. stripping out method bodies), and how to write a
     * new "API class" with them.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  8. docs/en/docs/tutorial/path-params.md

    <img src="/img/tutorial/path-params/image03.png">
    
    ### Working with Python *enumerations*
    
    The value of the *path parameter* will be an *enumeration member*.
    
    #### Compare *enumeration members*
    
    You can compare it with the *enumeration member* in your created enum `ModelName`:
    
    ```Python hl_lines="17"
    {!../../../docs_src/path_params/tutorial005.py!}
    ```
    
    #### Get the *enumeration value*
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  9. docs/es/docs/tutorial/path-params.md

    <img src="/img/tutorial/path-params/image03.png">
    
    ### Trabajando con los *enumerations* de Python
    
    El valor del *parámetro de path* será un *enumeration member*.
    
    #### Compara *enumeration members*
    
    Puedes compararlo con el *enumeration member* en el enum (`ModelName`) que creaste:
    
    ```Python hl_lines="17"
    {!../../../docs_src/path_params/tutorial005.py!}
    ```
    
    #### Obtén el *enumeration value*
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  10. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/SinceAnnotationMissingRule.java

                isInject(member) ||
                isOverrideMethod(member) ||
                isKotlinFileFacadeClass(member);
        }
    
        private boolean isClassFieldConstructorOrMethod(JApiCompatibility member) {
            return member instanceof JApiClass || member instanceof JApiField || member instanceof JApiConstructor || member instanceof JApiMethod;
        }
    
        private boolean isInject(JApiCompatibility member) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 21 16:02:23 UTC 2023
    - 2.7K bytes
    - Viewed (0)
Back to top