Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 50 for sample (1.14 sec)

  1. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/ScalarTypesInManagedModelIntegrationTest.groovy

                }
    
                model {
                    gradleFileContainer(FileContainer) {
                        file = file('sample.txt')
                    }
    
                    jdkFileContainer(FileContainer) {
                        file = new File('sample.txt')
                    }
                }
            '''
    
            then:
            succeeds "model"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 27.1K bytes
    - Viewed (0)
  2. build-logic/build-init-samples/src/main/kotlin/gradlebuild/samples/SamplesGenerator.kt

                .create().generate()
            projectLayoutSetupRegistry.templateOperationFactory.newTemplateOperation()
                .withTemplate(templateFolder.template("build.sample.conf"))
                .withTarget(settings.target.file("../tests/build.sample.conf").asFile)
                .create().generate()
        }
    
        private
        fun tasksExecuted(descriptor: CompositeProjectInitDescriptor): Int {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 17:51:21 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/declarative-dsl-tooling-builders/src/crossVersionTest/groovy/org/gradle/declarative/dsl/tooling/builders/r89/DeclarativeDslToolingModelsCrossVersionTest.groovy

            def pluginBuilder = new PluginBuilder(file("plugins"))
            pluginBuilder.addPluginId("com.example.test-software-type-impl", "SoftwareTypeImplPlugin")
            pluginBuilder.addPluginId("com.example.another-software-type-impl", "AnotherSoftwareTypeImplPlugin")
            pluginBuilder.addPluginId("com.example.test-software-type", "SoftwareTypeRegistrationPlugin")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 11:32:11 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildServiceIntegrationTest.groovy

                   }
                """
                file("build.gradle") << """
                    plugins {
                        id("java-gradle-plugin")
                    }
                    group = "com.example"
                    version = "1.0"
                    gradlePlugin {
                        plugins {
                            buildServicePlugin {
                                id = 'counting-service-plugin'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 11:47:23 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/DependencyHandlerExtensions.kt

     *
     * Excluding a particular transitive dependency does not guarantee that it does not show up
     * in the dependencies of a given configuration.
     * For example, some other dependency, which does not have any exclude rules,
     * might pull in exactly the same transitive dependency.
     * To guarantee that the transitive dependency is excluded from the entire configuration
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 11K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/JavaPropertyReflectionUtil.java

                throw UncheckedException.throwAsUncheckedException(e);
            }
        }
    
        /**
         * Resolves the return type of a method in a given class.
         *
         * For example, for {@code MyList implements List<String>}, resolving the return type of {@link List#get(int)} in {@code MyList} yields {@link String}.
         */
        public static <T> Type resolveMethodReturnType(Class<T> type, Method method) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  7. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/BuildParams.kt

        get() = environmentVariable(BUILD_BRANCH).orElse(currentGitBranchViaFileSystemQuery())
    
    
    /**
     * The logical branch.
     * For non-merge-queue branches this is the same as {@link #buildBranch}.
     * For merge-queue branches, this is the base branch.
     *
     * For example, for the merge queue branch "gh-readonly-queue/master/pr-12345-1a2b3c4d" the logical branch is "master".
     */
    val Project.logicalBranch: Provider<String>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/KotlinScript.kt

         * and `System.err` is redirected at the `ERROR` log level.
         */
        val logging: LoggingManager
    
        /**
         * Provides access to resource-specific utility methods, for example factory methods that create various resources.
         */
        val resources: ResourceHandler
    
        /**
         * Returns the relative path from this script's target base directory to the given path.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/SettingsScriptApi.kt

         */
        @Suppress("unused")
        val logging by unsafeLazy { settings.serviceOf<LoggingManager>() }
    
        /**
         * Provides access to resource-specific utility methods, for example factory methods that create various resources.
         */
        @Suppress("unused")
        val resources: ResourceHandler by unsafeLazy { fileOperations.resources }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  10. platforms/core-configuration/input-tracking/src/main/java/org/gradle/internal/configuration/inputs/AccessTrackingProperties.java

             */
            void onRemove(Object key);
    
            /**
             * Called when the caller unconditionally removes all properties in this Properties object, for example by calling {@link Properties#clear()}.
             * <p>
             * The state of the observed Properties object is undefined for the duration of the call: it may be already completely or partially
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 07:32:51 UTC 2024
    - 20.7K bytes
    - Viewed (0)
Back to top