Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for getTransform (0.16 sec)

  1. platforms/extensibility/plugin-use/src/main/java/org/gradle/plugin/use/resolve/service/internal/DefaultInjectedClasspathPluginResolver.java

        ) {
    
            // One wanted side effect of calling InstrumentationStrategy.getTransform() is also to report
            // a configuration cache problem if third-party agent is used with TestKit with configuration cache,
            // see ConfigurationCacheInjectedClasspathInstrumentationStrategy implementation.
            StandardTransform transform = instrumentationStrategy.getTransform();
            switch (transform) {
                case None:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 08:19:55 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/initialization/AbstractInjectedClasspathInstrumentationStrategy.kt

    import java.lang.management.ManagementFactory
    
    
    abstract class AbstractInjectedClasspathInstrumentationStrategy : InjectedClasspathInstrumentationStrategy {
        override fun getTransform(): CachedClasspathTransformer.StandardTransform {
            val isThirdPartyAgentPresent = ManagementFactory.getRuntimeMXBean().inputArguments.find { AgentUtils.isThirdPartyJavaAgentSwitch(it) } != null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  3. pkg/config/schema/kubeclient/common.go

    	// It is important to set this in the newFunc rather than after InformerFor to avoid
    	// https://github.com/kubernetes/kubernetes/issues/117869
    	if opts.ObjectTransform != nil {
    		_ = inf.SetTransform(opts.ObjectTransform)
    	} else {
    		_ = inf.SetTransform(stripUnusedFields)
    	}
    	if err := inf.SetWatchErrorHandler(informermetric.ErrorHandlerForCluster(opts.Cluster)); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 16:38:40 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  4. platforms/core-runtime/build-profile/src/main/java/org/gradle/profile/BuildProfile.java

                transforms.put(transformDescription, profile);
            }
            return profile;
        }
    
        public CompositeOperation<FragmentedOperation> getTransforms() {
            final List<FragmentedOperation> profiles = CollectionUtils.sort(transforms.values(), Operation.slowestFirst());
            return new CompositeOperation<>(profiles);
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:39 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  5. pkg/scheduler/scheduler.go

    		if accessor, err := meta.Accessor(obj); err == nil {
    			if accessor.GetManagedFields() != nil {
    				accessor.SetManagedFields(nil)
    			}
    		}
    		return obj, nil
    	}
    	informer.SetTransform(trim)
    	return informer
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.28.md

    - Fixed a race condition between `Run()` and `SetTransform()` and `SetWatchErrorHandler()` in shared informers. ([#117870](https://github.com/kubernetes/kubernetes/pull/117870), [@howardjohn](https://github.com/howardjohn)) [SIG API Machinery]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (0)
Back to top