Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for contextualize (0.19 sec)

  1. 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)
  2. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-component-api/1.0-alpha-32/plexus-component-api-1.0-alpha-32.jar

    figuration.PlexusConfigurationE; } org/codehaus/plexus/personality/plexus/lifecycle/phase/Contextualizable.class package org.codehaus.plexus.personality.plexus.lifecycle.phase; public abstract interface Contextualizable { public abstract void contextualize(org.codehaus.plexus.context.Context) throws org.codehaus.plexus.context.ContextException; } org/codehaus/plexus/personality/plexus/lifecycle/phase/Disposable.class package org.codehaus.plexus.personality.plexus.lifecycle.phase; public abstract...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 35.3K bytes
    - Viewed (0)
  3. 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)
  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