Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 49 of 49 for typexpr (2.32 sec)

  1. src/database/sql/convert.go

    	case reflect.Bool:
    		return strconv.AppendBool(buf, rv.Bool()), true
    	case reflect.String:
    		s := rv.String()
    		return append(buf, s...), true
    	}
    	return
    }
    
    var valuerReflectType = reflect.TypeFor[driver.Valuer]()
    
    // callValuerValue returns vr.Value(), with one exception:
    // If vr.Value is an auto-generated method on a pointer type and the
    // pointer is nil, it would panic at runtime in the panicwrap
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  2. cluster/addons/calico-policy-controller/networkpolicies-crd.yaml

                      ... }  ->  true if the value of label X is not one of \"a\", \"b\",
                      \"c\" \thas(label_name)  -> True if that label is present \t! expr
                      -> negation of expr \texpr && expr  -> Short-circuit and \texpr
                      || expr  -> Short-circuit or \t( expr ) -> parens for grouping \tall()
                      or the empty selector -> matches all endpoints. \n Label names are
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 07 20:48:43 UTC 2021
    - 44.2K bytes
    - Viewed (0)
  3. src/encoding/json/encode.go

    	f = newTypeEncoder(t, true)
    	wg.Done()
    	encoderCache.Store(t, f)
    	return f
    }
    
    var (
    	marshalerType     = reflect.TypeFor[Marshaler]()
    	textMarshalerType = reflect.TypeFor[encoding.TextMarshaler]()
    )
    
    // newTypeEncoder constructs an encoderFunc for a type.
    // The returned encoder only checks CanAddr when allowAddr is true.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 36.2K bytes
    - Viewed (0)
  4. src/net/rpc/server.go

    	"sync"
    )
    
    const (
    	// Defaults used by HandleHTTP
    	DefaultRPCPath   = "/_goRPC_"
    	DefaultDebugPath = "/debug/rpc"
    )
    
    // Precompute the reflect type for error.
    var typeOfError = reflect.TypeFor[error]()
    
    type methodType struct {
    	sync.Mutex // protects counters
    	method     reflect.Method
    	ArgType    reflect.Type
    	ReplyType  reflect.Type
    	numCalls   uint
    }
    
    type service struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  5. src/encoding/gob/gobencdec_test.go

    	oldNestingDepth := maxIgnoreNestingDepth
    	maxIgnoreNestingDepth = 100
    	defer func() { maxIgnoreNestingDepth = oldNestingDepth }()
    	b := new(bytes.Buffer)
    	enc := NewEncoder(b)
    	typ := reflect.TypeFor[int]()
    	nested := reflect.ArrayOf(1, typ)
    	for i := 0; i < 100; i++ {
    		nested = reflect.ArrayOf(1, nested)
    	}
    	badStruct := reflect.New(reflect.StructOf([]reflect.StructField{{Name: "F", Type: nested}}))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 01 14:26:13 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  6. operator/cmd/mesh/manifest-generate_test.go

    		if err == io.EOF {
    			break
    		}
    		if err != nil {
    			return fmt.Errorf("next: %v", err)
    		}
    
    		dest := filepath.Join(destination, header.Name)
    		switch header.Typeflag {
    		case tar.TypeDir:
    			if _, err := os.Stat(dest); err != nil {
    				if err := os.Mkdir(dest, 0o755); err != nil {
    					return fmt.Errorf("mkdir: %v", err)
    				}
    			}
    		case tar.TypeReg:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  7. src/encoding/gob/decode.go

    			delete(decoderMap, remoteId)
    		}
    	}
    	return
    }
    
    // emptyStruct is the type we compile into when ignoring a struct value.
    type emptyStruct struct{}
    
    var emptyStructType = reflect.TypeFor[emptyStruct]()
    
    // getIgnoreEnginePtr returns the engine for the specified type when the value is to be discarded.
    func (dec *Decoder) getIgnoreEnginePtr(wireId typeId) (enginePtr **decEngine, err error) {
    	var ok bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:10:23 UTC 2023
    - 40.1K bytes
    - Viewed (0)
  8. src/archive/tar/reader_test.go

    				"GNU.sparse.realsize": "1000",
    				"GNU.sparse.name":     "sparse.db",
    			},
    			Format: FormatPAX,
    		}},
    	}, {
    		file: "testdata/trailing-slash.tar",
    		headers: []*Header{{
    			Typeflag: TypeDir,
    			Name:     strings.Repeat("123456789/", 30),
    			ModTime:  time.Unix(0, 0),
    			PAXRecords: map[string]string{
    				"path": strings.Repeat("123456789/", 30),
    			},
    			Format: FormatPAX,
    		}},
    	}}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 21 21:14:38 UTC 2022
    - 47.1K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/rulegen.go

    //                   extra ignored args that need not appear in the replacement
    
    // extra conditions is just a chunk of Go that evaluates to a boolean. It may use
    // variables declared in the matching tsexpr. The variable "v" is predefined to be
    // the value matched by the entire rule.
    
    // If multiple rules match, the first one in file order is selected.
    
    var (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 02 22:09:21 UTC 2023
    - 48.7K bytes
    - Viewed (0)
Back to top