Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 89 for Colours (0.22 sec)

  1. scripts/docs.py

        new_index_content = f"{missing_translation_snippet}\n\n{en_index_content}"
        new_index_path.write_text(new_index_content, encoding="utf-8")
        typer.secho(f"Successfully initialized: {new_path}", color=typer.colors.GREEN)
        update_languages()
    
    
    @app.command()
    def build_lang(
        lang: str = typer.Argument(
            ..., callback=lang_callback, autocompletion=complete_existing_lang
        ),
    ) -> None:
        """
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jan 22 19:26:14 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  2. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/CleanupFrequency.java

                if (lastCleanupTime == null) {
                    return true;
                } else {
                    return Duration.between(lastCleanupTime, Instant.now())
                        .toHours() >= 24;
                }
            }
        };
    
        /**
         * Trigger cleanup after every build session
         */
        CleanupFrequency ALWAYS = new CleanupFrequency() {
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 20:26:37 UTC 2024
    - 2K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r31/PersistentCompositeDependencySubstitutionCrossVersionSpec.groovy

            then:
            assert eclipseProject.classpath.empty
            eclipseProject.projectDependencies.collect {it.path}  == ['b1']
        }
    
        def "EclipseProject model honours custom project name"() {
            when:
            buildB.buildFile << """
                subprojects {
                    apply plugin: 'eclipse'
                    eclipse {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 8K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/resolver/ConcurrentGroupingQueueTest.kt

            )
    
            assertThat(
                subject.nextGroup(),
                equalTo(requestsInGroup1.reversed())
            )
        }
    
        @Test
        fun `#nextGroup honours timeout`() {
    
            val subject = ConcurrentGroupingQueue<Int> { false }
    
            val pushElementSignal = CountDownLatch(1)
            thread {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/doc/c4/lib/C4_Container.puml

    ' Intended audience: Technical people inside and outside of the software development team; including software architects, developers and operations/support staff.
    
    ' Colors
    ' ##################################
    
    !define CONTAINER_BG_COLOR #438DD5
    
    ' Styling
    ' ##################################
    
    skinparam rectangle<<container>> {
        StereotypeFontColor ELEMENT_FONT_COLOR
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  6. logo/usage_guidelines.md

    The Kubernetes logo is available in 2 formats (PNG & SVG), 3 layouts --
    horizontal (also known as landscape format), stacked (which is closer to
    square), and icon (which does not include the name and is square), and 5
    colors (color/black/white/all-blue/white-text) -- so over 20 versions -- in the
    CNCF [artwork](https://github.com/cncf/artwork/tree/master/projects/kubernetes)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 13 20:03:37 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/doc/c4/lib/C4_Component.puml

    ' Supporting elements: Containers (within the software system in scope) plus people and software systems directly connected to the components.
    ' Intended audience: Software architects and developers.
    
    ' Colors
    ' ##################################
    
    !define COMPONENT_BG_COLOR #85BBF0
    
    ' Styling
    ' ##################################
    
    skinparam rectangle<<component>> {
        StereotypeFontColor ELEMENT_FONT_COLOR
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  8. testing/integ-test/src/integTest/groovy/org/gradle/integtests/TaskExecutionIntegrationTest.groovy

                    |:a
                    |\\--- :b
                    |     \\--- :a (*)
                    |
                    |(*) - details omitted (listed previously)""".stripMargin()
            }
        }
    
        def "honours mustRunAfter task ordering"() {
            buildFile << """
                task a {
                    mustRunAfter 'b'
                }
                task b
                task c(dependsOn: ['a', 'b'])
                task d
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  9. maven-embedder/src/site/apt/index.apt.vm

       {{{/shared/maven-shared-utils/apidocs/org/apache/maven/shared/utils/logging/package-summary.html}styled message API}}
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Feb 20 18:34:43 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/css/javadoc.css

        --body-font-size: 14px;
        --code-font-size: 14px;
        /* Text colors for body and block elements */
        --body-text-color: #353833;
        --block-text-color: #474747;
        /* Background colors for various structural elements */
        --body-background-color: #ffffff;
        --section-background-color: #f8f8f8;
        --detail-background-color: #ffffff;
        /* Colors for navigation bar and table captions */
        --navbar-background-color: #4D7A97;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 14:25:49 UTC 2024
    - 50.5K bytes
    - Viewed (0)
Back to top