Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,027 for RAW (0.08 sec)

  1. docs/metrics/prometheus/grafana/README.md

    Refer to the dashboard [json file here](https://raw.githubusercontent.com/minio/minio/master/docs/metrics/prometheus/grafana/minio-dashboard.json).
    
    ![Grafana](https://raw.githubusercontent.com/minio/minio/master/docs/metrics/prometheus/grafana/grafana-minio.png)
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 28 17:15:39 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  2. tools/istio-iptables/pkg/capture/testdata/ipv6-dns-uid-gid.golden

    iptables -t raw -A ISTIO_OUTPUT -p udp --dport 53 -m owner --uid-owner 3 -j CT --zone 1
    iptables -t raw -A ISTIO_OUTPUT -p udp --sport 15053 -m owner --uid-owner 3 -j CT --zone 2
    iptables -t raw -A ISTIO_OUTPUT -p udp --dport 53 -m owner --uid-owner 4 -j CT --zone 1
    iptables -t raw -A ISTIO_OUTPUT -p udp --sport 15053 -m owner --uid-owner 4 -j CT --zone 2
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 15:51:15 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/api/meta/help.go

    	}
    
    	for i := 0; i < len; i++ {
    		raw := items.Index(i)
    		if takeAddr {
    			if allocNew {
    				// shallow copy to avoid retaining a reference to the original list item
    				itemCopy := reflect.New(raw.Type())
    				// assign to itemCopy and type-assert
    				itemCopy.Elem().Set(raw)
    				// reflect.New will guarantee that itemCopy must be a pointer.
    				raw = itemCopy
    			} else {
    				raw = raw.Addr()
    			}
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 29 16:25:43 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  4. tools/istio-clean-iptables/pkg/cmd/testdata/dns.golden

    iptables -t raw -D ISTIO_OUTPUT -p udp --dport 53 -m owner --uid-owner 1337 -j CT --zone 1
    ip6tables -t raw -D ISTIO_OUTPUT -p udp --dport 53 -m owner --uid-owner 1337 -j CT --zone 1
    iptables -t raw -D ISTIO_OUTPUT -p udp --sport 15053 -m owner --uid-owner 1337 -j CT --zone 2
    ip6tables -t raw -D ISTIO_OUTPUT -p udp --sport 15053 -m owner --uid-owner 1337 -j CT --zone 2
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 15:51:15 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/ifreq_linux.go

    // AF_INET, an error is returned.
    func (ifr *Ifreq) Inet4Addr() ([]byte, error) {
    	raw := *(*RawSockaddrInet4)(unsafe.Pointer(&ifr.raw.Ifru[:SizeofSockaddrInet4][0]))
    	if raw.Family != AF_INET {
    		// Cannot safely interpret raw.Addr bytes as an IPv4 address.
    		return nil, EINVAL
    	}
    
    	return raw.Addr[:], nil
    }
    
    // SetInet4Addr sets a C in_addr/Go []byte (4-byte IPv4 address) value in an
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/samples/readme-templates/common-summary.adoc.template

    == Summary
    
    That's it! You've now successfully configured and built a ${language.raw} ${componentType.raw} project with Gradle.
    You've learned how to:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 997 bytes
    - Viewed (0)
  7. src/main/java/jcifs/ntlmssp/av/AvPair.java

        private final byte[] raw;
    
    
        /**
         * @param type
         * @param raw
         */
        public AvPair ( int type, byte[] raw ) {
            this.type = type;
            this.raw = raw;
        }
    
    
        /**
         * @return the type
         */
        public final int getType () {
            return this.type;
        }
    
    
        /**
         * @return the raw
         */
        public final byte[] getRaw () {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/runtime/embedded.go

    	}
    	if e.Raw == nil {
    		return []byte("null"), nil
    	}
    	return e.Raw, nil
    }
    
    func Convert_runtime_Object_To_runtime_RawExtension(in *Object, out *RawExtension, s conversion.Scope) error {
    	if in == nil {
    		out.Raw = []byte("null")
    		return nil
    	}
    	obj := *in
    	if unk, ok := obj.(*Unknown); ok {
    		if unk.Raw != nil {
    			out.Raw = unk.Raw
    			return nil
    		}
    		obj = out.Object
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 02 09:39:03 UTC 2019
    - 4.3K bytes
    - Viewed (0)
  9. tools/istio-iptables/pkg/capture/testdata/ipv6-dns-outbound-owner-groups.golden

    iptables -t raw -A ISTIO_OUTPUT -p udp --sport 15053 -m owner --uid-owner 1337 -j CT --zone 2
    iptables -t raw -A ISTIO_OUTPUT -p udp --dport 53 -m owner --gid-owner 1337 -j CT --zone 1
    iptables -t raw -A ISTIO_OUTPUT -p udp --sport 15053 -m owner --gid-owner 1337 -j CT --zone 2
    ip6tables -t nat -N ISTIO_INBOUND
    ip6tables -t nat -N ISTIO_REDIRECT
    ip6tables -t nat -N ISTIO_IN_REDIRECT
    ip6tables -t nat -N ISTIO_OUTPUT
    ip6tables -t raw -N ISTIO_OUTPUT
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 15:51:15 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    	sa.raw.Dev_idx = sa.DeviceIdx
    	sa.raw.Target_idx = sa.TargetIdx
    	sa.raw.Nfc_protocol = sa.NFCProtocol
    	sa.raw.Dsap = sa.DestinationSAP
    	sa.raw.Ssap = sa.SourceSAP
    	if len(sa.ServiceName) > len(sa.raw.Service_name) {
    		return nil, 0, EINVAL
    	}
    	copy(sa.raw.Service_name[:], sa.ServiceName)
    	sa.raw.SetServiceNameLen(len(sa.ServiceName))
    	return unsafe.Pointer(&sa.raw), SizeofSockaddrNFCLLCP, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
Back to top