Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 451 for perl (0.04 sec)

  1. buildscripts/checkdeps.sh

    		exit 1
    	fi
    }
    
    assert_check_deps() {
    	# support unusual Git versions such as: 2.7.4 (Apple Git-66)
    	installed_git_version=$(git version | perl -ne '$_ =~ m/git version (.*?)( |$)/; print "$1\n";')
    	if ! check_minimum_version "${GIT_VERSION}" "${installed_git_version}"; then
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 05:08:11 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. src/net/http/cgi/cgi_main.go

    	case "/bar", "/test.cgi", "/myscript/bar", "/test.cgi/extrapath":
    		testCGI()
    		return
    	}
    	childCGIProcess()
    }
    
    // testCGI is a CGI program translated from a Perl program to complete host_test.
    // test cases in host_test should be provided by testCGI.
    func testCGI() {
    	req, err := Request()
    	if err != nil {
    		panic(err)
    	}
    
    	err = req.ParseForm()
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. src/regexp/onepass_test.go

    }
    
    func TestCompileOnePass(t *testing.T) {
    	var (
    		p   *syntax.Prog
    		re  *syntax.Regexp
    		err error
    	)
    	for _, test := range onePassTests {
    		if re, err = syntax.Parse(test.re, syntax.Perl); err != nil {
    			t.Errorf("Parse(%q) got err:%s, want success", test.re, err)
    			continue
    		}
    		// needs to be done before compile...
    		re = re.Simplify()
    		if p, err = syntax.Compile(re); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  4. src/syscall/mksysctl_openbsd.pl

    #!/usr/bin/env perl
    
    # Copyright 2011 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.
    
    #
    # Parse the header files for OpenBSD and generate a Go usable sysctl MIB.
    #
    # Build a MIB with each entry being an array containing the level, type and
    # a hash that will contain additional entries if the current entry is a node.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 14 13:21:46 UTC 2018
    - 5K bytes
    - Viewed (0)
  5. src/regexp/all_test.go

    func TestParseAndCompile(t *testing.T) {
    	expr := "a$"
    	s := "a\nb"
    
    	for i, tc := range []struct {
    		reFlags  syntax.Flags
    		expMatch bool
    	}{
    		{syntax.Perl | syntax.OneLine, false},
    		{syntax.Perl &^ syntax.OneLine, true},
    	} {
    		parsed, err := syntax.Parse(expr, tc.reFlags)
    		if err != nil {
    			t.Fatalf("%d: parse: %v", i, err)
    		}
    		re, err := Compile(parsed.String())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  6. src/crypto/md5/md5block_386.s

    // Original source:
    //	http://www.zorinaq.com/papers/md5-amd64.html
    //	http://www.zorinaq.com/papers/md5-amd64.tar.bz2
    //
    // Translated from Perl generating GNU assembly into
    // #defines generating 8a assembly, and adjusted for 386,
    // by the Go Authors.
    
    //go:build !purego
    
    #include "textflag.h"
    
    // MD5 optimized for AMD64.
    //
    // Author: Marc Bevand <bevand_m (at) epita.fr>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  7. src/crypto/md5/md5block_amd64.s

    // Original source:
    //	http://www.zorinaq.com/papers/md5-amd64.html
    //	http://www.zorinaq.com/papers/md5-amd64.tar.bz2
    //
    // Translated from Perl generating GNU assembly into
    // #defines generating 6a assembly by the Go Authors.
    
    //go:build !purego
    
    #include "textflag.h"
    
    // MD5 optimized for AMD64.
    //
    // Author: Marc Bevand <bevand_m (at) epita.fr>
    // Licence: I hereby disclaim the copyright on this code and place it
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  8. src/syscall/mksyscall_libc.pl

    #!/usr/bin/env perl
    # Copyright 2009 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.
    
    # This program reads a file containing function prototypes
    # (like syscall_solaris.go) and generates system call bodies.
    # The prototypes are marked by lines beginning with "//sys"
    # and read like func declarations if //sys is replaced by func, but:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 11:28:51 UTC 2023
    - 8K bytes
    - Viewed (0)
  9. src/syscall/mksyscall.pl

    #!/usr/bin/env perl
    # Copyright 2009 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.
    
    # This program reads a file containing function prototypes
    # (like syscall_darwin.go) and generates system call bodies.
    # The prototypes are marked by lines beginning with "//sys"
    # and read like func declarations if //sys is replaced by func, but:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:15:02 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  10. ci/devinfra/docker_windows/Dockerfile

        sdkmanager 'patcher;v4'; \
        sdkmanager 'ndk;25.1.8937393'; \
        sdkmanager 'build-tools;27.0.3';
    
    # Install Scoop and packages
    RUN iex \"& {$(irm get.scoop.sh)} -RunAsAdmin\"; \
        scoop install perl; \
        scoop install bazel; \
        scoop install cuda; \
        scoop install azure-functions-core-tools; \
        scoop install azure-cli;
    
    # Setting environment variables
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 18 17:24:20 UTC 2023
    - 13.6K bytes
    - Viewed (0)
Back to top