Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of about 10,000 for spring (0.23 sec)

  1. utils/utils.go

    // NestedRelationName nested relationships like `Manager__Company`
    func NestedRelationName(prefix, name string) string {
    	return prefix + nestedRelationSplit + name
    }
    
    // SplitNestedRelationName Split nested relationships to `[]string{"Manager","Company"}`
    func SplitNestedRelationName(name string) []string {
    	return strings.Split(name, nestedRelationSplit)
    }
    
    // JoinNestedRelationNames nested relationships like `Manager__Company`
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Apr 22 06:43:02 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. src/syscall/syscall_plan9.go

    }
    
    //sys	bind(name string, old string, flag int) (err error)
    
    func Bind(name string, old string, flag int) (err error) {
    	if fixwd(name, old) {
    		defer runtime.UnlockOSThread()
    	}
    	return bind(name, old, flag)
    }
    
    //sys	mount(fd int, afd int, old string, flag int, aname string) (err error)
    
    func Mount(fd int, afd int, old string, flag int, aname string) (err error) {
    	if fixwd(old) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  3. src/log/log.go

    // Print calls Output to print to the standard logger.
    // Arguments are handled in the manner of [fmt.Print].
    func Print(v ...any) {
    	std.output(0, 2, func(b []byte) []byte {
    		return fmt.Append(b, v...)
    	})
    }
    
    // Printf calls Output to print to the standard logger.
    // Arguments are handled in the manner of [fmt.Printf].
    func Printf(format string, v ...any) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 23 22:56:07 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  4. pkg/monitoring/monitortest/test.go

    			m := Metric{Name: *metric.Name, Labels: map[string]string{}, Value: display(row)}
    			for _, kv := range row.Label {
    				k, v := *kv.Name, *kv.Value
    				m.Labels[k] = v
    			}
    			metrics = append(metrics, m)
    		}
    	}
    	return metrics
    }
    
    type Metric struct {
    	Name   string
    	Labels map[string]string
    	Value  string
    }
    
    func (m *MetricsTest) Dump() {
    	m.t.Helper()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 13 16:04:48 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/text/cases/icu.go

    /*
    #cgo LDFLAGS: -licui18n.57 -licuuc.57
    #include <stdlib.h>
    #include <unicode/ustring.h>
    #include <unicode/utypes.h>
    #include <unicode/localpointer.h>
    #include <unicode/ucasemap.h>
    */
    import "C"
    
    import "unsafe"
    
    func doICU(tag, caser, input string) string {
    	err := C.UErrorCode(0)
    	loc := C.CString(tag)
    	cm := C.ucasemap_open(loc, C.uint32_t(0), &err)
    
    	buf := make([]byte, len(input)*4)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  6. internal/http/listener.go

    	RecvBufSize int              // SO_RECVBUF size for the socket connection, NOTE: this sets server and client connection
    	Interface   string           // This is a VRF device passed via `--interface` flag
    	Trace       func(msg string) // Trace when starting.
    }
    
    // ForWebsocket returns TCPOptions valid for websocket net.Conn
    func (t TCPOptions) ForWebsocket() TCPOptions {
    	return TCPOptions{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  7. security/pkg/nodeagent/sds/sdsservice_test.go

    		if err := cert.ExpectError(t); !strings.Contains(fmt.Sprint(err), "failed to generate secret") {
    			t.Fatalf("didn't get expected error; got %v", err)
    		}
    		cert.Cleanup()
    
    		s.UpdateSecret(testResourceName, pushSecret)
    		// If the secret is added later, new connections will succeed
    		cert = s.Connect()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 17 20:12:58 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  8. src/cmd/go/internal/cfg/cfg.go

    	BuildCoverPkg      []string                // -coverpkg flag
    	BuildN             bool                    // -n flag
    	BuildO             string                  // -o flag
    	BuildP             = runtime.GOMAXPROCS(0) // -p flag
    	BuildPGO           string                  // -pgo flag
    	BuildPkgdir        string                  // -pkgdir flag
    	BuildRace          bool                    // -race flag
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:51 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  9. src/debug/macho/file.go

    type FormatError struct {
    	off int64
    	msg string
    	val any
    }
    
    func (e *FormatError) Error() string {
    	msg := e.msg
    	if e.val != nil {
    		msg += fmt.Sprintf(" '%v'", e.val)
    	}
    	msg += fmt.Sprintf(" in record at byte %#x", e.off)
    	return msg
    }
    
    // Open opens the named file using [os.Open] and prepares it for use as a Mach-O binary.
    func Open(name string) (*File, error) {
    	f, err := os.Open(name)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/unusedresult/unusedresult.go

    	})
    	return nil, nil
    }
    
    // func() string
    var sigNoArgsStringResult = types.NewSignature(nil, nil,
    	types.NewTuple(types.NewVar(token.NoPos, nil, "", types.Typ[types.String])),
    	false)
    
    type stringSetFlag map[string]bool
    
    func (ss *stringSetFlag) String() string {
    	var items []string
    	for item := range *ss {
    		items = append(items, item)
    	}
    	sort.Strings(items)
    	return strings.Join(items, ",")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 4.5K bytes
    - Viewed (0)
Back to top