Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 109 for U_comm (0.26 sec)

  1. src/syscall/ztypes_linux_mips64le.go

    	U_tsize     uint64
    	U_dsize     uint64
    	U_ssize     uint64
    	Start_code  uint64
    	Start_data  uint64
    	Start_stack uint64
    	Signal      int64
    	U_ar0       uint64
    	Magic       uint64
    	U_comm      [32]int8
    }
    
    type FdSet struct {
    	Bits [16]int64
    }
    
    type Sysinfo_t struct {
    	Uptime    int64
    	Loads     [3]uint64
    	Totalram  uint64
    	Freeram   uint64
    	Sharedram uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  2. src/syscall/ztypes_linux_mips64.go

    	U_tsize     uint64
    	U_dsize     uint64
    	U_ssize     uint64
    	Start_code  uint64
    	Start_data  uint64
    	Start_stack uint64
    	Signal      int64
    	U_ar0       uint64
    	Magic       uint64
    	U_comm      [32]int8
    }
    
    type FdSet struct {
    	Bits [16]int64
    }
    
    type Sysinfo_t struct {
    	Uptime    int64
    	Loads     [3]uint64
    	Totalram  uint64
    	Freeram   uint64
    	Sharedram uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  3. src/syscall/ztypes_linux_mips.go

    	U_tsize     uint32
    	U_dsize     uint32
    	U_ssize     uint32
    	Start_code  uint32
    	Start_data  uint32
    	Start_stack uint32
    	Signal      int32
    	U_ar0       *byte
    	Magic       uint32
    	U_comm      [32]int8
    }
    
    type FdSet struct {
    	Bits [32]int32
    }
    
    type Sysinfo_t struct {
    	Uptime    int32
    	Loads     [3]uint32
    	Totalram  uint32
    	Freeram   uint32
    	Sharedram uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 10K bytes
    - Viewed (0)
  4. src/syscall/ztypes_linux_mipsle.go

    	U_tsize     uint32
    	U_dsize     uint32
    	U_ssize     uint32
    	Start_code  uint32
    	Start_data  uint32
    	Start_stack uint32
    	Signal      int32
    	U_ar0       *byte
    	Magic       uint32
    	U_comm      [32]int8
    }
    
    type FdSet struct {
    	Bits [32]int32
    }
    
    type Sysinfo_t struct {
    	Uptime    int32
    	Loads     [3]uint32
    	Totalram  uint32
    	Freeram   uint32
    	Sharedram uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 10K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/syntax/printer.go

    		}
    	}
    }
    
    func (p *printer) printNameList(list []*Name) {
    	for i, x := range list {
    		if i > 0 {
    			p.print(_Comma, blank)
    		}
    		p.printNode(x)
    	}
    }
    
    func (p *printer) printExprList(list []Expr) {
    	for i, x := range list {
    		if i > 0 {
    			p.print(_Comma, blank)
    		}
    		p.printNode(x)
    	}
    }
    
    func (p *printer) printExprLines(list []Expr) {
    	if len(list) > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 24 07:17:27 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/util/MimeMap.java

    import java.io.InputStream;
    import java.io.IOException;
    
    public class MimeMap {
    
        private static final int IN_SIZE = 7000;
    
        private static final int ST_START = 1;
        private static final int ST_COMM = 2;
        private static final int ST_TYPE = 3;
        private static final int ST_GAP = 4;
        private static final int ST_EXT = 5;
    
        private byte[] in;
        private int inLen;
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 4.2K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/syntax/parser.go

    }
    
    // ExpressionList = Expression { "," Expression } .
    func (p *parser) exprList() Expr {
    	if trace {
    		defer p.trace("exprList")()
    	}
    
    	x := p.expr()
    	if p.got(_Comma) {
    		list := []Expr{x, p.expr()}
    		for p.got(_Comma) {
    			list = append(list, p.expr())
    		}
    		t := new(ListExpr)
    		t.pos = x.Pos()
    		t.ElemList = list
    		x = t
    	}
    	return x
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/bbottema/javasocksproxyserver/TestRecordingProxyHandler.java

                        return;
                }
    
                comm.authenticate(theSOCKSversion);
                comm.getClientCommand();
    
                if (comm.socksCommand == SocksConstants.SC_CONNECT) {
                    connectionTargets.add(comm.m_ServerIP);
                }
            } catch (Exception e) {
                throw new RuntimeException(e);
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2K bytes
    - Viewed (0)
  9. src/internal/fuzz/sys_windows.go

    // run a worker process.
    func setWorkerComm(cmd *exec.Cmd, comm workerComm) {
    	mem := <-comm.memMu
    	memFD := mem.f.Fd()
    	comm.memMu <- mem
    	syscall.SetHandleInformation(syscall.Handle(comm.fuzzIn.Fd()), syscall.HANDLE_FLAG_INHERIT, 1)
    	syscall.SetHandleInformation(syscall.Handle(comm.fuzzOut.Fd()), syscall.HANDLE_FLAG_INHERIT, 1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 18:35:25 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/bootstrap/DaemonStartupCommunicationSpec.groovy

            def startupInfo = comm.readDiagnostics(message)
    
            then:
            startupInfo.diagnostics.pid == null
        }
    
        def "knows if a message contains a greeting"() {
            expect:
            !comm.containsGreeting("foo")
            comm.containsGreeting(message(null, "id", uuid, 123, addresses, new File("foo")))
    
            when:
            comm.containsGreeting(null)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2.5K bytes
    - Viewed (0)
Back to top