Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 771 for knight (0.07 sec)

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

    p .left {
        margin: 1.5em 1.5em 1.5em 0;
        padding: 0;
    }
    
    .right {
        float: right !important;
    }
    
    p .right {
        margin: 1.5em 0 1.5em 1.5em;
        padding: 0;
    }
    
    .small {
        font-size: .8em;
        margin-bottom: 1.875em;
        line-height: 1.875em;
    }
    
    .large {
        font-size: 1.2em;
        line-height: 2.5em;
        margin-bottom: 1.25em;
    }
    
    .hide {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  2. docs/en/docs/img/deployment/https/https04.drawio

                        <mxGeometry x="-60" y="-540" width="330" height="260" as="geometry"/>
                    </mxCell>
                    <mxCell id="6" value="" style="rounded=0;whiteSpace=wrap;html=1;fontStyle=1;strokeWidth=4;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="1" vertex="1">
                        <mxGeometry x="495" y="320" width="355" height="440" as="geometry"/>
                    </mxCell>
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 12 00:06:16 UTC 2022
    - 14K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/img/commandLineTutorialTasks.graphml

            <y:ShapeNode>
              <y:Geometry height="30.0" width="140.0" x="180.0" y="12.5"/>
              <y:Fill color="#C3D9E6" transparent="false"/>
              <y:BorderStyle color="#000000" type="line" width="1.0"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  4. src/main/webapp/js/admin/plugins/form-validator/file.js

    tils.checkImageDimension=function(a,b,c){var d=!1,e={width:0,height:0},f=function(a){a=a.replace("min","").replace("max","");var b=a.split("x");e.width=b[0],e.height=b[1]?b[1]:b[0]},g=!1,h=!1,i=b.split("-");return 1===i.length?0===i[0].indexOf("min")?g=i[0]:h=i[0]:(g=i[0],h=i[1]),g&&(f(g),(a.width<e.width||a.height<e.height)&&(d=c.imageTooSmall+" ("+c.min+" "+e.width+"x"+e.height+"px)")),!d&&h&&(f(h),(a.width>e.width||a.height>e.height)&&(d=a.width>e.width?c.imageTooWide+" "+e.width+"px":c.imageTooTall+"...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Jan 01 05:12:47 UTC 2018
    - 4.6K bytes
    - Viewed (0)
  5. pkg/ctrlz/assets/static/css/all.css

        #navbar-links {
            position: absolute;
            right: -700px;
            transition: right 0.5s
        }
    
        #navbar-links.active {
            right: 1rem;
            transition: right 0.5s
        }
    
        #search_form {
            position: absolute;
            right: -700px;
            transition: right 0.5s
        }
    
        #search_form.active {
            right: 1rem;
            transition: right 0.5s
        }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/stackcheck.go

    		}
    		height := growth
    		if target != 0 { // Don't walk into the leaf "edge"
    			height += sc.check(target)
    		}
    		if height > maxHeight {
    			maxHeight = height
    		}
    	}
    
    	if !ldr.IsNoSplit(sym) {
    		// Splittable functions start with a call to
    		// morestack, after which their height is 0. Account
    		// for the height of the call to morestack.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 16:49:08 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/img/groovyPluginTasks.graphml

            <y:ShapeNode>
              <y:Geometry height="30.0" width="140.0" x="0.0" y="176.11363636363637"/>
              <y:Fill color="#C3D9E6" transparent="false"/>
              <y:BorderStyle color="#000000" type="line" width="1.0"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  8. platforms/software/testing-base-infrastructure/src/integTest/groovy/org/gradle/api/internal/tasks/testing/JULRedirectorIntegrationTest.groovy

    class JULRedirectorIntegrationTest extends AbstractSampleIntegrationTest {
        def static final LYRICS = [
            "I'm a lumberjack, and I'm okay.",
            "I sleep all night and I work all day.",
            "He's a lumberjack, and He's okay.",
            "He sleeps all night and he works all day."
        ]
        @Rule TestResources testResources = new TestResources(temporaryFolder)
    
        /* Relies on the resources directory:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  9. src/image/draw/example_test.go

    	"image/draw"
    	"math"
    )
    
    func ExampleDrawer_floydSteinberg() {
    	const width = 130
    	const height = 50
    
    	im := image.NewGray(image.Rectangle{Max: image.Point{X: width, Y: height}})
    	for x := 0; x < width; x++ {
    		for y := 0; y < height; y++ {
    			dist := math.Sqrt(math.Pow(float64(x-width/2), 2)/3+math.Pow(float64(y-height/2), 2)) / (height / 1.5) * 255
    			var gray uint8
    			if dist > 255 {
    				gray = 255
    			} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 18:07:05 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  10. src/main/webapp/css/admin/style.css

    section.content table td {
    	display: table-cell;
    	word-wrap: break-word;
    	overflow-wrap: break-word;
    }
    
    section.content table .label {
    	color: #fff;
    }
    
    textarea.systemInfoData {
    	height: 22em;
    	line-height: 1.5em;
    }
    
    .login-box {
    	height: 500px;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 1.1K bytes
    - Viewed (0)
Back to top