Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 168 for _typ (0.04 sec)

  1. platforms/documentation/docs/src/main/resources/header.html

                            <a target="_top" class="site-header__navigation-link" href="https://dpeuniversity.gradle.com/" itemprop="url">DPE University</a>
                        </li>
                        <li class="site-header__navigation-item" itemprop="name">
                            <a target="_top" class="site-header__navigation-link" href="https://gradle.org/training/" itemprop="url">Events</a>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 35.6K bytes
    - Viewed (0)
  2. src/net/dnsname_test.go

    package net
    
    import (
    	"strings"
    	"testing"
    )
    
    type dnsNameTest struct {
    	name   string
    	result bool
    }
    
    var dnsNameTests = []dnsNameTest{
    	// RFC 2181, section 11.
    	{"_xmpp-server._tcp.google.com", true},
    	{"foo.com", true},
    	{"1foo.com", true},
    	{"26.0.0.73.com", true},
    	{"10-0-0-1", true},
    	{"fo-o.com", true},
    	{"fo1o.com", true},
    	{"foo1.com", true},
    	{"a.b..com", false},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ir/type.go

    // A typeNode is a Node wrapper for type t.
    type typeNode struct {
    	miniNode
    	typ *types.Type
    }
    
    func newTypeNode(typ *types.Type) *typeNode {
    	n := &typeNode{typ: typ}
    	n.pos = src.NoXPos
    	n.op = OTYPE
    	n.SetTypecheck(1)
    	return n
    }
    
    func (n *typeNode) Type() *types.Type { return n.typ }
    func (n *typeNode) Sym() *types.Sym   { return n.typ.Sym() }
    
    // TypeNode returns the Node representing the type t.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Aug 20 05:56:49 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  4. docs/pt/docs/history-design-future.md

    </blockquote>
    
    ## Investigação
    
    Ao usar todas as alternativas anteriores, eu tive a chance de aprender com todas elas, aproveitar ideias e combiná-las da melhor maneira que encontrei para mim e para os times de desenvolvedores com os quais trabalhava.
    
    Por exemplo, estava claro que idealmente ele deveria ser baseado nos _type hints_ padrões do Python.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/syntax/tokens.go

    	_Interface   // interface
    	_Map         // map
    	_Package     // package
    	_Range       // range
    	_Return      // return
    	_Select      // select
    	_Struct      // struct
    	_Switch      // switch
    	_Type        // type
    	_Var         // var
    
    	// empty line comment to exclude it from .String
    	tokenCount //
    )
    
    const (
    	// for BranchStmt
    	Break       = _Break
    	Continue    = _Continue
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 14:52:38 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  6. build/build-image/rsyncd.sh

    port = 8730
    [k8s]
      numeric ids = true
      $USER_CONFIG
      hosts deny = *
      hosts allow = ${ALLOW} ${ALLOW_HOST-}
      auth users = k8s
      secrets file = ${SECRETS}
      read only = false
      path = ${VOLUME}
      filter = - /_tmp/
    EOF
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 04 15:58:52 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/syntax/token_string.go

    	_ = x[_If-35]
    	_ = x[_Import-36]
    	_ = x[_Interface-37]
    	_ = x[_Map-38]
    	_ = x[_Package-39]
    	_ = x[_Range-40]
    	_ = x[_Return-41]
    	_ = x[_Select-42]
    	_ = x[_Struct-43]
    	_ = x[_Switch-44]
    	_ = x[_Type-45]
    	_ = x[_Var-46]
    	_ = x[tokenCount-47]
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 29 02:28:24 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  8. src/runtime/runtime-gdb.py

    	try:
    		return str(val['tab'].type) == "struct runtime.itab *" and str(val['data'].type) == "void *"
    	except gdb.error:
    		pass
    
    
    def is_eface(val):
    	try:
    		return str(val['_type'].type) == "struct runtime._type *" and str(val['data'].type) == "void *"
    	except gdb.error:
    		pass
    
    
    def lookup_type(name):
    	try:
    		return gdb.lookup_type(name)
    	except gdb.error:
    		pass
    	try:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 10 12:59:20 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/expr.go

    			if atyp, _ := e.Type.(*syntax.ArrayType); atyp != nil && atyp.Len == nil {
    				// We have an "open" [...]T array type.
    				// Create a new ArrayType with unknown length (-1)
    				// and finish setting it up after analyzing the literal.
    				typ = &Array{len: -1, elem: check.varType(atyp.Elem)}
    				base = typ
    				break
    			}
    			typ = check.typ(e.Type)
    			base = typ
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/syntax/printer.go

    	}
    }
    
    func (p *printer) printFieldList(fields []*Field, tags []*BasicLit, sep token) {
    	i0 := 0
    	var typ Expr
    	for i, f := range fields {
    		if f.Name == nil || f.Type != typ {
    			if i0 < i {
    				p.printFields(fields, tags, i0, i)
    				p.print(sep, newline)
    				i0 = i
    			}
    			typ = f.Type
    		}
    	}
    	p.printFields(fields, tags, i0, len(fields))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 24 07:17:27 UTC 2023
    - 21.5K bytes
    - Viewed (0)
Back to top