Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 36 of 36 for contextualize (0.16 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. pkg/scheduler/schedule_one.go

    	}
    	// pod could be nil when schedulerQueue is closed
    	if podInfo == nil || podInfo.Pod == nil {
    		return
    	}
    
    	pod := podInfo.Pod
    	// TODO(knelasevero): Remove duplicated keys from log entry calls
    	// When contextualized logging hits GA
    	// https://github.com/kubernetes/kubernetes/issues/111672
    	logger = klog.LoggerWithValues(logger, "pod", klog.KObj(pod))
    	ctx = klog.NewContext(ctx, logger)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 13:28:08 UTC 2024
    - 43.4K bytes
    - Viewed (0)
Back to top