Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 62 for mixin (0.05 sec)

  1. platforms/core-runtime/launcher/src/test/groovy/org/gradle/tooling/internal/provider/connection/BuildLogLevelMixInTest.groovy

            when:
            parameters.getArguments() >> args
            parameters.getVerboseLogging() >> verbose
            def mixin = new BuildLogLevelMixIn(parameters)
    
            then:
            mixin.getBuildLogLevel() == logLevel
    
            where:
            args                                | verbose | logLevel
            ['-i']                              | false   | LogLevel.INFO
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/adapter/ProtocolToModelAdapter.java

            private final Object mixIn;
    
            MixInBeanMappingAction(Class<?> targetType, Object mixIn) {
                super(targetType);
                this.mixIn = mixIn;
            }
    
            @Override
            public int hashCode() {
                return targetType.hashCode() ^ mixIn.hashCode();
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 04:42:54 UTC 2024
    - 45.4K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/adapter/ViewBuilder.java

         * For a getter method, the mix-in may also provide a method that takes the view as a parameter.
         *
         * @return this
         */
        ViewBuilder<T> mixInTo(Class<?> targetType, Object mixIn);
    
        /**
         * Mixes the given type into all views of the given type created using {@link #build(Object)}.
         * Applied to all views reachable from created views.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/initialization/MixInLegacyTypesClassLoader.java

            super("legacy-mixin-loader", parent, classPath);
            this.legacyTypesSupport = legacyTypesSupport;
        }
    
        public MixInLegacyTypesClassLoader(ClassLoader parent, Collection<URL> urls, LegacyTypesSupport legacyTypesSupport) {
            super("legacy-mixin-loader", parent, urls);
            this.legacyTypesSupport = legacyTypesSupport;
        }
    
        @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 17K bytes
    - Viewed (0)
  5. src/internal/trace/traceviewer/static/webcomponents.min.js

    HTMLElement,o=e.wrappers.HTMLShadowElement,i=e.wrappers.HTMLTemplateElement,a=(e.mixin,e.registerWrapper),s=window.HTMLUnknownElement;t.prototype=Object.create(r.prototype),a(s,t),e.wrappers.HTMLUnknownElement=t}(window.ShadowDOMPolyfill),function(e){"use strict";function t(e){n.call(this,e)}var n=e.wrappers.Element,r=e.wrappers.HTMLElement,o=e.registerWrapper,i=(e.defineWrapGetter,e.unsafeUnwrap),a=e.wrap,s=e.mixin,c="http://www.w3.org/2000/svg",l=window.SVGElement,u=document.createElementNS(c,...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 115.6K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/initialization/DefaultClassLoaderRegistry.java

            this.gradleApiSpec = apiSpecFor(pluginsClassLoader);
            this.workerExtensionSpec = new MixInLegacyTypesClassLoader.Spec("legacy-mixin-loader", classPathRegistry.getClassPath("GRADLE_WORKER_EXTENSIONS").getAsURLs());
            this.apiAndPluginsClassLoader = restrictTo(gradleApiSpec, pluginsClassLoader);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 4K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/UnrelatedMethodInstrumentationInDynamicGroovyIntegrationTest.groovy

            where:
            enableIndy << [true, false]
            indyStatus = enableIndy ? "with indy" : "without indy"
        }
    
        // Lift the visibility of the method to make it available for the mixin
        @Override
        TestFile buildScript(@GroovyBuildScriptLanguage String script) {
            super.buildScript(script)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/AbstractProcessInstrumentationInDynamicGroovyIntegrationTest.groovy

            title = processCreator.replace("command", varInitializer.description)
            indyStatus = enableIndy ? "with indy" : "without indy"
        }
    
    
        // Lift the visibility of the method to make it available for the mixin
        @Override
        TestFile buildScript(@GroovyBuildScriptLanguage String script) {
            super.buildScript(script)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  9. platforms/jvm/scala/src/main/java/org/gradle/language/scala/tasks/BaseScalaCompileOptions.java

        }
    
        /**
         * Phases of the compiler to log.
         * Legal values: namer, typer, pickler, uncurry, tailcalls, transmatch, explicitouter, erasure,
         *               lambdalift, flatten, constructors, mixin, icode, jvm, terminal.
         */
        @Console
        public List<String> getLoggingPhases() {
            return loggingPhases;
        }
    
        public void setLoggingPhases(List<String> loggingPhases) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/api/internal/provider/CircularEvaluationSpec.groovy

                assert ex.evaluationCycle[0..1] == [provider, property]
                assert ex.evaluationCycle.last() == provider
            }
        }
    
        /**
         * A mixin for CircularChainEvaluationSpec<String> that provides implementation of the property() method.
         * Intended for tests of providers which aren't properties.
         */
        trait UsesStringProperty {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 15 20:21:32 UTC 2023
    - 8K bytes
    - Viewed (0)
Back to top