Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,441 for generations (0.34 sec)

  1. platforms/jvm/plugins-application/src/main/java/org/gradle/jvm/application/scripts/TemplateBasedScriptGenerator.java

    package org.gradle.jvm.application.scripts;
    
    import org.gradle.api.resources.TextResource;
    
    /**
     * Interface for generating scripts with the provided details based on a provided template.
     */
    public interface TemplateBasedScriptGenerator extends ScriptGenerator {
    
        /**
         * Sets the template text resource used for generating script.
         *
         * @param template Template text resource
         */
        void setTemplate(TextResource template);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  2. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/AbstractIdeLifecycleIntegrationTest.groovy

            and:
            projectName(".") == "root"
            projectName("foo") == "foo"
            projectName("foo/bar") == "bar"
        }
    
        @ToBeFixedForConfigurationCache
        def "clean tasks always run before generation tasks when specified on the command line"() {
            when:
            run cleanTaskName, lifeCycleTaskName
    
            then:
            assertCleanTasksRunBeforeGenerationTasks()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  3. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/ProjectLayoutSetupRegistry.java

            return result;
        }
    
        public List<BuildGenerator> getGeneratorsFor(ComponentType componentType) {
            List<BuildGenerator> generators = getGenerators();
            List<BuildGenerator> result = new ArrayList<>(generators.size());
            for (BuildGenerator generator : generators) {
                if (generator.getComponentType().equals(componentType)) {
                    result.add(generator);
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 20:06:28 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  4. build-logic/documentation/src/main/groovy/gradlebuild/docs/Javadocs.java

    import org.gradle.api.provider.Property;
    
    import java.net.URI;
    
    /**
     * Configuration for generating Javadocs
     */
    public abstract class Javadocs {
        /**
         * Link to Java API to use when generating Javadoc
         */
        public abstract Property<URI> getJavaApi();
    
        /**
         * Link to Groovy API to use when generating Javadoc
         */
        public abstract Property<URI> getGroovyApi();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 17 08:08:46 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  5. pkg/collateral/predicate.go

    )
    
    // Predicates are a set of predicates to apply when generating collaterals.
    type Predicates struct {
    	SelectEnv    SelectEnvFn
    	SelectMetric SelectMetricFn
    }
    
    // SelectEnvFn is a predicate function for selecting environment variables when generating collateral documents.
    type SelectEnvFn func(env.Var) bool
    
    // SelectMetricFn is a predicate function for selecting metrics when generating collateral documents.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 08 16:43:05 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  6. pkg/registry/discovery/endpointslice/strategy.go

    		ogNewMeta.Generation = ogOldMeta.Generation + 1
    	}
    
    	newEPS.ObjectMeta = ogNewMeta
    	oldEPS.ObjectMeta = ogOldMeta
    
    	dropDisabledFieldsOnUpdate(oldEPS, newEPS)
    	dropTopologyOnV1(ctx, oldEPS, newEPS)
    }
    
    // Validate validates a new EndpointSlice.
    func (endpointSliceStrategy) Validate(ctx context.Context, obj runtime.Object) field.ErrorList {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 02 10:00:01 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  7. pkg/generated/openapi/OWNERS

      - roycaihw
      - liggitt
      # APIs frequently hit this directory for zz_generate.openapi.go
      - api-approvers
    reviewers:
      - sttts
      - roycaihw
      - liggitt
    labels:
      - sig/api-machinery
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 13 19:27:53 UTC 2023
    - 231 bytes
    - Viewed (0)
  8. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/core/BuildScanBuildFailureHintIntegrationTest.groovy

            given:
            buildFile << failingBuildFile()
    
            when:
            fails(DUMMY_TASK_AND_BUILD_SCAN as String[])
    
            then:
            fixture.appliedOnce(output)
            failure.assertNotOutput(SCAN)
        }
    
        def "never renders hint for failing build if plugin was applied in plugins DSL and not requested for generation"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 14:40:39 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  9. src/runtime/traceevent.go

    	// GoStatus with stack.
    	traceEvGoStatusStack // goroutine status at the start of a generation, with a stack [timestamp, goroutine ID, M ID, status, stack ID]
    
    	// Batch event for an experimental batch with a custom format.
    	traceEvExperimentalBatch // start of extra data [experiment ID, generation, M ID, timestamp, batch length, batch data...]
    )
    
    // traceArg is a simple wrapper type to help ensure that arguments passed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  10. pkg/registry/flowcontrol/prioritylevelconfiguration/strategy.go

    	oldPriorityLevelConfiguration := old.(*flowcontrol.PriorityLevelConfiguration)
    
    	// Spec updates bump the generation so that we can distinguish between status updates.
    	if !apiequality.Semantic.DeepEqual(newPriorityLevelConfiguration.Spec, oldPriorityLevelConfiguration.Spec) {
    		newPriorityLevelConfiguration.Generation = oldPriorityLevelConfiguration.Generation + 1
    	}
    	newPriorityLevelConfiguration.Status = oldPriorityLevelConfiguration.Status
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 26 20:55:50 UTC 2024
    - 8.9K bytes
    - Viewed (0)
Back to top