Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 105 for Classes (0.17 sec)

  1. platforms/jvm/testing-jvm-infrastructure/build.gradle.kts

        testFixturesImplementation(libs.bsh)
    }
    
    dependencyAnalysis {
        issues {
            onAny() {
                // Bsh is not used directly, but is selected as the result of capabilities conflict resolution - the classes ARE required at runtime by TestNG
                exclude(libs.bsh)
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/build.gradle.kts

        targetCompatibility = "8"
    }
    
    strictCompile {
        ignoreDeprecations() // this project currently uses many deprecated part from 'platform-jvm'
    }
    
    packageCycles {
        // These public packages have classes that are tangled with the corresponding internal package.
        excludePatterns.add("org/gradle/api/tasks/**")
        excludePatterns.add("org/gradle/external/javadoc/**")
    }
    
    integTest.usesJavadocCodeSnippets = true
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. maven-embedder/src/test/java/org/apache/maven/cli/CLIManagerDocumentationTest.java

            }
            sb.append("</table>");
            return sb.toString();
        }
    
        @Test
        void testOptionsAsHtml() throws IOException {
            Path options = Paths.get("target/test-classes/options.html");
            Files.writeString(options, getOptionsAsHtml(), StandardCharsets.UTF_8);
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:06:12 UTC 2024
    - 4K bytes
    - Viewed (0)
  4. testing/architecture-test/src/test/java/org/gradle/architecture/test/ArchUnitFixture.java

            "org.gradle.kotlin..",
            "org.gradle.internal.declarativedsl..",
            "org.gradle.declarative.dsl.."
        ).as("classes written in Java or Groovy");
    
        DescribedPredicate<JavaClass> not_synthetic_classes = new DescribedPredicate<JavaClass>("not synthetic classes") {
            @Override
            public boolean test(JavaClass javaClass) {
                return !javaClass.getModifiers().contains(JavaModifier.SYNTHETIC);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/provider/KotlinScriptEvaluator.kt

            }
    
            override fun compile(workspace: File): File {
                return File(workspace, "classes").apply {
                    mkdirs()
                    compileTo.invoke(this)
                }
            }
    
            override fun instrumentedOutput(workspace: File): File {
                return File(workspace, "instrumented/classes")
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 10:23:24 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/base/FinalizableReferenceQueueTest.java

        assertNotNull(getClass().getResource("internal/Finalizer.class"));
      }
    
      public void testFinalizeClassHasNoNestedClasses() throws Exception {
        // Ensure that the Finalizer class has no nested classes.
        // See https://code.google.com/p/guava-libraries/issues/detail?id=1505
        assertEquals(Collections.emptyList(), Arrays.asList(Finalizer.class.getDeclaredClasses()));
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 19:21:11 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/internal/scripts/BuildScriptCompilationAndInstrumentation.java

            this.transformFactory = transformFactory;
        }
    
        @Override
        public abstract void visitIdentityInputs(InputVisitor visitor);
    
        /**
         * A compile operation. It should return a File where classes are compiled to.
         */
        protected abstract File compile(File workspace);
    
        /**
         * Provides a File where instrumented output will be written to.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 10:23:24 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/TransformErrorHandler.java

            Throwable prevError = lastError.get();
            if (prevError == null) {
                lastError.set(newError);
            } else {
                // We've got a chain of exceptions while loading classes.
                addSuppressedIfAvailable(prevError, newError);
            }
        }
    
        /**
         * Marks the end of code where a transformation exception may occur.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/isolation/IsolatedActionSerializer.kt

        /**
         * The serialized graph.
         */
        val graph: ByteArray,
    
        /**
         * External references that are not serialized directly as part of the [graph].
         * These might include references to classes, value sources and build services.
         *
         * Maps the integer written to the serialized [graph] to the external reference.
         * See [EnvironmentEncoder] and [EnvironmentDecoder] for details.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  10. maven-core/pom.xml

        <artifactId>maven</artifactId>
        <version>4.0.0-beta-4-SNAPSHOT</version>
      </parent>
    
      <artifactId>maven-core</artifactId>
    
      <name>Maven Core</name>
      <description>Maven Core classes.</description>
    
      <dependencies>
        <!--  Maven -->
        <dependency>
          <groupId>org.apache.maven</groupId>
          <artifactId>maven-di</artifactId>
        </dependency>
        <dependency>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:06:12 UTC 2024
    - 15.2K bytes
    - Viewed (0)
Back to top