Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 89 for Colours (0.15 sec)

  1. platforms/core-configuration/kotlin-dsl/doc/c4/lib/C4_Context.puml

    ' Supporting elements: People and software systems directly connected to the software system in scope.
    ' Intended audience: Everybody, both technical and non-technical people, inside and outside of the software development team.
    
    ' Colors
    ' ##################################
    
    !define PERSON_BG_COLOR #08427B
    !define EXTERNAL_PERSON_BG_COLOR #686868
    !define SYSTEM_BG_COLOR #1168BD
    !define EXTERNAL_SYSTEM_BG_COLOR #999999
    
    ' Styling
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/html.go

    		colors := [...]string{"#eea24f", "#f38385", "#f4d164", "#ca89fc", "gray"}
    		ci := 0
    		for i := 1; i < len(f.Blocks); i++ {
    			if layoutDrawn[f.Blocks[i].ID] {
    				continue
    			}
    			fmt.Fprintf(pipe, `%s -> %s [color="%s"];`, f.Blocks[i-1], f.Blocks[i], colors[ci])
    			ci = (ci + 1) % len(colors)
    		}
    	}
    	fmt.Fprint(pipe, "}")
    	pipe.Close()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 15:11:40 UTC 2023
    - 34.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/css/print.css

            vertical-align: bottom;
        }
    }
    
    body {
        font-size: 10pt;
        margin: 0;
        margin-bottom: 2cm;
        padding: 0;
        padding-bottom: 2cm;
    }
    
    /*
     * Override colour -> black and white
     */
    body, div, td {
        color: black;
    }
    
    h1, h2, h3, h4, h5 {
        color: black;
    }
    
    a {
        color: black;
    }
    
    /*
     * Book title page
     */
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  4. maven-slf4j-provider/pom.xml

      </parent>
    
      <artifactId>maven-slf4j-provider</artifactId>
    
      <name>Maven SLF4J Simple Provider</name>
      <description>Maven SLF4J provider based on SLF4J's simple provider, extended to support Maven styled colors
        for levels and stacktrace rendering.</description>
    
      <dependencies>
        <dependency>
          <groupId>org.slf4j</groupId>
          <artifactId>slf4j-api</artifactId>
        </dependency>
        <dependency>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  5. src/image/color/ycbcr.go

    	b := yy1 + 116130*cb1
    	if uint32(b)&0xff000000 == 0 {
    		b >>= 8
    	} else {
    		b = ^(b >> 31) & 0xffff
    	}
    
    	return uint32(r), uint32(g), uint32(b), 0xffff
    }
    
    // YCbCrModel is the [Model] for Y'CbCr colors.
    var YCbCrModel Model = ModelFunc(yCbCrModel)
    
    func yCbCrModel(c Color) Color {
    	if _, ok := c.(YCbCr); ok {
    		return c
    	}
    	r, g, b, _ := c.RGBA()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/doc/c4/lib/C4.puml

    ' Colors
    ' ##################################
    
    !define ELEMENT_FONT_COLOR #FFFFFF
    
    ' Styling
    ' ##################################
    
    !define TECHN_FONT_SIZE 12
    
    skinparam defaultTextAlignment center
    
    skinparam wrapWidth 200
    skinparam maxMessageSize 150
    
    skinparam rectangle {
        StereotypeFontSize 12
        shadowing false
    }
    
    skinparam Arrow {
        Color #666666
        FontColor #666666
        FontSize 12
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/internal/exceptions/StyledException.java

    import javax.annotation.Nullable;
    import java.util.regex.Matcher;
    import java.util.regex.Pattern;
    
    /**
     * <p>A styled exception is an exception which can be rendered to the console
     * with styled text (basically colors). The only requirement is to put tags
     * between the styled elements. The tag names correspond to a {@link StyledTextOutput.Style}
     * name.</p>
     * <p>For example: This is an &lt;Failure&gt;error&lt;/Failure&gt;</p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 06 16:25:37 UTC 2020
    - 3.6K bytes
    - Viewed (0)
  8. internal/color/color.go

    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package color
    
    import (
    	"fmt"
    
    	"github.com/fatih/color"
    )
    
    // global colors.
    var (
    	// Check if we stderr, stdout are dumb terminals, we do not apply
    	// ansi coloring on dumb terminals.
    	IsTerminal = func() bool {
    		return !color.NoColor
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 17:57:52 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/internal/graph/dotgraph.go

    	// colors should be shifted away from grey (to make positive and
    	// negative values easier to distinguish, and to make more use of
    	// the color range.)
    	const shift = 0.7
    
    	// Saturation and value (in hsv colorspace) for background colors.
    	const bgSaturation = 0.1
    	const bgValue = 0.93
    
    	// Saturation and value (in hsv colorspace) for foreground colors.
    	const fgSaturation = 1.0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 09 20:51:42 UTC 2022
    - 14.8K bytes
    - Viewed (0)
  10. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/DefaultCacheCleanupExecutor.java

                Duration timeSinceLastCleanup = Duration.between(lastCleanupTime, Instant.now());
                LOGGER.debug("{} has last been fully cleaned up {} hours ago", cleanableStore.getDisplayName(), timeSinceLastCleanup.toHours());
            }
    
            if (!cacheCleanupStrategy.getCleanupFrequency().requiresCleanup(lastCleanupTime)) {
                LOGGER.debug("Skipping cleanup for {} as it is not yet due", cleanableStore.getDisplayName());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 16:53:17 UTC 2024
    - 5.7K bytes
    - Viewed (0)
Back to top