Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 269 for pL (0.04 sec)

  1. src/regexp/syntax/make_perl_groups.pl

    #!/usr/bin/perl
    # Copyright 2008 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.
    
    # Modified version of RE2's make_perl_groups.pl.
    
    # Generate table entries giving character ranges
    # for POSIX/Perl character classes.  Rather than
    # figure out what the definition is, it is easier to ask
    # Perl about each letter from 0-128 and write down
    # its answer.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. src/syscall/mksysnum_openbsd.pl

    # license that can be found in the LICENSE file.
    #
    # Generate system call table for OpenBSD from master list
    # (for example, /usr/src/sys/kern/syscalls.master).
    
    use strict;
    
    my $command = "mksysnum_openbsd.pl " . join(' ', @ARGV);
    
    print <<EOF;
    // $command
    // Code generated by the command above; DO NOT EDIT.
    
    package syscall
    
    const (
    EOF
    
    while(<>){
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 29 08:08:26 UTC 2020
    - 872 bytes
    - Viewed (0)
  3. src/syscall/mksysnum_netbsd.pl

    # license that can be found in the LICENSE file.
    #
    # Generate system call table for OpenBSD from master list
    # (for example, /usr/src/sys/kern/syscalls.master).
    
    use strict;
    
    my $command = "mksysnum_netbsd.pl " . join(' ', @ARGV);
    
    print <<EOF;
    // $command
    // Code generated by the command above; DO NOT EDIT.
    
    package syscall
    
    const (
    EOF
    
    my $line = '';
    while(<>){
    	if($line =~ /^(.*)\\$/) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 14 13:21:46 UTC 2018
    - 1K bytes
    - Viewed (0)
  4. src/syscall/mksysnum_freebsd.pl

    # license that can be found in the LICENSE file.
    #
    # Generate system call table for FreeBSD from master list
    # (for example, /usr/src/sys/kern/syscalls.master).
    
    use strict;
    
    my $command = "mksysnum_freebsd.pl " . join(' ', @ARGV);
    
    print <<EOF;
    // $command
    // Code generated by the command above; DO NOT EDIT.
    
    package syscall
    
    const (
    EOF
    
    while(<>){
    	if(/^([0-9]+)\s+\S+\s+STD\s+({ \S+\s+(\w+).*)$/){
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 14 13:21:46 UTC 2018
    - 1.3K bytes
    - Viewed (0)
  5. src/syscall/mksysnum_dragonfly.pl

    # license that can be found in the LICENSE file.
    #
    # Generate system call table for DragonFly from master list
    # (for example, /usr/src/sys/kern/syscalls.master).
    
    use strict;
    
    my $command = "mksysnum_dragonfly.pl " . join(' ', @ARGV);
    
    print <<EOF;
    // $command
    // Code generated by the command above; DO NOT EDIT.
    
    package syscall
    
    const (
    EOF
    
    while(<>){
    	if(/^([0-9]+)\s+STD\s+({ \S+\s+(\w+).*)$/){
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 14 13:21:46 UTC 2018
    - 866 bytes
    - Viewed (0)
  6. src/syscall/mksysnum_linux.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.
    
    use strict;
    
    my $command = "mksysnum_linux.pl ". join(' ', @ARGV);
    
    print <<EOF;
    // $command
    // Code generated by the command above; DO NOT EDIT.
    
    package syscall
    
    const(
    EOF
    
    my $offset = 0;
    
    sub fmt {
    	my ($name, $num) = @_;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 14 13:21:46 UTC 2018
    - 1.3K bytes
    - Viewed (0)
  7. src/main/webapp/js/admin/plugins/form-validator/lang/pl.js

    ion"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a,b){"use strict";a.formUtils.registerLoadedModule("lang/pl"),a(b).bind("validatorsLoaded",function(){a.formUtils.LANG={errorTitle:"Złożenie formularza nie powiodło się!",requiredField:"To pole jest wymagane",requiredfields:"Nie wszystkie wymagane pola zostały wypełnione",badTime:"Wprowadzono niepoprawny cz...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Jan 01 05:12:47 UTC 2018
    - 2.9K bytes
    - Viewed (0)
  8. src/syscall/mksyscall_libc.pl

    #	* at the end, after "=" sign, like
    #	  //sys getsockopt(s int, level int, name int, val uintptr, vallen *_Socklen) (err error) = libsocket.getsockopt
    
    use strict;
    
    my $cmdline = "mksyscall_libc.pl " . join(' ', @ARGV);
    my $errors = 0;
    my $_32bit = "";
    my $tags = "";  # build tags
    my $newtags = ""; # new style build tags
    my $aix = 0;
    my $solaris = 0;
    
    binmode STDOUT;
    
    if($ARGV[0] eq "-b32") {
    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

    # call.  This must only be used for system calls which can never
    # block, as otherwise the system call could cause all goroutines to
    # hang.
    
    use strict;
    
    my $cmdline = "mksyscall.pl " . join(' ', @ARGV);
    my $errors = 0;
    my $_32bit = "";
    my $plan9 = 0;
    my $darwin = 0;
    my $openbsd = 0;
    my $netbsd = 0;
    my $dragonfly = 0;
    my $arm = 0; # 64-bit value should use (even, odd)-pair
    my $libc = 0;
    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. src/syscall/mksysctl_openbsd.pl

    				next if $_ !~ /{\s+"(\w+)",\s+(CTLTYPE_[A-Z]+)\s+}/;
    				$$node{$1} = [ $i, $2, {} ];
    			}
    		}
    	}
    	close HEADER;
    }
    
    &build_sysctl(\%mib, "", []);
    
    print <<EOF;
    // mksysctl_openbsd.pl
    // Code generated by the command above; DO NOT EDIT.
    
    package syscall;
    
    type mibentry struct {
    	ctlname string
    	ctloid []_C_int
    }
    
    var sysctlMib = []mibentry {
    EOF
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 14 13:21:46 UTC 2018
    - 5K bytes
    - Viewed (0)
Back to top