Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 474 for Classes (0.11 sec)

  1. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/serialize/DefaultClassEncoder.kt

    ) : ClassEncoder {
    
        private
        val classes = WriteIdentities()
    
        private
        val scopes = WriteIdentities()
    
        override fun WriteContext.encodeClass(type: Class<*>) {
            val id = classes.getId(type)
            if (id != null) {
                writeSmallInt(id)
            } else {
                val scope = scopeLookup.scopeFor(type.classLoader)
                val newId = classes.putInstance(type)
                writeSmallInt(newId)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. testing/architecture-test/build.gradle.kts

        id("gradlebuild.binary-compatibility")
    }
    
    description = """Verifies that Gradle code complies with architectural rules.
        | For example that nullable annotations are used consistently or that or that public api classes do not extend internal types.
    """.trimMargin()
    
    dependencies {
        currentClasspath(project(":distributions-full"))
        testImplementation(project(":base-services"))
        testImplementation(project(":model-core"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:43:33 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  3. analysis/analysis-api-impl-base/build.gradle.kts

        testImplementation(project(":analysis:symbol-light-classes"))
        testImplementation(projectTests(":analysis:decompiled:decompiler-to-file-stubs"))
        testImplementation(project(":analysis:decompiled:decompiler-to-file-stubs"))
        testImplementation(project(":analysis:decompiled:light-classes-for-decompiled"))
        testImplementation(project(":analysis:decompiled:decompiler-to-psi"))
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:22:24 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. platforms/jvm/language-jvm/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.api-java")
        id("gradlebuild.instrumented-project")
    }
    
    description = """Contains some base and shared classes for JVM language support, like AbstractCompile class and BaseForkOptions classes,
    JVM-specific dependencies blocks and JVM test suite interfaces."""
    
    errorprone {
        disabledChecks.addAll(
            "OverridesJavaxInjectableMethod", // 1 occurrences
            "UnusedMethod", // 1 occurrences
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  5. build-logic/packaging/src/main/kotlin/gradlebuild/packaging/transforms/CopyPublicApiClassesTransform.kt

    import java.util.zip.ZipEntry
    import java.util.zip.ZipFile
    
    
    // TODO This should work via filtering classes dirs, but for that we need to be able to set a default attribute
    //      on classes directories -- see https://github.com/gradle/gradle/issues/29319
    @DisableCachingByDefault(because = "Only copies public API classes")
    abstract class CopyPublicApiClassesTransform : TransformAction<TransformParameters.None> {
    
        @get:InputArtifact
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 11:35:57 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  6. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testng/TestNGUpToDateCheckIntegrationTest.groovy

            file('suite.xml') << '''
                <!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd">
                <suite name="MySuite">
                  <test name="MyTest">
                    <classes>
                      <class name="SomeTest" />
                    </classes>
                  </test>
                </suite>
            '''.stripIndent()
        }
    
        @Issue('https://github.com/gradle/gradle/issues/4924')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 18 12:30:10 UTC 2024
    - 6K bytes
    - Viewed (0)
  7. src/runtime/msize.go

    // Copyright 2009 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Malloc small size classes.
    //
    // See malloc.go for overview.
    // See also mksizeclasses.go for how we decide what size classes to use.
    
    package runtime
    
    // Returns size of the memory block that mallocgc will allocate if you ask for the size,
    // minus any inline space for metadata.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/JdkTools.java

                return delegate.getTask(out, fileManager, diagnosticListener, options, classes, compilationUnits);
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/deps/ClassSetAnalysisData.java

    import java.util.Set;
    import java.util.function.Supplier;
    
    /**
     * Provides information about a set of classes, e.g. a JAR or a whole classpath.
     * Contains a hash for every class contained in the set, so it can determine which classes have changed compared to another set.
     * Contains a reverse dependency view, so we can determine which classes in this set are affected by a change to a class inside or outside this set.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 15:22:57 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources_test.go

    }
    
    func TestPlugin(t *testing.T) {
    	testcases := map[string]struct {
    		nodes       []*v1.Node // default if unset is workerNode
    		pod         *v1.Pod
    		claims      []*resourcev1alpha2.ResourceClaim
    		classes     []*resourcev1alpha2.ResourceClass
    		schedulings []*resourcev1alpha2.PodSchedulingContext
    
    		// objs get stored directly in the fake client, without passing
    		// through reactors, in contrast to the types above.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 61.9K bytes
    - Viewed (0)
Back to top