Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of about 10,000 for _this6 (0.26 sec)

  1. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/worker/ForkingTestClassProcessor.java

            DocumentationRegistry documentationRegistry
        ) {
            this.workerThreadRegistry = workerThreadRegistry;
            this.workerFactory = workerFactory;
            this.processorFactory = processorFactory;
            this.options = options;
            this.classpath = classpath;
            this.buildConfigAction = buildConfigAction;
            this.documentationRegistry = documentationRegistry;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 12:13:32 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DaemonGreeter.java

            return startupCommunication.readDiagnostics(lastLine);
        }
    
        private String prepareMessage(String output, List<String> startupArgs) {
            return DaemonMessages.UNABLE_TO_START_DAEMON +
                "\nThis problem might be caused by incorrect configuration of the daemon." +
                "\nFor example, an unrecognized jvm option is used." +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 05 22:24:02 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. pkg/test/framework/components/echo/instances.go

    	return i.Contains(t.Instances()...)
    }
    
    func (i Instances) Contains(instances ...Instance) bool {
    	for _, thatI := range instances {
    		found := false
    		for _, thisI := range i {
    			if thisI == thatI {
    				found = true
    				break
    			}
    		}
    		if !found {
    			return false
    		}
    	}
    	return true
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 18:26:17 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  4. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/KtFe10AnalysisSession.kt

        override val expressionTypeProviderImpl: KaExpressionTypeProvider = KaFe10ExpressionTypeProvider(this)
        override val psiTypeProviderImpl: KaPsiTypeProvider = KaFe10PsiTypeProvider(this)
        override val typeProviderImpl: KaTypeProvider = KaFe10TypeProvider(this)
        override val typeInfoProviderImpl: KaTypeInfoProvider = KaFe10TypeInfoProvider(this)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu May 23 08:30:49 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  5. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/generator/TestProjectGeneratorConfiguration.groovy

            this(projectName, projectName, language)
        }
    
        TestProjectGeneratorConfigurationBuilder(String projectName, String templateName, Language language = Language.JAVA) {
            this.projectName = projectName
            this.templateName = templateName
            this.language = language
            this.dsl = GradleDsl.GROOVY
            this.buildSrc = true
            this.fileToChangeByScenario = [:]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 13:08:21 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  6. analysis/analysis-api/testData/components/compilerFacility/firPluginPrototypeMultiModule/compilerPluginUsage.ir.txt

                    $this: VALUE_PARAMETER name:<this> type:<root>.CodeFragment.run.Foo
                    BLOCK_BODY
                CLASS CLASS name:Bar modality:FINAL visibility:local superTypes:[<root>.CodeFragment.run.Foo]
                  $this: VALUE_PARAMETER INSTANCE_RECEIVER name:<this> type:<root>.CodeFragment.run.Bar
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Apr 16 19:18:28 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/provider/HasMultipleValues.java

         *
         * <p>This is the same as {@link #set(Iterable)} but returns this property to allow method chaining.</p>
         *
         * @param elements The elements, can be null.
         * @return this
         * @since 5.6
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 18:32:13 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/TestDependency.groovy

            if (s.length == 3) {
                this.group = s[0]
                this.name = s[1]
                this.version = s[2]
            } else if (s.length == 2) {
                if (StringUtils.isNumeric(s[1])) {
                    this.group = "org"
                    this.name = s[0]
                    this.version = s[1]
                } else {
                    this.group = s[0]
                    this.name = s[1]
                    this.version = "1"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2K bytes
    - Viewed (0)
  9. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/MavenInvocationSpec.groovy

            this.installation = installation
            this.mavenVersion = installation.version
            this.mavenHome = installation.home
            this.workingDirectory = workingDirectory
            this.tasksToRun = tasksToRun
            this.jvmArguments = jvmOpts
            this.mavenOpts = mavenOpts
            this.args = args
        }
    
        @Override
        boolean isExpectFailure() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  10. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/DefaultTypeValidationData.java

        private final String typeName;
    
        public DefaultTypeValidationData(String pluginId, String propertyName, String parentPropertyName, String typeName) {
            this.pluginId = pluginId;
            this.propertyName = propertyName;
            this.parentPropertyName = parentPropertyName;
            this.typeName = typeName;
        }
    
        @Override
        public String getPluginId() {
            return pluginId;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 3.3K bytes
    - Viewed (0)
Back to top