Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 893 for Classes (0.11 sec)

  1. testing/architecture-test/src/test/java/org/gradle/architecture/test/FreezeInstructionsPrintingArchRule.java

        private final ArchRule delegate;
    
        public FreezeInstructionsPrintingArchRule(ArchRule delegate) {
            this.delegate = delegate;
        }
    
        @Override
        public void check(JavaClasses classes) {
            Assertions.check(this, classes);
        }
    
        @Override
        public ArchRule because(String reason) {
            return new FreezeInstructionsPrintingArchRule(delegate.because(reason));
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/scopes/KtScope.kt

        /**
         * Return a sequence of [KaClassifierSymbol] which current scope contain if classifier name matches [nameFilter]. The sequence includes:
         * nested classes, inner classes, nested type aliases for the class scope, and top-level classes and top-level type aliases for file scope.
         *
         * This function needs to retrieve a set of all possible names before processing the scope.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/recomp/AbstractRecompilationSpecProvider.java

         * collects all classes that are inside these sources, but were not detected as a dependency of changed classes.
         * This is important so all .class files that will be re-created are removed before compilation, otherwise
         * it confuse a compiler: for example Groovy compiler could generate incorrect classes for Spock.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 23:55:46 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  4. testing/internal-testing/src/main/groovy/org/gradle/integtests/fixtures/TestExecutionResult.java

        String EXECUTION_FAILURE = "failed to execute tests";
    
        /**
         * Asserts that the given test classes (and only the given test classes) were executed.
         */
        TestExecutionResult assertTestClassesExecuted(String... testClasses);
    
        /**
         * Asserts that the given test classes (and only the given test classes) were <strong>NOT</strong> executed.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/BaseIncrementalCompilationAfterFailureIntegrationTest.groovy

            !file("build/classes/$languageName/main/a/").exists()
            !file("build/classes/$languageName/main/c/").exists()
    
            when:
            b.text = "package b; class B {}"
            run language.compileTaskName
    
            then:
            outputs.recompiledClasses("A", "C")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:30 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  6. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyInsightReportVariantDetailsIntegrationTest.groovy

                    'org.gradle.libraryelements': of('jar', 'classes'),
                    'org.gradle.usage': of('java-api', 'java-api'),
                    'org.gradle.jvm.environment': of('', 'standard-jvm')
                ])}
    
    ---------------------
    Unselected Variant(s)
    ---------------------
    
    ${variantOf('apiElements-classes', [
                    'org.gradle.category': of('library', 'library'),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  7. maven-core/src/main/mdo/extension.mdo

              </association>
              <description><![CDATA[Restricts the classes/resources from the current artifact's CoreExtension class realm that are exposed. Values ending with ".*" expose all classes/resources which are directly contained in the given package in binary form. 
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 07 21:28:01 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/gateway/gatewayclass_test.go

    			Spec: gateway.GatewayClassSpec{
    				ControllerName: gateway.GatewayController(controller),
    			},
    		}
    		classes.CreateOrUpdate(gc)
    	}
    	deleteClass := func(name string) {
    		classes.Delete(name, "")
    	}
    	expectClass := func(name, controller string) {
    		t.Helper()
    		retry.UntilSuccessOrFail(t, func() error {
    			gc := classes.Get(name, "")
    			if controller == "" {
    				if gc == nil { // Expect none, got none
    					return nil
    				}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 08:41:13 UTC 2024
    - 3K bytes
    - Viewed (0)
  9. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildIdentityIntegrationTest.groovy

                println "configuring \$project.path"
                classes.doLast { t ->
                    println "classes of \$t.path"
                }
            """
    
            when:
            execute(buildA, ":assemble")
    
            then:
            outputContains("> Configure project :${buildName}")
            result.groupedOutput.task(":${buildName}:classes").output.contains("classes of :classes")
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/timer/SystemMonitorTarget.java

            buf.append("},");
            final Classes classes = jvmStats.getClasses();
            buf.append("\"classes\":{");
            append(buf, "loaded", () -> classes.getLoadedClassCount()).append(',');
            append(buf, "total_loaded", () -> classes.getTotalLoadedClassCount()).append(',');
            append(buf, "unloaded", () -> classes.getUnloadedClassCount());
            buf.append("},");
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7.5K bytes
    - Viewed (0)
Back to top