Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 21 for contextualize (0.18 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/GradleInternal.java

        /**
         * Returns a unique path for this build within the current Gradle invocation.
         */
        Path getIdentityPath();
    
        String contextualize(String description);
    
        PublicBuildPath getPublicBuildPath();
    
        /**
         * The basis for project build scripts.
         *
         * It is the Gradle runtime + buildSrc's contributions.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/execution/taskgraph/DefaultTaskExecutionGraph.java

            }
    
            @Override
            public BuildOperationDescriptor.Builder description() {
                return BuildOperationDescriptor.displayName(
                        gradleInternal.contextualize("Notify task graph whenReady listeners"))
                    .details(
                        new NotifyTaskGraphWhenReadyDetails(
                            gradleInternal.getIdentityPath()
                        )
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/invocation/DefaultGradle.java

            if (identityPath == null) {
                identityPath = services.get(PublicBuildPath.class).getBuildPath();
            }
            return identityPath;
        }
    
        @Override
        public String contextualize(String description) {
            if (isRootBuild()) {
                return description;
            } else {
                Path contextPath = getIdentityPath();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 05:18:22 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/inspect/ModelRuleExtractor.java

                        public ModelPath getScope() {
                            return targetPath;
                        }
    
                        @Override
                        public ModelAction contextualize(final MethodRuleAction action) {
                            final List<ModelReference<?>> inputs = withImplicitInputs(action.getInputs());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 26K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultMavenPluginManager.java

            // We are forcing the use of the plugin realm for all lookups that might occur during
            // the lifecycle that is part of the lookup. Here we are specifically trying to keep
            // lookups that occur in contextualize calls in line with the right realm.
            ClassRealm oldLookupRealm = container.setLookupRealm(pluginRealm);
    
            ClassLoader oldClassLoader = Thread.currentThread().getContextClassLoader();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/execution/selection/BuildTaskSelector.java

        BuildSpecificSelector relativeToBuild(BuildState target);
    
        /**
         * A selector that is contextualized to select tasks relative to some build.
         */
        interface BuildSpecificSelector {
            TaskSelection resolveTaskName(String taskName);
        }
    
        class Filter {
            private final BuildState build;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheState.kt

                write(gradle.settings.settingsScript.resource.file)
                writeBuildDefinition(state.buildDefinition)
                write(state.identityPath)
            }
            // Encode the build state using the contextualized IO service for the nested build
            state.projects.withMutableStateOfAllProjects {
                gradle.serviceOf<ConfigurationCacheIO>().writeIncludedBuildStateTo(
                    stateFileFor(state.buildDefinition),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/internal/service/scopes/DefaultGradleUserHomeScopeServiceRegistryTest.groovy

        def homeDirServices = new DefaultGradleUserHomeScopeServiceRegistry(globalServices, new HomeDirServiceProvider())
    
        def "creates service registry contextualised to home dir"() {
            def dir = new File("home-dir")
    
            expect:
            def services = homeDirServices.getServicesFor(dir)
            services.get(SomeGlobalService) != null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 8K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/cache/DefaultCacheConfigurations.java

                }
                getRemoveUnusedEntriesOlderThan().set(providerFromSupplier(daysAgo(removeUnusedEntriesAfterDays)));
            }
        }
    
        /**
         * An implementation of {@link Property} that provides a contextualized error if the value is mutated after finalization.
         */
        private static class ContextualErrorMessageProperty<T> extends DefaultProperty<T> {
            private final String displayName;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 20:26:37 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  10. pilot/pkg/model/context.go

    	// PrevMergedGateway contains information about merged gateway associated with the proxy previously
    	PrevMergedGateway *PrevMergedGateway
    
    	// ServiceTargets contains a list of all Services associated with the proxy, contextualized for this particular proxy.
    	// These are unique to this proxy, as the port information is specific to it - while a ServicePort is shared with the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 33.6K bytes
    - Viewed (0)
Back to top