Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 21 for 192x192 (0.4 sec)

  1. manifests/charts/istio-control/istio-discovery/Chart.yaml

    appVersion: 1.0.0
    description: Helm chart for istio control plane
    keywords:
      - istio
      - istiod
      - istio-discovery
    sources:
      - https://github.com/istio/istio
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 18:29:34 UTC 2024
    - 388 bytes
    - Viewed (0)
  2. manifests/charts/ztunnel/Chart.yaml

    version: 1.0.0
    appVersion: 1.0.0
    description: Helm chart for istio ztunnel components
    keywords:
      - istio-ztunnel
      - istio
    sources:
      - https://github.com/istio/istio
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 18:29:34 UTC 2024
    - 381 bytes
    - Viewed (0)
  3. manifests/charts/gateways/istio-egress/Chart.yaml

    appVersion: 1.0.0
    description: Helm chart for deploying Istio gateways
    keywords:
      - istio
      - egressgateway
      - gateways
    sources:
      - https://github.com/istio/istio
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 18:29:34 UTC 2024
    - 399 bytes
    - Viewed (0)
  4. manifests/charts/gateways/istio-ingress/Chart.yaml

    appVersion: 1.0.0
    description: Helm chart for deploying Istio gateways
    keywords:
      - istio
      - ingressgateway
      - gateways
    sources:
      - http://github.com/istio/istio
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 18:29:34 UTC 2024
    - 400 bytes
    - Viewed (0)
  5. manifests/charts/istiod-remote/Chart.yaml

    appVersion: 1.0.0
    description: Helm chart for a remote cluster using an external istio control plane
    keywords:
      - istio
      - external-istiod
    sources:
      - https://github.com/istio/istio
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 18:29:34 UTC 2024
    - 419 bytes
    - Viewed (0)
  6. manifests/charts/ambient/Chart.yaml

    type: application
    version: 1.0.0
    appVersion: 1.0.0
    kubeVersion: ">= 1.23.0-0"
    keywords:
      - istio-cni
      - istio
      - ambient
    sources:
      - https://github.com/istio/istio
    icon: https://istio.io/latest/favicons/android-192x192.png
    
    # These will be stamped out to real versions during release publish
    dependencies:
      - name: base
        version: 1.0.0
        repository: "file://../base"
      - name: cni
        version: 1.0.0
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 21:20:01 UTC 2024
    - 718 bytes
    - Viewed (0)
  7. cmd/kube-apiserver/app/options/completion_test.go

    		// Dual stack IPv4/IPv6
    		{"192.0.2.1/24,2001:db2:1:3:4::1/112", "192.0.2.1", "192.0.2.0/24", "2001:db2:1:3:4::/112", false},
    		// Dual stack IPv6/IPv4
    		{"2001:db2:1:3:4::1/112,192.0.2.1/24", "2001:db2:1:3:4::1", "2001:db2:1:3:4::/112", "192.0.2.0/24", false},
    
    		{"192.0.2.1/30,192.168.128.0/17", "<nil>", "<nil>", "<nil>", true},
    		// Invalid ip range[0] IPv4 mask
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 26 13:20:40 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/windows/exec_windows.go

    // any bound on the lengths of the individual argument strings.
    // (See https://go.dev/issue/63236.)
    func CommandLineToArgv(cmd *uint16, argc *int32) (argv *[8192]*[8192]uint16, err error) {
    	argp, err := commandLineToArgv(cmd, argc)
    	argv = (*[8192]*[8192]uint16)(unsafe.Pointer(argp))
    	return argv, err
    }
    
    func CloseOnExec(fd Handle) {
    	SetHandleInformation(Handle(fd), HANDLE_FLAG_INHERIT, 0)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  9. src/crypto/aes/cipher_s390x.go

    const (
    	aes128 code = 18
    	aes192      = 19
    	aes256      = 20
    )
    
    type aesCipherAsm struct {
    	function code     // code for cipher message instruction
    	key      []byte   // key (128, 192 or 256 bits)
    	storage  [32]byte // array backing key slice
    }
    
    // cryptBlocks invokes the cipher message (KM) instruction with
    // the given function code. This is equivalent to AES in ECB
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  10. src/encoding/hex/hex_test.go

    			t.Errorf("DecodeString(%q) = %q, %v, want %q, %v", tt.in, out, err, tt.out, tt.err)
    		}
    	}
    }
    
    func TestEncoderDecoder(t *testing.T) {
    	for _, multiplier := range []int{1, 128, 192} {
    		for _, test := range encDecTests {
    			input := bytes.Repeat(test.dec, multiplier)
    			output := strings.Repeat(test.enc, multiplier)
    
    			var buf bytes.Buffer
    			enc := NewEncoder(&buf)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:30:23 UTC 2024
    - 7.9K bytes
    - Viewed (0)
Back to top