Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 137 for z0 (0.04 sec)

  1. staging/src/k8s.io/api/admissionregistration/v1alpha1/types.go

    type AuditAnnotation struct {
    	// key specifies the audit annotation key. The audit annotation keys of
    	// a ValidatingAdmissionPolicy must be unique. The key must be a qualified
    	// name ([A-Za-z0-9][-A-Za-z0-9_.]*) no more than 63 bytes in length.
    	//
    	// The key is combined with the resource name of the
    	// ValidatingAdmissionPolicy to construct an audit annotation key:
    	// "{ValidatingAdmissionPolicy name}/{key}".
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 05 20:06:13 UTC 2023
    - 33.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/debug_test.go

    	inlines = flag.Bool("i", false, "do inlining for gdb (makes testing flaky till inlining info is correct)")
    )
    
    var (
    	hexRe                 = regexp.MustCompile("0x[a-zA-Z0-9]+")
    	numRe                 = regexp.MustCompile(`-?\d+`)
    	stringRe              = regexp.MustCompile(`([^\"]|(\.))*`)
    	leadingDollarNumberRe = regexp.MustCompile(`^[$]\d+`)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:11:47 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  3. platforms/jvm/toolchains-jvm-shared/src/main/java/org/gradle/jvm/toolchain/internal/install/DefaultJdkCacheDirectory.java

            String os = OperatingSystem.current().getFamilyName();
            return String.format("%s-%s-%s-%s", vendor, version, architecture, os)
                    .replaceAll("[^a-zA-Z0-9\\-]", "_")
                    .toLowerCase(Locale.ROOT) + ".2";
        }
    
        private File unpack(File jdkArchive) {
            final FileTree fileTree = asFileTree(jdkArchive);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 23:47:49 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  4. internal/s3select/sql/parser.go

    		`|(?P<Ident>[a-zA-Z_][a-zA-Z0-9_]*)` +
    		`|(?P<QuotIdent>"([^"]*("")?)*")` +
    		`|(?P<Float>\d*\.\d+([eE][-+]?\d+)?)` +
    		`|(?P<Int>\d+)` +
    		`|(?P<LitString>'([^']*('')?)*')` +
    		`|(?P<Operators><>|!=|<=|>=|\.\*|\[\*\]|[-+*/%,.()=<>\[\]])`,
    	))
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  5. platforms/jvm/plugins-java-base/src/main/java/org/gradle/api/plugins/internal/DefaultJavaPluginExtension.java

     */
    @SuppressWarnings("JavadocReference")
    public class DefaultJavaPluginExtension implements JavaPluginExtension {
        private static final Pattern VALID_FEATURE_NAME = Pattern.compile("[a-zA-Z0-9]+");
        private final SourceSetContainer sourceSets;
    
        private final JavaToolchainSpecInternal toolchainSpec;
        private final ObjectFactory objectFactory;
        private final ModularitySpec modularity;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 19:59:45 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  6. ci/official/containers/linux_arm64/devel.usertools/code_check_full.bats

    EOF
      cat $BATS_TEST_TMPDIR/out
      [[ ! -s $BATS_TEST_TMPDIR/out ]]
    }
    
    @test "All tensorflow.org/code links point to real files" {
        for i in $(grep -onI 'https://www.tensorflow.org/code/[a-zA-Z0-9/._-]\+' -r tensorflow); do
            target=$(echo $i | sed 's!.*https://www.tensorflow.org/code/!!g')
    
            if [[ ! -f $target ]] && [[ ! -d $target ]]; then
                echo "$i" >> errors.txt
            fi
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 14:52:45 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  7. src/syscall/mksyscall.pl

    	# Line must be of the form
    	#	func Open(path string, mode int, perm int) (fd int, errno error)
    	# Split into name, in params, out params.
    	if(!/^\/\/sys(nb)? (\w+)\(([^()]*)\)\s*(?:\(([^()]+)\))?\s*(?:=\s*((?i)_?SYS_[A-Z0-9_]+))?$/) {
    		print STDERR "$ARGV:$.: malformed //sys declaration\n";
    		$errors = 1;
    		next;
    	}
    	my ($func, $in, $out, $sysname) = ($2, $3, $4, $5);
    
    	# Split argument lists on comma.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:15:02 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/helper/PluginHelper.java

            final List<Artifact> list = new ArrayList<>();
            final String repoContent = getRepositoryContent(url);
            final Matcher matcher = Pattern.compile("href=\"[^\"]*(" + artifactType.getId() + "[a-zA-Z0-9\\-]+)/?\"").matcher(repoContent);
            while (matcher.find()) {
                final String name = matcher.group(1);
                final String pluginUrl = url + (url.endsWith("/") ? name + "/" : "/" + name + "/");
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  9. ci/official/utilities/code_check_full.bats

    EOF
      cat $BATS_TEST_TMPDIR/out
      [[ ! -s $BATS_TEST_TMPDIR/out ]]
    }
    
    @test "All tensorflow.org/code links point to real files" {
        for i in $(grep -onI 'https://www.tensorflow.org/code/[a-zA-Z0-9/._-]\+' -r tensorflow); do
            target=$(echo $i | sed 's!.*https://www.tensorflow.org/code/!!g')
    
            if [[ ! -f $target ]] && [[ ! -d $target ]]; then
                echo "$i" >> errors.txt
            fi
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 06 21:54:13 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  10. src/crypto/tls/testdata/Client-TLSv12-ClientCert-RSA-RSA

    00000050  6f 30 1e 17 0d 31 36 30  38 31 37 32 31 35 32 33  |o0...16081721523|
    00000060  31 5a 17 0d 31 37 30 38  31 37 32 31 35 32 33 31  |1Z..170817215231|
    00000070  5a 30 12 31 10 30 0e 06  03 55 04 0a 13 07 41 63  |Z0.1.0...U....Ac|
    00000080  6d 65 20 43 6f 30 81 9f  30 0d 06 09 2a 86 48 86  |me Co0..0...*.H.|
    00000090  f7 0d 01 01 01 05 00 03  81 8d 00 30 81 89 02 81  |...........0....|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 10.4K bytes
    - Viewed (0)
Back to top