Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 861 for RAW (0.06 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. testing/architecture-test/src/changes/archunit-store/public-api-mutable-text-resource.txt

    Method <org.gradle.api.plugins.quality.CheckstyleExtension.getConfig()> has raw return type org.gradle.api.resources.TextResource in (CheckstyleExtension.java:0)
    Method <org.gradle.api.plugins.quality.CodeNarcExtension.getConfig()> has raw return type org.gradle.api.resources.TextResource in (CodeNarcExtension.java:0)
    Method <org.gradle.api.plugins.quality.PmdExtension.getRuleSetConfig()> has raw return type org.gradle.api.resources.TextResource in (PmdExtension.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:43:33 UTC 2024
    - 827 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/samples/readme-templates/native-application-body.adoc.template

    In this case, you will find your assembled executable in `build/exe/main/debug` and it will be called `${subprojectName.raw}` (or `${subprojectName.raw}.exe` under Windows).
    
    Now run your newly built executable.
    
    [listing.terminal.sample-command]
    ----
    \$ ./${subprojectName.raw}/build/exe/main/debug/${subprojectName.raw}
    Hello, World!
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  7. src/net/http/cookie_test.go

    	},
    	{
    		Header{"Set-Cookie": {`special-6=",z"`}},
    		[]*Cookie{{Name: "special-6", Value: ",z", Quoted: true, Raw: `special-6=",z"`}},
    	},
    	{
    		Header{"Set-Cookie": {`special-7=a,`}},
    		[]*Cookie{{Name: "special-7", Value: "a,", Raw: `special-7=a,`}},
    	},
    	{
    		Header{"Set-Cookie": {`special-8=","`}},
    		[]*Cookie{{Name: "special-8", Value: ",", Quoted: true, Raw: `special-8=","`}},
    	},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:33:05 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  8. tools/istio-iptables/pkg/capture/testdata/ip-range.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: Thu Jun 06 03:53:23 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/samples/readme-templates/library-api-docs.adoc.template

    The code generated by the Build Init plugin already placed a comment on the `${sourceFile.raw}` file.
    Replace `/*` in the comment by `/**` so that it becomes `javadoc` markup:
    
    .src/main/${languageLC.raw}/${sourceFile.raw}
    [source,java]
    ----
    /**
     * This java source file was generated by the Gradle 'init' task.
     */
     ...
    ----
    Run the `javadoc` task.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  10. src/syscall/syscall_bsd.go

    	sa.raw.Index = sa.Index
    	sa.raw.Type = sa.Type
    	sa.raw.Nlen = sa.Nlen
    	sa.raw.Alen = sa.Alen
    	sa.raw.Slen = sa.Slen
    	sa.raw.Data = sa.Data
    	return unsafe.Pointer(&sa.raw), SizeofSockaddrDatalink, nil
    }
    
    func anyToSockaddr(rsa *RawSockaddrAny) (Sockaddr, error) {
    	switch rsa.Addr.Family {
    	case AF_LINK:
    		pp := (*RawSockaddrDatalink)(unsafe.Pointer(rsa))
    		sa := new(SockaddrDatalink)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 07 10:34:48 UTC 2023
    - 13.6K bytes
    - Viewed (0)
Back to top