Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for integ (0.03 sec)

  1. .teamcity/src/main/kotlin/configurations/FlakyTestQuarantine.kt

                            ":docs:configCacheTest",
                            "-x",
                            ":distributions-integ-tests:quickTest",
                            "-x",
                            ":distributions-integ-tests:platformTest",
                            "-x",
                            ":distributions-integ-tests:configCacheTest",
                        ) +
                        listOf(extraParameters) +
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Mon Dec 22 07:15:16 UTC 2025
    - 5.6K bytes
    - Viewed (0)
  2. .teamcity/subprojects.json

        "path": "packaging/distributions-full",
        "unitTests": false,
        "functionalTests": false,
        "crossVersionTests": false
      },
      {
        "name": "distributions-integ-tests",
        "path": "testing/distributions-integ-tests",
        "unitTests": false,
        "functionalTests": true,
        "crossVersionTests": false
      },
      {
        "name": "distributions-jvm",
        "path": "platforms/jvm/distributions-jvm",
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Thu Dec 18 18:40:11 UTC 2025
    - 37.5K bytes
    - Viewed (0)
  3. .github/CODEOWNERS

    testing/soak/                                   @gradle/bt-developer-productivity
    testing/distributions-integ-tests               @gradle/bt-developer-productivity
    testing/public-api-tests                        @gradle/bt-developer-productivity
    testing/integ-test/
    version.txt
    released-versions.json
    
    # Dev setup
    .idea                                   @gradle/bt-developer-productivity
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Fri Nov 07 21:47:29 UTC 2025
    - 11K bytes
    - Viewed (0)
  4. .idea/gradle.xml

                <option value="$PROJECT_DIR$/testing/distributions-integ-tests" />
                <option value="$PROJECT_DIR$/testing/integ-test" />
                <option value="$PROJECT_DIR$/testing/internal-architecture-testing" />
                <option value="$PROJECT_DIR$/testing/internal-integ-testing" />
                <option value="$PROJECT_DIR$/testing/internal-performance-testing" />
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Thu Dec 11 18:02:10 UTC 2025
    - 23.2K bytes
    - Viewed (0)
  5. .github/workflows/submit-github-dependency-graph.yml

            # Exclude some projects and configurations that should not contribute to the dependency graph
            DEPENDENCY_GRAPH_EXCLUDE_PROJECTS: ':docs|:internal-performance-testing|:enterprise-plugin-performance|:performance|:internal-integ-testing'
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Thu Nov 20 22:15:20 UTC 2025
    - 933 bytes
    - Viewed (0)
  6. .teamcity/src/test/kotlin/CIConfigIntegrationTests.kt

            val projectFoldersWithFunctionalTests =
                subProjectFolderList().filter {
                    File(it, "src/integTest").exists() &&
                        it.name != "distributions-integ-tests" &&
                        // distributions:integTest is part of Build Distributions
                        it.name != "soak" // soak tests have their own test category
                }
    
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Thu Oct 16 01:27:05 UTC 2025
    - 14.6K bytes
    - Viewed (0)
  7. .teamcity/src/main/kotlin/common/CommonExtensions.kt

            param("env.GRADLE_INTERNAL_REPO_URL", "%gradle.internal.repository.url%")
            if (os == Os.MACOS && arch == Arch.AMD64) {
                // Use fewer parallel forks only on Intel macOS builds, since they are not very powerful.
                param("maxParallelForks", "2")
            }
            if (os == Os.LINUX || os == Os.MACOS) {
                param("env.LC_ALL", "en_US.UTF-8")
            }
        }
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Mon Dec 22 07:15:16 UTC 2025
    - 15.6K bytes
    - Viewed (0)
  8. doc/asm.html

    </p>
    
    <p>
    Here follow some descriptions of key Go-specific details for the supported architectures.
    </p>
    
    <h3 id="x86">32-bit Intel 386</h3>
    
    <p>
    The runtime pointer to the <code>g</code> structure is maintained
    through the value of an otherwise unused (as far as Go is concerned) register in the MMU.
    Registered: Tue Dec 30 11:13:12 UTC 2025
    - Last Modified: Fri Nov 14 19:09:46 UTC 2025
    - 36.5K bytes
    - Viewed (0)
  9. RELEASE.md

                AVX512_BF16, AMX, etc.
                ([Intel Cascade Lake](https://www.intel.com/content/www/us/en/products/platforms/details/cascade-lake.html)
                and newer CPUs.)
                *   [Example performance speedups.](https://medium.com/intel-analytics-software/leverage-intel-deep-learning-optimizations-in-tensorflow-129faa80ee07)
    Registered: Tue Dec 30 12:39:10 UTC 2025
    - Last Modified: Tue Oct 28 22:27:41 UTC 2025
    - 740.4K bytes
    - Viewed (3)
  10. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/concurrent/BuildPlanExecutor.java

                    steps.values().stream().filter(n -> !toKeep.contains(n)).forEach(BuildStep::skip);
    
                    plan.addProject(project, steps);
                }
    
                // Create inter project dependencies
                plan.allSteps().filter(step -> step.phase != null).forEach(step -> {
                    Lifecycle.Phase phase = step.phase;
                    MavenProject project = step.project;
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Oct 16 06:12:36 UTC 2025
    - 55.1K bytes
    - Viewed (0)
Back to top