Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 96 for grandparent (0.24 sec)

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

        word-wrap: break-word;
    }
    
    pre {
        line-height: 1.45;
        margin-top: 0;
        margin-bottom: 1.5em;
        padding: 1rem;
    }
    
    pre code {
        background-color: transparent;
        color: inherit;
        line-height: 1.45;
        font-size: 100%;
        padding: 0;
    }
    
    a code {
        color: #1BA8CB;
    }
    
    pre.code, pre.programlisting, pre.screen, pre.tt {
    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. src/image/gif/writer.go

    		if transparentIndex != -1 {
    			e.buf[3] = 0x01 | disposal<<2
    		} else {
    			e.buf[3] = 0x00 | disposal<<2
    		}
    		byteorder.LePutUint16(e.buf[4:6], uint16(delay)) // Delay Time (1/100ths of a second)
    
    		// Transparent color index.
    		if transparentIndex != -1 {
    			e.buf[6] = uint8(transparentIndex)
    		} else {
    			e.buf[6] = 0x00
    		}
    		e.buf[7] = 0x00 // Block Terminator.
    		e.write(e.buf[:8])
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:38:09 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  3. manifests/addons/dashboards/istio-service-dashboard.json

            },
            "content": "<div class=\"dashboard-header text-center\">\n<span>SERVICE: $service</span>\n</div>",
            "mode": "html"
          },
          "pluginVersion": "10.1.5",
          "transparent": true,
          "type": "text"
        },
        {
          "datasource": {
            "type": "prometheus",
            "uid": "${datasource}"
          },
          "fieldConfig": {
            "defaults": {
              "color": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 03:47:04 UTC 2024
    - 111.8K bytes
    - Viewed (0)
  4. src/image/png/reader_test.go

    	} else if strings.HasPrefix(filename, "ft") {
    		if s, ok := fakebKGDs[filename]; ok {
    			io.WriteString(w, s)
    		}
    		// We fake a tRNS chunk. The test files' grayscale and truecolor
    		// transparent images all have their top left corner transparent.
    		switch c := png.At(0, 0).(type) {
    		case color.NRGBA:
    			if c.A == 0 {
    				useTransparent = true
    				io.WriteString(w, "tRNS {\n")
    				switch filename {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 24 12:12:12 UTC 2022
    - 28.5K bytes
    - Viewed (0)
  5. samples/addons/grafana.yaml

    traffic. For ingress and istio-proxy, the data is per instance.\n- **Bytes transferred / sec:** shows the number of bytes flowing through each Istio component.\n\n\n","mode":"markdown"},"pluginVersion":"10.1.5","title":"Performance Dashboard README","transparent":true,"type":"text"},{"collapsed":false,"datasource":{"type":"prometheus","uid":"${datasource}"},"gridPos":{"h":1,"w":24,"x":0,"y":7},"id":6,"panels":[],"targets":[{"datasource":{"type":"prometheus","uid":"${datasource}"},"refId":"A"}],"title":"vCPU...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
  6. src/image/gif/writer_test.go

    	if rgb := global[trIdx].(color.RGBA); rgb.R == 0 && rgb.G == 0 && rgb.B == 0 {
    		t.Fatalf("trIdx (%d) is already black", trIdx)
    	}
    
    	// Make a copy of the palette, substituting trIdx's slot with transparent,
    	// just like decoder.decode.
    	local := append(color.Palette(nil), global...)
    	local[trIdx] = color.RGBA{}
    
    	const testLen = 3 * 256
    	const padded = 7
    	e := new(encoder)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 19K bytes
    - Viewed (0)
  7. architecture/ambient/ztunnel.md

    For traffic to unknown addresses, or to workloads that are not a part of the mesh, the traffic will just be passed through as is.
    To make ztunnel more transparent, the original source IP address will be spoofed.
    Additionally, `splice` will be used to make this proxying more efficient when possible.
    
    For traffic in the mesh, things are a bit more complex:
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 22:35:16 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  8. src/image/gif/reader.go

    		} else {
    			// The transparentIndex is out of range, which is an error
    			// according to the spec, but Firefox and Google Chrome
    			// seem OK with this, so we enlarge the palette with
    			// transparent colors. See golang.org/issue/15059.
    			p := make(color.Palette, ti+1)
    			copy(p, m.Palette)
    			for i := len(m.Palette); i < len(p); i++ {
    				p[i] = color.RGBA{}
    			}
    			m.Palette = p
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:15:54 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  9. manifests/addons/dashboards/istio-performance-dashboard.json

            "mode": "markdown"
          },
          "pluginVersion": "10.1.5",
          "title": "Performance Dashboard README",
          "transparent": true,
          "type": "text"
        },
        {
          "collapsed": false,
          "datasource": {
            "type": "prometheus",
            "uid": "${datasource}"
          },
          "gridPos": {
            "h": 1,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 03:47:04 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  10. manifests/addons/dashboards/istio-mesh-dashboard.json

          },
          "targets": [
            {
              "datasource": {
                "type": "prometheus",
                "uid": "${datasource}"
              },
              "refId": "A"
            }
          ],
          "transparent": true,
          "type": "text"
        },
        {
          "datasource": {
            "type": "prometheus",
            "uid": "${datasource}"
          },
          "fieldConfig": {
            "defaults": {
              "color": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 02:28:01 UTC 2024
    - 46.4K bytes
    - Viewed (0)
Back to top