Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 323 for mary (0.34 sec)

  1. src/cmd/doc/main.go

    // parseSymbol breaks str apart into a symbol and method.
    // Both may be missing or the method may be missing.
    // If present, each must be a valid Go identifier.
    func parseSymbol(str string) (symbol, method string) {
    	if str == "" {
    		return
    	}
    	elem := strings.Split(str, ".")
    	switch len(elem) {
    	case 1:
    	case 2:
    		method = elem[1]
    	default:
    		log.Printf("too many periods in symbol specification")
    		usage()
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/driver/driver.go

    // Copyright 2014 Google Inc. All Rights Reserved.
    //
    // Licensed under the Apache License, Version 2.0 (the "License");
    // you may not use this file except in compliance with the License.
    // You may obtain a copy of the License at
    //
    //     http://www.apache.org/licenses/LICENSE-2.0
    //
    // Unless required by applicable law or agreed to in writing, software
    // distributed under the License is distributed on an "AS IS" BASIS,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/x86/obj6_test.go

    		n := normalize(parts[2])
    		mark_matches := marker.FindStringSubmatch(n)
    		if mark_matches != nil {
    			mark, _ = strconv.Atoi(mark_matches[1])
    			if _, ok := td.marker_to_input[mark]; !ok {
    				t.Fatalf("unexpected marker %d", mark)
    			}
    		} else if mark != -1 {
    			td.marker_to_output[mark] = append(td.marker_to_output[mark], n)
    		}
    	}
    }
    
    func TestDynlink(t *testing.T) {
    	testenv.MustHaveGoBuild(t)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 15 20:21:30 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/buildlist.go

    				// over.
    				//
    				// So omitting a root that was previously present may *reduce* the
    				// selected versions of non-roots, but merely removing a requirement
    				// cannot *increase* the selected versions of other roots as a result —
    				// we don't need to mark this change as an upgrade. (This particular
    				// change cannot invalidate any other roots.)
    				continue
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  5. src/cmd/gofmt/gofmt.go

    //
    // For now, this is arbitrarily set to 200, based on the observation that many
    // platforms default to a kernel limit of 256. Ideally, perhaps we should derive
    // it from rlimit on platforms that support that system call.
    //
    // File descriptors opened from outside of this package are not tracked,
    // so this limit may be approximate.
    var fdSem = make(chan bool, 200)
    
    var (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/validtype.go

    				// instantiated since the instantiation t of t.Origin() happens
    				// inside t.Origin()'s RHS and thus is always the same and always
    				// present.
    				// Therefore we can mark the underlying of both t and t.Origin()
    				// as invalid. If t is not an instance of a generic type, t and
    				// t.Origin() are the same.
    				// Furthermore, because we check all types in a package for validity
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 13:22:37 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/numberlines.go

    				b.Pos = line
    				endlines[b.ID] = line
    				continue
    			}
    			// If the block differs from its predecessors, mark it as a statement
    			if line == src.NoXPos || !line.SameFileAndLine(b.Pos) {
    				b.Pos = b.Pos.WithIsStmt()
    				if f.pass.debug > 0 {
    					fmt.Printf("Mark stmt effectively-empty-block %s %s %s\n", f.Name, b, flc(b.Pos))
    				}
    			}
    			endlines[b.ID] = b.Pos
    			continue
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 21:26:13 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  8. model.go

    package gorm
    
    import "time"
    
    // Model a basic GoLang struct which includes the following fields: ID, CreatedAt, UpdatedAt, DeletedAt
    // It may be embedded into your model or you may build your own model without it
    //
    //	type User struct {
    //	  gorm.Model
    //	}
    type Model struct {
    	ID        uint `gorm:"primarykey"`
    	CreatedAt time.Time
    	UpdatedAt time.Time
    	DeletedAt DeletedAt `gorm:"index"`
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Sat Feb 18 01:06:43 UTC 2023
    - 396 bytes
    - Viewed (0)
  9. src/cmd/cgo/doc.go

    [runtime.Pinner].
    
    The _GoString_ type also may not be pinned with [runtime.Pinner].
    Because it includes a Go pointer, the memory it points to is only pinned
    for the duration of the call; _GoString_ values may not be retained by C
    code.
    
    A Go function called by C code may return a Go pointer to pinned memory
    (which implies that it may not return a string, slice, channel, and so
    forth). A Go function called by C code may take C pointers as arguments,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modcmd/download.go

    			if erri, ok := downloadErrs.Load(m); ok {
    				sw.Error(erri.(error))
    			}
    		}
    		// Only call sw.Switch if it will actually switch.
    		// Otherwise, we may want to write the errors as JSON
    		// (instead of using base.Error as sw.Switch would),
    		// and we may also have other errors to report from the
    		// initial infos returned by ListModules.
    		if sw.NeedSwitch() {
    			sw.Switch(ctx)
    		}
    	}
    
    	if *downloadJSON {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 19:32:39 UTC 2023
    - 13.5K bytes
    - Viewed (0)
Back to top