Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 103 for enhanced (0.14 sec)

  1. maven-core/src/main/java/org/apache/maven/configuration/internal/EnhancedComponentConfigurator.java

    import org.codehaus.plexus.configuration.PlexusConfiguration;
    
    /**
     * A component configurator which can leverage the {@link EnhancedConfigurationConverter}
     * and {@link EnhancedConverterLookup}.
     */
    @Singleton
    @Named("enhanced")
    public class EnhancedComponentConfigurator extends BasicComponentConfigurator {
    
        public EnhancedComponentConfigurator() {
            converterLookup = new EnhancedConverterLookup();
        }
    
        @Override
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 05 09:45:47 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultLocalRepositoryManager.java

                InternalSession session, LocalRepository local) {
            org.eclipse.aether.repository.LocalRepository repository = session.toRepository(local);
            if ("enhanced".equals(repository.getContentType())) {
                repository = new org.eclipse.aether.repository.LocalRepository(repository.getBasePath(), "");
            }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 16:33:18 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  3. cluster/addons/dns/kube-dns/README.md

    generate the kube-dns.yaml.in needed in Salt format.
    
    Due to a varied preference in templating language choices, the transform
    Makefile in this directory should be enhanced to generate all required formats
    from the base underscore templates.
    
    **N.B.**: When you add a parameter you should also update the various scripts
    that supply values for your new parameter.  Here is one way you might find those
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 13 20:03:37 UTC 2020
    - 1.8K bytes
    - Viewed (0)
  4. src/runtime/memclr_amd64.s

    // ABIInternal for performance.
    TEXT runtime·memclrNoHeapPointers<ABIInternal>(SB), NOSPLIT, $0-16
    	// AX = ptr
    	// BX = n
    	MOVQ	AX, DI	// DI = ptr
    	XORQ	AX, AX
    
    	// MOVOU seems always faster than REP STOSQ when Enhanced REP STOSQ is not available.
    tail:
    	// BSR+branch table make almost all memmove/memclr benchmarks worse. Not worth doing.
    	TESTQ	BX, BX
    	JEQ	_0
    	CMPQ	BX, $2
    	JBE	_1or2
    	CMPQ	BX, $4
    	JBE	_3or4
    	CMPQ	BX, $8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 20:52:34 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/server/options/feature.go

    	fs.BoolVar(&o.EnablePriorityAndFairness, "enable-priority-and-fairness", o.EnablePriorityAndFairness, ""+
    		"If true, replace the max-in-flight handler with an enhanced one that queues and dispatches with priority and fairness")
    }
    
    func (o *FeatureOptions) ApplyTo(c *server.Config, clientset kubernetes.Interface, informers informers.SharedInformerFactory) error {
    	if o == nil {
    		return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 18:51:27 UTC 2024
    - 3K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/core-plugins/jacoco_plugin.adoc

    ====
    
    While all tasks of type link:{groovyDslPath}/org.gradle.api.tasks.testing.Test.html[Test] are automatically enhanced to provide coverage information when the `java` plugin has been applied, any task that implements link:{javadocPath}/org/gradle/process/JavaForkOptions.html[JavaForkOptions] can be enhanced by the JaCoCo plugin. That is, any task that forks Java processes can be used to generate coverage information.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/plugins/DslObject.java

    import org.gradle.internal.deprecation.DeprecationLogger;
    import org.gradle.internal.metaobject.DynamicObject;
    
    import static org.gradle.internal.Cast.uncheckedCast;
    
    /**
     * Provides a unified, typed, interface to an enhanced DSL object.
     *
     * This is intended to be used with objects that have been decorated by the class generator.
     * <p>
     * Accessing each “aspect” of a DSL object may fail (with an {@link IllegalStateException}) if the DSL
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/device_index_selector.cc

      // Convert all the DeviceIndex ops to constant values.
      func.getBody().walk([](TF::DeviceIndexOp op) {
        // This just selects the default in all cases where DeviceIndex feeds into
        // tf.Case. This could be enhanced to have some sort of policy in the
        // future.
        OpBuilder b(op);
        RankedTensorType type = RankedTensorType::get({}, b.getIntegerType(32));
        int index = op.getDeviceNames().size();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 03 12:35:38 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  9. tests/integration/pilot/multiplecontrolplanes/main_test.go

    		Setup(istio.Setup(nil, func(ctx resource.Context, cfg *istio.Config) {
    			s := ctx.Settings()
    			// TODO test framework has to be enhanced to use istioNamespace in istioctl commands used for VM config
    			s.SkipWorkloadClasses = append(s.SkipWorkloadClasses, echo.VM)
    			s.DisableDefaultExternalServiceConnectivity = true
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 16:52:52 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/configuration/internal/EnhancedConfigurationConverter.java

    import org.codehaus.plexus.component.configurator.expression.TypeAwareExpressionEvaluator;
    import org.codehaus.plexus.configuration.PlexusConfiguration;
    import org.eclipse.sisu.plexus.CompositeBeanHelper;
    
    /**
     * An enhanced {@link ObjectWithFieldsConverter} leveraging the {@link TypeAwareExpressionEvaluator}
     * interface.
     */
    class EnhancedConfigurationConverter extends ObjectWithFieldsConverter {
        protected Object fromExpression(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 07:40:37 UTC 2024
    - 4.6K bytes
    - Viewed (0)
Back to top