Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 399 for Classes (0.1 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/scopes/KtTypeScope.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.5K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDirectoryPluginIntegrationTest.groovy

                    dependencies {
                        classpath(files("./first/build/classes/java/main"))
                        classpath(files("./second/build/classes/java/main"))
                    }
                }
                apply plugin: FirstPlugin
                apply plugin: SecondPlugin
            """
    
            when:
            executer.inDirectory(file("first")).withTasks("classes").run()
            executer.inDirectory(file("second")).withTasks("classes").run()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  8. testing/architecture-test/src/test/java/org/gradle/architecture/test/PublicApiCorrectnessTest.java

                    .or(type(BiFunction.class))
                    .as("built-in JDK classes"))
                .or(type(Function1.class)
                    .or(type(KClass.class))
                    .or(type(KClass[].class))
                    .or(type(KProperty.class))
                    .or(type(Pair[].class))
                    .as("Kotlin classes")
                );
        private static final DescribedPredicate<JavaClass> public_api_tasks_or_plugins =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  9. build-logic/packaging/src/main/kotlin/gradlebuild/instrumentation/transforms/InstrumentationMetadataTransform.kt

                        // "instrumented-classes.txt" is always just one in a classes dir
                        change.file.name.equals(INSTRUMENTED_CLASSES_FILE) -> instrumentedClassesFile = handleInstrumentedMetadataFileChange(change)
                        // "upgraded-properties.json" is always just one in a classes dir
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 19 14:00:26 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  10. testing/integ-test/src/integTest/resources/org/gradle/integtests/ProjectLayoutIntegrationTest/canUseANonStandardBuildDir/build.gradle

        mavenCentral()
    }
    
    dependencies {
        testImplementation 'junit:junit:4.13'
    }
    
    buildDir = 'target'
    sourceSets.main.java.destinationDirectory.set(new File(buildDir, 'main-classes'))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 309 bytes
    - Viewed (0)
Back to top