Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,228 for eqclass (0.2 sec)

  1. platforms/documentation/docs/src/snippets/dependencyManagement/artifactTransforms-minify/groovy/producer/src/main/java/producer/MyClass.java

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - Viewed (0)
  2. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/IncubatingInternalInterfaceAddedRule.groovy

        }
    
        protected Violation checkSuperClassChanges(JApiClass c, CtClass oldClass, CtClass newClass) {
            Map<String, CtClass> oldInterfaces = collectImplementedInterfaces(oldClass)
            Map<String, CtClass> newInterfaces = collectImplementedInterfaces(newClass)
    
            newInterfaces.keySet().removeAll(oldInterfaces.keySet())
    
            if (newInterfaces.isEmpty()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 06 19:15:15 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  3. internal/config/storageclass/storage-class.go

    )
    
    // Standard constants for all storage class
    const (
    	// Reduced redundancy storage class
    	RRS = "REDUCED_REDUNDANCY"
    	// Standard storage class
    	STANDARD = "STANDARD"
    )
    
    // Standard constats for config info storage class
    const (
    	ClassStandard = "standard"
    	ClassRRS      = "rrs"
    	Optimize      = "optimize"
    	InlineBlock   = "inline_block"
    
    	// Reduced redundancy storage class environment variable
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/gateway/testdata/deployment/custom-class.yaml

    Ben Leggett <******@****.***> 1714764582 -0400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 19:29:42 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  5. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/BinaryBreakingSuperclassChangeRule.groovy

        }
    
        @Override
        protected Violation checkSuperClassChanges(JApiClass apiClass, CtClass oldClass, CtClass newClass) {
            return acceptOrReject(apiClass.superclass, Violation.notBinaryCompatible(apiClass.superclass))
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 06 19:15:15 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  6. platforms/core-runtime/build-process-services/src/test/groovy/org/gradle/internal/installation/CurrentGradleInstallationLocatorTest.groovy

            TestFile contents = tmpDir.createDir('contents')
            TestFile classFile = contents.createFile('org/gradle/MyClass.class')
    
            ClassNode classNode = new ClassNode()
            classNode.version = Opcodes.V1_6
            classNode.access = Opcodes.ACC_PUBLIC
            classNode.name = 'org/gradle/MyClass'
            classNode.superName = 'java/lang/Object'
    
            ClassWriter cw = new ClassWriter(0)
            classNode.accept(cw)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GradleResolveVisitor.java

            // look into the compile unit if there is a class with that name
            CompileUnit compileUnit = currentClass.getCompileUnit();
            if (compileUnit == null) {
                return false;
            }
            ClassNode cuClass = compileUnit.getClass(type.getName());
            if (cuClass != null) {
                if (type != cuClass) {
                    type.setRedirect(cuClass);
                }
                return true;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/plugins/DefaultPluginRegistry.java

                    Optional<PluginImplementation<?>> value = entry.getValue();
                    if (value.isPresent()) {
                        PluginImplementation<?> found = value.get();
                        if (found.asClass().equals(lookup.asClass())) {
                            PluginId foundId = entry.getKey().id;
                            if (foundId != null) {
                                builder.add(foundId);
                            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:52:06 UTC 2021
    - 10.4K bytes
    - Viewed (0)
  9. platforms/core-runtime/internal-instrumentation-processor/src/test/groovy/org/gradle/internal/instrumentation/processor/ConfigurationCacheInstrumentationProcessorTest.groovy

                class Test {
                    @InterceptCalls
                    @CallableKind.StaticMethod(ofClass = my.Test.class)
                    @CallableDefinition.Name("${first}Target")
                    public static void ${first}() {}
    
                    @InterceptCalls
                    @CallableKind.StaticMethod(ofClass = my.Test.class)
                    @CallableDefinition.Name("${second}Target")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 02 15:44:14 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/api/internal/plugins/DefaultPluginRegistryTest.groovy

            when:
            def type = child.lookup(DefaultPluginId.of("somePlugin")).asClass()
    
            then:
            type == TestPlugin1
        }
    
        private URL writePluginProperties(Class implClass) {
            def props = new Properties()
            props.setProperty("implementation-class", implClass.name)
            def propertiesFile = testDir.file("${implClass}.properties")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:52:06 UTC 2021
    - 13K bytes
    - Viewed (0)
Back to top