Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for badge (0.07 sec)

  1. platforms/documentation/docs/src/docs/css/manual.css

        a:active {
            text-decoration: none;
        }
    }
    .badge {
        background-color: var(--black-color);
        height: 24px;
        border-radius: 12px;
        border-color: var(--black-color);
        border-style: solid;
        border-width: 1px;
        padding: 5px;
        a {
            color: var(--gradle-blue);
        }
    }
    .badge-type {
        border-radius: 8px;
        margin-right: 10px;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  2. src/runtime/mgcscavenge.go

    	// searchAddr, sets searchAddr to the *negative* index into chunks of that page. The trick here
    	// is that concurrent calls to find will fail to monotonically decrease searchAddr*, and so they
    	// won't barge over new memory becoming available to scavenge. Furthermore, this ensures
    	// that some future caller of find *must* observe the new high index. That caller
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    		factor = fmt.Sprintf("more than 100x")
    	} else if exceedFactor < 1.5 {
    		factor = fmt.Sprintf("%fx", exceedFactor) // avoid reporting "exceeds budge by a factor of 1.0x"
    	} else {
    		factor = fmt.Sprintf("%.1fx", exceedFactor)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
Back to top