Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 43 of 43 for Usages (0.08 sec)

  1. pkg/apis/core/validation/validation.go

    // IsValidSysctlName checks that the given string is a valid sysctl name,
    // i.e. matches SysctlContainSlashFmt.
    // More info:
    //
    //	https://man7.org/linux/man-pages/man8/sysctl.8.html
    //	https://man7.org/linux/man-pages/man5/sysctl.d.5.html
    func IsValidSysctlName(name string) bool {
    	if len(name) > SysctlMaxLength {
    		return false
    	}
    	return sysctlContainSlashRegexp.MatchString(name)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssagen/ssa.go

    // Copyright 2015 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 ssagen
    
    import (
    	"bufio"
    	"bytes"
    	"fmt"
    	"go/constant"
    	"html"
    	"internal/buildcfg"
    	"os"
    	"path/filepath"
    	"sort"
    	"strings"
    
    	"cmd/compile/internal/abi"
    	"cmd/compile/internal/base"
    	"cmd/compile/internal/ir"
    	"cmd/compile/internal/liveness"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  3. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

          <match value="#EXTM3U" type="string" offset="0"/>
        </magic>
      </mime-type>
      <mime-type type="application/vnd.apple.pages">
        <root-XML localName="document" namespaceURI="http://developer.apple.com/namespaces/sl" />
        <sub-class-of type="application/vnd.apple.iwork" />
        <glob pattern="*.pages"/>
      </mime-type>
      <mime-type type="application/vnd.apple.numbers">
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
Back to top