Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 272 for HEIGHT (0.1 sec)

  1. testing/internal-performance-testing/src/main/resources/org/gradle/reporting/flot.selection.min.js

    offset=plot.getPlaceholder().offset();var plotOffset=plot.getPlotOffset();pos.x=clamp(0,e.pageX-offset.left-plotOffset.left,plot.width());pos.y=clamp(0,e.pageY-offset.top-plotOffset.top,plot.height());if(o.selection.mode=="y")pos.x=pos==selection.first?0:plot.width();if(o.selection.mode=="x")pos.y=pos==selection.first?0:plot.height()}function updateSelection(pos){if(pos.pageX==null)return;setSelectionPos(selection.second,pos);if(selectionIsSane()){selection.show=true;plot.triggerRedrawOverlay()}else clearSe...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  2. src/image/png/testdata/pngsuite/basn3p02.sng

    #SNG: from basn3p02.png
    IHDR {
        width: 32; height: 32; bitdepth: 2;
        using color palette;
    }
    gAMA {1.0000}
    PLTE {
        (  0,255,  0)     # rgb = (0x00,0xff,0x00)
        (255,  0,  0)     # rgb = (0xff,0x00,0x00)
        (255,255,  0)     # rgb = (0xff,0xff,0x00)
        (  0,  0,255)     # rgb = (0x00,0x00,0xff)
    }
    IMAGE {
        pixels hex
    ff55aa00ff55aa00
    ff55aa00ff55aa00
    ff55aa00ff55aa00
    ff55aa00ff55aa00
    00ff55aa00ff55aa
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 878 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/img/xctest-task-graph.dot

    digraph xctestTaskGraph {
      graph [ dpi = 100, fontname="Sans"];
      node [fontname = "Sans"];
      edge [fontname = "Sans"];
      node [shape=rectangle, fixedsize=true, width=2.5, height=0.5];
      node [style=filled, fillcolor="#cfe2f3"]
      rankdir=LR
    
      compileTestSwift -> linkTest -> installTest -> xcTest -> test -> check -> build [dir=back]
      compileDebugSwift -> linkTest [dir=back]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/img/cpp-shared-library-task-graph.dot

    digraph cppSharedLibraryTaskGraph {
      graph [ dpi = 100, fontname="Sans"];
      node [fontname = "Sans"];
      edge [fontname = "Sans"];
      node [shape=rectangle, fixedsize=true, width=2.5, height=0.5];
      node [style=filled, fillcolor="#cfe2f3"]
      rankdir=LR
    
      compileDebugCpp -> linkDebug -> assembleDebug -> assemble -> build [dir=back]
      check -> build [dir=back]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  5. src/main/webapp/css/admin/adminlte.min.css

    .w-75{width:75%!important}.w-100{width:100%!important}.w-auto{width:auto!important}.h-25{height:25%!important}.h-50{height:50%!important}.h-75{height:75%!important}.h-100{height:100%!important}.h-auto{height:auto!important}.mw-100{max-width:100%!important}.mh-100{max-height:100%!important}.min-vw-100{min-width:100vw!important}.min-vh-100{min-height:100vh!important}.vw-100{width:100vw!important}.vh-100{height:100vh!important}.stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 641.1K bytes
    - Viewed (0)
  6. src/main/webapp/js/admin/adminlte.min.js.map

        if (max == heights.control_sidebar) {\n        $(Selector.CONTENT).css('min-height', max)\n      } else if (max == heights.window) {\n        $(Selector.CONTENT).css('min-height', max - heights.header - heights.footer)\n      } else {\n        $(Selector.CONTENT).css('min-height', max - heights.header)\n      }\n\n      if ($('body').hasClass(ClassName.LAYOUT_FIXED)) {\n        $(Selector.CONTENT).css('min-height', max - heights.header - heights.footer)\n\n        if (typeof $.fn.overlayScrollbars...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Wed Feb 12 07:55:41 UTC 2020
    - 77K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/tpu_space_to_depth_pass.cc

      int64_t height = filter_shape[0];
      int64_t width = filter_shape[1];
      int64_t channel = filter_shape[2];
      int64_t out_channel = filter_shape[3];
      // Value/Op before reshape op.
      Value before_reshape_value = filter;
      if (height % block_size != 0 || width % block_size != 0) {
        // Calculate paddings for height and width.
        int32_t pad_h = block_size - height % block_size;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  8. src/image/jpeg/fuzz_test.go

    		}
    		f.Add(b)
    	}
    
    	f.Fuzz(func(t *testing.T, b []byte) {
    		cfg, _, err := image.DecodeConfig(bytes.NewReader(b))
    		if err != nil {
    			return
    		}
    		if cfg.Width*cfg.Height > 1e6 {
    			return
    		}
    		img, typ, err := image.Decode(bytes.NewReader(b))
    		if err != nil || typ != "jpeg" {
    			return
    		}
    		for q := 1; q <= 100; q++ {
    			var w bytes.Buffer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 03 15:56:27 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/img/swift-application-variant-task-graph.dot

    digraph swiftLibraryVariantTaskGraph {
      graph [ dpi = 100, fontname="Sans"];
      node [fontname = "Sans"];
      edge [fontname = "Sans"];
      node [shape=rectangle, fixedsize=true, width=2.5, height=0.5];
      node [style="dashed,filled", fillcolor=grey]
      rankdir=LR
    
      compileVariantSwift -> linkVariant -> installVariant -> assembleVariant [dir=back, style=dashed]
      compileVariantSwift[label=<compile<i>Variant</i>Swift>]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/kotlin/styles/gradle.css

        margin-left: 65px;
    }
    
    .library-name a::before {
        content: '';
        background: url("../images/gradle-logo.svg") center no-repeat;
        background-size: contain;
        position: absolute;
        width: 65px;
        height: 65px;
        top: -27px;
        left: -72px;
    }
    
    .library-name a span::before {
        content: 'Kotlin DSL Reference for ';
    }
    
    /* Hide the module name title on the front page */
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
Back to top