Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 59 for _typ (0.03 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. platforms/extensibility/test-kit/src/main/java/org/gradle/testkit/runner/TaskOutcome.java

         * <p>
         * This outcome only occurs when the build under test has been configured for
         * <a href="https://docs.gradle.org/current/userguide/build_cache.html#sec:task_output_caching" target="_top">task output caching</a>.
         * </p>
         * <p>NOTE: If the Gradle version used for the build under test is older than 3.3,
         * no tasks will have this outcome.</p>
         *
         * @since 3.3
         */
        FROM_CACHE,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  8. src/runtime/defs_dragonfly_amd64.go

    	_EV_CLEAR     = 0x20
    	_EV_ERROR     = 0x4000
    	_EV_EOF       = 0x8000
    	_EVFILT_READ  = -0x1
    	_EVFILT_WRITE = -0x2
    	_EVFILT_USER  = -0x9
    
    	_NOTE_TRIGGER = 0x1000000
    )
    
    type rtprio struct {
    	_type uint16
    	prio  uint16
    }
    
    type lwpparams struct {
    	start_func uintptr
    	arg        unsafe.Pointer
    	stack      uintptr
    	tid1       unsafe.Pointer // *int32
    	tid2       unsafe.Pointer // *int32
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/smb1/trans/nt/NtTransQuerySecurityDescResponse.java

     */
    
    package jcifs.internal.smb1.trans.nt;
    
    
    import java.io.IOException;
    
    import jcifs.Configuration;
    import jcifs.RuntimeCIFSException;
    import jcifs.internal.dtyp.SecurityDescriptor;
    import jcifs.internal.util.SMBUtil;
    
    
    /**
     * 
     */
    public class NtTransQuerySecurityDescResponse extends SmbComNtTransactionResponse {
    
        private SecurityDescriptor securityDescriptor;
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 2.8K bytes
    - Viewed (0)
  10. src/runtime/defs_plan9_amd64.go

    	si  uint64
    	di  uint64
    	bp  uint64
    	r8  uint64
    	r9  uint64
    	r10 uint64
    	r11 uint64
    	r12 uint64
    	r13 uint64
    	r14 uint64
    	r15 uint64
    
    	ds uint16
    	es uint16
    	fs uint16
    	gs uint16
    
    	_type uint64
    	error uint64 /* error code (or zero) */
    	ip    uint64 /* pc */
    	cs    uint64 /* old context */
    	flags uint64 /* old flags */
    	sp    uint64 /* sp */
    	ss    uint64 /* old stack segment */
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 21 22:12:04 UTC 2021
    - 1.8K bytes
    - Viewed (0)
Back to top