Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 560 for parseRhs (1.9 sec)

  1. src/go/printer/testdata/parser.go

    	}
    
    	lbrack := p.expect(token.LBRACK)
    	p.exprLev++
    	var low, high ast.Expr
    	isSlice := false
    	if p.tok != token.COLON {
    		low = p.parseRhs()
    	}
    	if p.tok == token.COLON {
    		isSlice = true
    		p.next()
    		if p.tok != token.RBRACK {
    			high = p.parseRhs()
    		}
    	}
    	p.exprLev--
    	rbrack := p.expect(token.RBRACK)
    
    	if isSlice {
    		return &ast.SliceExpr{x, lbrack, low, high, rbrack}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
  2. src/go/parser/parser.go

    	var args []ast.Expr
    	if p.tok != token.RBRACK {
    		p.exprLev++
    		args = append(args, p.parseRhs())
    		for p.tok == token.COMMA {
    			comma := p.pos
    			p.next()
    			if p.tok == token.RBRACK {
    				trailingComma = comma
    				break
    			}
    			args = append(args, p.parseRhs())
    		}
    		p.exprLev--
    	}
    	rbrack := p.expect(token.RBRACK)
    
    	if len(args) == 0 {
    		// x []E
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  3. src/go/parser/interface.go

    )
    
    // ParseFile parses the source code of a single Go source file and returns
    // the corresponding [ast.File] node. The source code may be provided via
    // the filename of the source file, or via the src parameter.
    //
    // If src != nil, ParseFile parses the source from src and the filename is
    // only used when recording position information. The type of the argument
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  4. pkg/util/parsers/parsers.go

    limitations under the License.
    */
    
    package parsers
    
    import (
    	"fmt"
    	//  Import the crypto sha256 algorithm for the docker image parser to work
    	_ "crypto/sha256"
    	//  Import the crypto/sha512 algorithm for the docker image parser to work with 384 and 512 sha hashes
    	_ "crypto/sha512"
    
    	dockerref "github.com/distribution/reference"
    )
    
    // ParseImageName parses a docker image string into three parts: repo, tag and digest.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 01 01:53:40 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  5. src/text/template/helper.go

    }
    
    // ParseFS is like [Template.ParseFiles] or [Template.ParseGlob] but reads from the file system fsys
    // instead of the host operating system's file system.
    // It accepts a list of glob patterns (see [path.Match]).
    // (Note that most file names serve as glob patterns matching only themselves.)
    func ParseFS(fsys fs.FS, patterns ...string) (*Template, error) {
    	return parseFS(nil, fsys, patterns)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:54:08 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  6. src/html/template/template.go

    	return template.IsTrue(val)
    }
    
    // ParseFS is like [ParseFiles] or [ParseGlob] but reads from the file system fs
    // instead of the host operating system's file system.
    // It accepts a list of glob patterns.
    // (Note that most file names serve as glob patterns matching only themselves.)
    func ParseFS(fs fs.FS, patterns ...string) (*Template, error) {
    	return parseFS(nil, fs, patterns)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 21:00:46 UTC 2024
    - 17K bytes
    - Viewed (0)
  7. src/internal/txtar/archive.go

    		fmt.Fprintf(&buf, "-- %s --\n", f.Name)
    		buf.Write(fixNL(f.Data))
    	}
    	return buf.Bytes()
    }
    
    // ParseFile parses the named file as an archive.
    func ParseFile(file string) (*Archive, error) {
    	data, err := os.ReadFile(file)
    	if err != nil {
    		return nil, err
    	}
    	return Parse(data), nil
    }
    
    // Parse parses the serialized form of an Archive.
    // The returned Archive holds slices of data.
    func Parse(data []byte) *Archive {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 20 02:13:02 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/google/pprof/profile/legacy_java_profile.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    // This file implements parsers to convert java legacy profiles into
    // the profile.proto format.
    
    package profile
    
    import (
    	"bytes"
    	"fmt"
    	"io"
    	"path/filepath"
    	"regexp"
    	"strconv"
    	"strings"
    )
    
    var (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  9. pkg/kubelet/images/image_manager.go

    	}
    
    	// Fallback for no specific error
    	return err.Error(), ErrImagePull
    }
    
    // applyDefaultImageTag parses a docker image string, if it doesn't contain any tag or digest,
    // a default tag will be applied.
    func applyDefaultImageTag(image string) (string, error) {
    	_, tag, digest, err := parsers.ParseImageName(image)
    	if err != nil {
    		return "", err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 08 00:30:31 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/PomReader.java

    import org.xml.sax.InputSource;
    import org.xml.sax.SAXException;
    import org.xml.sax.SAXParseException;
    
    import javax.annotation.Nonnull;
    import javax.xml.parsers.DocumentBuilder;
    import javax.xml.parsers.DocumentBuilderFactory;
    import javax.xml.parsers.ParserConfigurationException;
    import java.io.ByteArrayInputStream;
    import java.io.IOException;
    import java.io.InputStream;
    import java.util.ArrayList;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 15:53:23 UTC 2024
    - 30K bytes
    - Viewed (0)
Back to top