Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 543 for creators (0.18 sec)

  1. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/JavaApplicationInitIntegrationTest.groovy

        def "defaults to Kotlin build scripts"() {
            when:
            run ('init', '--type', 'java-application')
    
            then:
            dslFixtureFor(KOTLIN).assertGradleFilesGenerated()
        }
    
        def "creates sample source if no source present with #scriptDsl build scripts"() {
            def dslFixture = dslFixtureFor(scriptDsl)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 03:26:38 UTC 2024
    - 9K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/ModuleComponentResolveMetadata.java

        ModuleComponentIdentifier getId();
    
        /**
         * Creates a mutable copy of this metadata.
         *
         * Note that this method can be expensive. Often it is more efficient to use a more specialised mutation method such as {@link #withSources(ModuleSources)} rather than this method.
         */
        MutableModuleComponentResolveMetadata asMutable();
    
        /**
         * Creates a copy of this meta-data with the given sources.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 17:38:42 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. src/internal/trace/summary.go

    				// during a region.
    				//
    				// N.B. ev.Goroutine() will always be NoGoroutine for the
    				// Undetermined case, so this is will simply not fire.
    				if creatorG := s.gs[ev.Goroutine()]; creatorG != nil && len(creatorG.activeRegions) > 0 {
    					regions := creatorG.activeRegions
    					s := regions[len(regions)-1]
    					g.activeRegions = []*UserRegionSummary{{TaskID: s.TaskID, Start: ev}}
    				}
    				s.gs[g.ID] = g
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  4. pkg/scheduler/testing/wrappers.go

    	return p
    }
    
    // Toleration creates a toleration (with the operator Exists)
    // and injects into the inner pod.
    func (p *PodWrapper) Toleration(key string) *PodWrapper {
    	p.Spec.Tolerations = append(p.Spec.Tolerations, v1.Toleration{
    		Key:      key,
    		Operator: v1.TolerationOpExists,
    	})
    	return p
    }
    
    // HostPort creates a container with a hostPort valued `hostPort`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 42.1K bytes
    - Viewed (0)
  5. platforms/enterprise/enterprise-logging/src/main/java/org/gradle/internal/logging/progress/ProgressLoggerFactory.java

    @ServiceScope(Scope.Global.class)
    public interface ProgressLoggerFactory {
        /**
         * Creates a new long-running operation which has not been started.
         *
         * @param loggerCategory The logger category.
         * @return The progress logger for the operation.
         */
        ProgressLogger newOperation(String loggerCategory);
    
        /**
         * Creates a new long-running operation which has not been started.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 2K bytes
    - Viewed (0)
  6. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/tasks/testing/TestFailure.java

        }
    
        /**
         * Creates a new TestFailure instance from a test framework failure.
         *
         * @param failure the failure
         * @return the new instance
         */
        public static TestFailure fromTestFrameworkFailure(Throwable failure) {
            return fromTestFrameworkFailure(failure, null);
        }
    
        /**
         * Creates a new TestFailure instance from a test framework failure.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  7. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/GroovyApplicationInitIntegrationTest.groovy

        public static final String SAMPLE_APP_CLASS = "org/example/App.groovy"
        public static final String SAMPLE_APP_TEST_CLASS = "org/example/AppTest.groovy"
    
        @Override
        String subprojectName() { 'app' }
    
        def "creates sample source if no source present with #scriptDsl build scripts"() {
            when:
            run('init', '--type', 'groovy-application', '--dsl', scriptDsl.id, '--java-version', JavaVersion.current().majorVersion)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 03:26:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  8. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/Factory.java

     * limitations under the License.
     */
    package org.gradle.internal;
    
    import javax.annotation.Nullable;
    
    /**
     * A generic factory which creates instances of type T.
     *
     * @param <T> The type of object created.
     */
    public interface Factory<T> {
        /**
         * Creates a new instance of type T.
         * @return The instance.
         */
        @Nullable
        T create();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 938 bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/DefaultJavaCompilerFactoryTest.groovy

            Stub(AnnotationProcessorDetector),
            Stub(ClassPathRegistry),
            Stub(ActionExecutionSpecFactory),
            Stub(InternalProblems),
            Stub(ProjectCacheDir)
        )
    
        def "creates in-process compiler when JavaCompileSpec is provided"() {
            expect:
            def compiler = factory.create(JavaCompileSpec.class)
            compiler instanceof ModuleApplicationNameWritingCompiler
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  10. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/ScalaApplicationInitIntegrationTest.groovy

        public static final String SAMPLE_APP_CLASS = "org/example/App.scala"
        public static final String SAMPLE_APP_TEST_CLASS = "org/example/AppSuite.scala"
    
        @Override
        String subprojectName() { 'app' }
    
        def "creates sample source if no source present with #scriptDsl build scripts"() {
            when:
            run('init', '--type', 'scala-application', '--dsl', scriptDsl.id, '--java-version', JavaVersion.current().majorVersion)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 03:26:38 UTC 2024
    - 5.5K bytes
    - Viewed (0)
Back to top