Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,605 for paused (0.14 sec)

  1. tools/docker-builder/dockerfile/parse.go

    	Value     []string // The contents of the command (ex: `ubuntu:xenial`)
    }
    
    // parseFile parses a Dockerfile from a filename.
    func parseFile(filename string) ([]Command, error) {
    	file, err := os.Open(filename)
    	if err != nil {
    		return nil, err
    	}
    	defer file.Close()
    
    	res, err := parser.Parse(file)
    	if err != nil {
    		return nil, err
    	}
    
    	var ret []Command
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  2. pkg/test/util/tmpl/parse.go

    	"istio.io/istio/pkg/test"
    )
    
    // Parse the given template content.
    func Parse(tpl string) (*template.Template, error) {
    	t := template.New("test template")
    	return t.Funcs(sprig.TxtFuncMap()).Parse(tpl)
    }
    
    // ParseOrFail calls Parse and fails tests if it returns error.
    func ParseOrFail(t test.Failer, tpl string) *template.Template {
    	t.Helper()
    	tpl2, err := Parse(tpl)
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jul 01 05:55:48 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  3. pkg/test/util/yml/parse.go

    }
    
    // Part is a single-part yaml source, along with its descriptor.
    type Part struct {
    	Contents   string
    	Descriptor Descriptor
    }
    
    // Parse parses the given multi-part yaml text, and returns as Parts.
    func Parse(yamlText string) ([]Part, error) {
    	splitContent := SplitString(yamlText)
    	parts := make([]Part, 0, len(splitContent))
    	for _, part := range splitContent {
    		if len(part) > 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 27 09:06:29 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  4. src/net/parse.go

    Jes Cok <******@****.***> 1714824795 +0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 14:00:54 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/sys/cpu/parse.go

    // Copyright 2022 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package cpu
    
    import "strconv"
    
    // parseRelease parses a dot-separated version number. It follows the semver
    // syntax, but allows the minor and patch versions to be elided.
    //
    // This is a copy of the Go runtime's parseRelease from
    // https://golang.org/cl/209597.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 30 17:48:21 UTC 2023
    - 1K bytes
    - Viewed (0)
  6. pkg/test/echo/parse.go

    Nathan Mittler <******@****.***> 1645655146 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 23 22:25:46 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/telemetry/internal/counter/parse.go

    package counter
    
    import (
    	"bytes"
    	"fmt"
    	"strings"
    	"unsafe"
    
    	"golang.org/x/telemetry/internal/mmap"
    )
    
    type File struct {
    	Meta  map[string]string
    	Count map[string]uint64
    }
    
    func Parse(filename string, data []byte) (*File, error) {
    	if !bytes.HasPrefix(data, []byte(hdrPrefix)) || len(data) < pageSize {
    		if len(data) < pageSize {
    			return nil, fmt.Errorf("%s: file too short (%d<%d)", filename, len(data), pageSize)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 14:38:01 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  8. src/internal/dag/parse.go

    		return cmp.Compare(g.byLabel[a], g.byLabel[b])
    	})
    	return edges
    }
    
    // Parse parses the DAG language and returns the transitive closure of
    // the described graph. In the returned graph, there is an edge from "b"
    // to "a" if b < a (or a > b) in the partial order.
    func Parse(dag string) (*Graph, error) {
    	g := newGraph()
    	disallowed := []rule{}
    
    	rules, err := parseRules(dag)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  9. internal/config/lambda/parse.go

    Aditya Manthramurthy <******@****.***> 1716591923 -0700
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 6K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_run_flags_issue64738.txt

    # Regression test for https://go.dev/issue/64738:
    # a bug in 'go run' caused flags arguments after the requested package to
    # also be parsed as cmd/go flags.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 23 18:08:32 UTC 2024
    - 211 bytes
    - Viewed (0)
Back to top