Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 858 for RAW (0.06 sec)

  1. testing/architecture-test/src/changes/archunit-store/provider-text-resource.txt

    Method <org.gradle.api.plugins.quality.Checkstyle.getConfig()> has raw return type org.gradle.api.resources.TextResource in (Checkstyle.java:0)
    Method <org.gradle.api.plugins.quality.CodeNarc.getConfig()> has raw return type org.gradle.api.resources.TextResource in (CodeNarc.java:0)
    Method <org.gradle.api.plugins.quality.Pmd.getRuleSetConfig()> has raw return type org.gradle.api.resources.TextResource in (Pmd.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:43:33 UTC 2024
    - 567 bytes
    - Viewed (0)
  2. platforms/software/build-init/src/main/resources/org/gradle/buildinit/tasks/templates/javaapplication/multi/app/App.java.template

    ${fileComment.multilineComment}${packageDecl.javaStatement}
    import ${basePackagePrefix.raw}list.LinkedList;
    
    import static ${basePackagePrefix.raw}utilities.StringUtils.join;
    import static ${basePackagePrefix.raw}utilities.StringUtils.split;
    import static ${basePackagePrefix.raw}app.MessageUtils.getMessage;
    
    import org.apache.commons.text.WordUtils;
    
    public class App {
        public static void main(String[] args) {
            LinkedList tokens;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 26 19:39:09 UTC 2023
    - 586 bytes
    - Viewed (0)
  3. src/internal/trace/testdata/cmd/gotraceraw/main.go

    	var err error
    
    	switch flag.Arg(0) {
    	case "text2bytes":
    		tr, err = raw.NewTextReader(r)
    		if err != nil {
    			log.Fatal(err)
    		}
    		tw, err = raw.NewWriter(w, tr.Version())
    		if err != nil {
    			log.Fatal(err)
    		}
    	case "bytes2text":
    		tr, err = raw.NewReader(r)
    		if err != nil {
    			log.Fatal(err)
    		}
    		tw, err = raw.NewTextWriter(w, tr.Version())
    		if err != nil {
    			log.Fatal(err)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:31:29 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/runtime/splice.go

    	Bytes() []byte
    }
    
    // A spliceBuffer implements Splice and io.Writer interfaces.
    type spliceBuffer struct {
    	raw []byte
    	buf *bytes.Buffer
    }
    
    func NewSpliceBuffer() Splice {
    	return &spliceBuffer{}
    }
    
    // Splice implements the Splice interface.
    func (sb *spliceBuffer) Splice(raw []byte) {
    	sb.raw = raw
    }
    
    // Write implements the io.Writer interface.
    func (sb *spliceBuffer) Write(p []byte) (n int, err error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 05 18:03:48 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  5. tools/istio-clean-iptables/pkg/cmd/testdata/outbound-owner-groups.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.8K bytes
    - Viewed (0)
  6. tools/istio-iptables/pkg/capture/testdata/ipv6-dns-outbound-owner-groups-exclude.golden

    iptables -t nat -A ISTIO_OUTPUT -p udp --dport 53 -m owner --gid-owner ftp -j RETURN
    iptables -t raw -A ISTIO_OUTPUT -p udp --dport 53 -m owner --uid-owner 1337 -j CT --zone 1
    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
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 15:51:15 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/samples/readme-templates/application-body.adoc.template

    [listing.terminal.sample-command]
    ----
    \$ ./gradlew build
    
    BUILD SUCCESSFUL in 0s
    ${tasksExecuted.raw} actionable tasks: ${tasksExecuted.raw} executed
    ----
    
    If you run a full build as shown above, Gradle will have produced the archive in two formats for you:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/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(fd int, 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: Wed Nov 29 21:28:33 UTC 2023
    - 15K bytes
    - Viewed (0)
  9. tools/istio-clean-iptables/pkg/cmd/testdata/outbound-owner-groups-exclude.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.9K bytes
    - Viewed (0)
  10. platforms/software/build-init/src/main/resources/org/gradle/buildinit/tasks/templates/groovyapplication/multi/app/App.groovy.template

    ${fileComment.multilineComment}${packageDecl.statement}
    import ${basePackagePrefix.raw}list.LinkedList
    
    import static ${basePackagePrefix.raw}utilities.StringUtils.join
    import static ${basePackagePrefix.raw}utilities.StringUtils.split
    import static ${basePackagePrefix.raw}app.MessageUtils.getMessage
    
    import org.apache.commons.text.WordUtils
    
    class App {
        static void main(String[] args) {
            LinkedList tokens
            tokens = split(getMessage())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 26 19:39:09 UTC 2023
    - 548 bytes
    - Viewed (0)
Back to top