Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/cmd/internal/objfile/objfile.go

    		return f, nil
    	} else if _, ok := err.(archive.ErrGoObjOtherVersion); ok {
    		return nil, fmt.Errorf("open %s: %v", name, err)
    	}
    	for _, try := range openers {
    		if raw, err := try(r); err == nil {
    			return &File{r, []*Entry{{raw: raw}}}, nil
    		}
    	}
    	r.Close()
    	return nil, fmt.Errorf("open %s: unrecognized object file", name)
    }
    
    func (f *File) Close() error {
    	return f.r.Close()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 24 16:01:55 UTC 2021
    - 4.2K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top