Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 81 for name2 (0.42 sec)

  1. JavadocStyleGuide.md

    - Java keywords
    - package names
    - class names
    - method names
    - interface names
    - field names
    - argument names
    - code examples (see section 1.3 below)
    
    For example:
    
    ```java
    /**
     * Use the {@code Project} instance to configure the project.
     */
    ```
    
    ### 1.1.7 Block tags
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 15:43:07 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  2. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/parsing/BasicParsingTest.kt

                                        name = f
                                    )
                                    name = g
                                )
                                name = h
                            )
                            name = i
                        )
                        name = j
                    )
                    args = [
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 22:06:18 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirExpressionInfoProvider.kt

                is KtClassLikeDeclaration ->
                    false // has no expression children
    
                // Simple names do not have expression children
                // Labels, operations, references by name
                is KtSimpleNameExpression ->
                    false
    
                // this/super in constructor delegations. No expression children
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  4. build-logic/packaging/src/test/kotlin/gradlebuild/instrumentation/InstrumentationMetadataPluginTest.kt

            assert(!this.exists()) {
                "Expected ${this.name} to not exist, but it did"
            }
        }
    
        private
        fun File.assertIsNotEmpty() {
            assert(this.exists()) {
                "Expected ${this.name} to exist, but it didn't"
            }
            assert(this.length() != 0L) {
                "Expected ${this.name} to not be empty but was"
            }
        }
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 10:55:53 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl-provider-plugins/src/main/kotlin/org/gradle/kotlin/dsl/provider/plugins/precompiled/DefaultPrecompiledScriptPluginsSupport.kt

     *
     * The target of a given script plugin is defined via its file name suffix in the following manner:
     *  - the `.init.gradle.kts` file name suffix defines a [Gradle] script plugin
     *  - the `.settings.gradle.kts` file name suffix defines a [Settings] script plugin
     *  - and finally, the simpler `.gradle.kts` file name suffix  defines a [Project] script plugin
     *
     * ## Defining the plugin id
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 10:44:10 UTC 2024
    - 21K bytes
    - Viewed (0)
  6. LICENSE

          the terms of any separate license agreement you may have executed
          with Licensor regarding such Contributions.
    
       6. Trademarks. This License does not grant permission to use the trade
          names, trademarks, service marks, or product names of the Licensor,
          except as required for reasonable and customary use in describing the
          origin of the Work and reproducing the content of the NOTICE file.
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 22 18:59:39 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl-provider-plugins/src/main/kotlin/org/gradle/kotlin/dsl/provider/plugins/precompiled/tasks/GeneratePrecompiledScriptPluginAccessors.kt

         * 3. Re-group precompiled script plugins by project schema.
         * 4. For each group, emit the type-safe accessors implied by the schema to a package named after the schema
         * hash code.
         * 5. For each group, for each script plugin in the group, write the generated package name to a file named
         * after the contents of the script plugin file. This is so the file can be easily found by
         * [PrecompiledScriptDependenciesResolver].
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:10:49 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  8. src/mdo/model.vm

         */
        @Nonnull
        public ${class.name} with${cap}($type $field.name) {
            return newBuilder(this, true).${field.name}($field.name).build();
        }
        #end
    
        /**
         * Creates a new {@code ${class.name}} instance.
         * Equivalent to {@code newInstance(true)}.
         * @see #newInstance(boolean)
         *
         * @return a new {@code ${class.name}}
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 07 21:28:01 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  9. src/mdo/model-v3.vm

        }
    
        public static List<${packageModelV4}.${class.name}> ${Helper.uncapitalise(${class.name})}ToApiV4(List<${class.name}> list) {
            return list != null ? new WrapperList<>(list, ${class.name}::getDelegate, ${class.name}::new) : null;
        }
    
        public static List<${class.name}> ${Helper.uncapitalise(${class.name})}ToApiV3(List<${packageModelV4}.${class.name}> list) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Nov 06 19:04:44 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  10. src/mdo/writer.vm

            write${root.name}("$rootTag", ${rootLcapName}, serializer);
            serializer.endDocument();
        } //-- void write(OutputStream, ${root.name})
    
    #foreach ( $class in $model.allClasses )
     #if ( $class.name != "InputSource" && $class.name != "InputLocation" )
      #set ( $classUcapName = $Helper.capitalise( $class.name ) )
      #set ( $classLcapName = $Helper.uncapitalise( $class.name ) )
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Sep 14 11:48:15 UTC 2023
    - 11.5K bytes
    - Viewed (0)
Back to top