Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for conf (0.72 sec)

  1. src/cmd/compile/internal/types2/api_test.go

    	}
    	return f
    }
    
    func typecheck(src string, conf *Config, info *Info) (*Package, error) {
    	f := mustParse(src)
    	if conf == nil {
    		conf = &Config{
    			Error:    func(err error) {}, // collect all errors
    			Importer: defaultImporter(),
    		}
    	}
    	return conf.Check(f.PkgName.Value, []*syntax.File{f}, info)
    }
    
    func mustTypecheck(src string, conf *Config, info *Info) *Package {
    	pkg, err := typecheck(src, conf, info)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  2. src/cmd/cgo/out.go

    			fmt.Fprintf(&gccgoInit, "\t%s = &%s;\n", n.Mangle, n.C)
    			fmt.Fprintf(fc, "\n")
    		}
    
    		fmt.Fprintf(fgo2, "var %s ", n.Mangle)
    		conf.Fprint(fgo2, fset, node)
    		if !*gccgo {
    			fmt.Fprintf(fgo2, " = (")
    			conf.Fprint(fgo2, fset, node)
    			fmt.Fprintf(fgo2, ")(unsafe.Pointer(&__cgo_%s))", n.C)
    		}
    		fmt.Fprintf(fgo2, "\n")
    	}
    	if *gccgo {
    		fmt.Fprintf(fc, "\n")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/expr.go

    		if x.val.Kind() == constant.Unknown {
    			// nothing to do (and don't cause an error below in the overflow check)
    			return
    		}
    		var prec uint
    		if isUnsigned(x.typ) {
    			prec = uint(check.conf.sizeof(x.typ) * 8)
    		}
    		x.val = constant.UnaryOp(op2tok[op], x.val, prec)
    		x.expr = e
    		check.overflow(x, opPos(x.expr))
    		return
    	}
    
    	x.mode = value
    	// x.typ remains unchanged
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  4. src/crypto/tls/conn.go

    // After a Write has timed out, the TLS state is corrupt and all future writes will return the same error.
    func (c *Conn) SetDeadline(t time.Time) error {
    	return c.conn.SetDeadline(t)
    }
    
    // SetReadDeadline sets the read deadline on the underlying connection.
    // A zero value for t means [Conn.Read] will not time out.
    func (c *Conn) SetReadDeadline(t time.Time) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  5. src/crypto/tls/tls_test.go

    		clientConfig := testConfig.Clone()
    		conn, err := Dial("tcp", ln.Addr().String(), clientConfig)
    		if err != nil {
    			return err
    		}
    		if err := conn.Handshake(); err != nil {
    			return err
    		}
    		defer conn.Close()
    
    		if err := conn.CloseWrite(); err != nil {
    			return fmt.Errorf("client CloseWrite: %v", err)
    		}
    
    		if _, err := conn.Write([]byte{0}); err != errShutdown {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  6. src/crypto/tls/handshake_server_test.go

    		if _, err := cli.writeHandshakeRecord(m, nil); err != nil {
    			testFatal(t, err)
    		}
    		c.Close()
    	}()
    	ctx := context.Background()
    	conn := Server(s, serverConfig)
    	ch, err := conn.readClientHello(ctx)
    	if conn.vers == VersionTLS13 {
    		hs := serverHandshakeStateTLS13{
    			c:           conn,
    			ctx:         ctx,
    			clientHello: ch,
    		}
    		if err == nil {
    			err = hs.processClientHello()
    		}
    		if err == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  7. src/crypto/tls/handshake_client_test.go

    }
    
    // peekError does a read with a short timeout to check if the next read would
    // cause an error, for example if there is an alert waiting on the wire.
    func peekError(conn net.Conn) error {
    	conn.SetReadDeadline(time.Now().Add(100 * time.Millisecond))
    	if n, err := conn.Read(make([]byte, 1)); n != 0 {
    		return errors.New("unexpectedly read data")
    	} else if err != nil {
    		if netErr, ok := err.(net.Error); !ok || !netErr.Timeout() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    	tcpinfo.Rcv_ssthresh = conn.ssThresh
    	tcpinfo.Rtt = conn.roundTripTime
    	tcpinfo.Rttvar = conn.roundTripVar
    	tcpinfo.Snd_ssthresh = conn.ssThresh // dummy
    	tcpinfo.Snd_cwnd = conn.congestionWnd
    	tcpinfo.Advmss = conn.sendMSS        // dummy
    	tcpinfo.Reordering = 0               // dummy
    	tcpinfo.Rcv_rtt = conn.roundTripTime // dummy
    	tcpinfo.Rcv_space = conn.sendMSS     // dummy
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/syntax/parser.go

    	s := new(ForStmt)
    	s.pos = p.pos()
    
    	s.Init, s.Cond, s.Post = p.header(_For)
    	s.Body = p.blockStmt("for clause")
    
    	return s
    }
    
    func (p *parser) header(keyword token) (init SimpleStmt, cond Expr, post SimpleStmt) {
    	p.want(keyword)
    
    	if p.tok == _Lbrace {
    		if keyword == _If {
    			p.syntaxError("missing condition in if statement")
    			cond = p.badExpr()
    		}
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modload/load.go

    	// loadPkg have been populated.
    	pkgImportsLoaded
    )
    
    // has reports whether all of the flags in cond are set in f.
    func (f loadPkgFlags) has(cond loadPkgFlags) bool {
    	return f&cond == cond
    }
    
    // An atomicLoadPkgFlags stores a loadPkgFlags for which individual flags can be
    // added atomically.
    type atomicLoadPkgFlags struct {
    	bits atomic.Int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
Back to top