Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for IsChar (0.12 sec)

  1. pkg/volume/hostpath/host_path_test.go

    			if oftc.IsBlock() {
    				t.Errorf("[%d: %q] expected socket file, got unexpected block device: %s", i, tc.name, path)
    			}
    			if oftc.IsChar() {
    				t.Errorf("[%d: %q] expected socket file, got unexpected character device: %s", i, tc.name, path)
    			}
    		}
    
    		if tc.isChar {
    			if !oftc.IsChar() {
    				t.Errorf("[%d: %q] expected character device, got unexpected: %s", i, tc.name, path)
    			}
    			if oftc.IsDir() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:37:30 UTC 2023
    - 20.5K bytes
    - Viewed (0)
  2. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtTypeInfoProvider.kt

        public val KaType.isDouble: Boolean get() = withValidityAssertion { isClassTypeWithClassId(DefaultTypeClassIds.DOUBLE) }
        public val KaType.isChar: Boolean get() = withValidityAssertion { isClassTypeWithClassId(DefaultTypeClassIds.CHAR) }
        public val KaType.isBoolean: Boolean get() = withValidityAssertion { isClassTypeWithClassId(DefaultTypeClassIds.BOOLEAN) }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 08:26:19 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  3. pkg/volume/hostpath/host_path.go

    }
    
    type hostPathTypeChecker interface {
    	Exists() bool
    	IsFile() bool
    	MakeFile() error
    	IsDir() bool
    	MakeDir() error
    	IsBlock() bool
    	IsChar() bool
    	IsSocket() bool
    	GetPath() string
    }
    
    type fileTypeChecker struct {
    	path string
    	hu   hostutil.HostUtils
    }
    
    func (ftc *fileTypeChecker) Exists() bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/evaluate/FirAnnotationValueConverter.kt

                type == null -> KaConstantValueFactory.createConstantValue(value, psi as? KtElement)
                type.isBoolean -> KaConstantValue.KaBooleanConstantValue(value as Boolean, expression)
                type.isChar -> KaConstantValue.KaCharConstantValue((value as? Char) ?: (value as Number).toInt().toChar(), expression)
                type.isByte -> KaConstantValue.KaByteConstantValue((value as Number).toByte(), expression)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  5. src/cmd/cgo/internal/testerrors/testdata/err2.go

    	// issue 13635: used to output error about C.unsignedchar.
    	// This test tests all such types.
    	var (
    		_ C.uchar         = "uc"  // ERROR HERE: C\.uchar
    		_ C.schar         = "sc"  // ERROR HERE: C\.schar
    		_ C.ushort        = "us"  // ERROR HERE: C\.ushort
    		_ C.uint          = "ui"  // ERROR HERE: C\.uint
    		_ C.ulong         = "ul"  // ERROR HERE: C\.ulong
    		_ C.longlong      = "ll"  // ERROR HERE: C\.longlong
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/util/mime.map

    application/x-mif              mif              #
    application/x-netcdf           nc cdf           #
    #application/x-sh               sh               # sh Shell Program
    application/x-shar             shar             #
    application/x-shockwave-flash  swf              # Macromedia Shockwave file
    application/x-spss             sav spp sbs sps spo # SPSS
    application/x-stuffit          sit              # Macintosh Stuff-It
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 5.9K bytes
    - Viewed (0)
  7. src/cmd/cgo/doc.go

    or misaligned data, are omitted in the Go struct, replaced by
    appropriate padding to reach the next field or the end of the struct.
    
    The standard C numeric types are available under the names
    C.char, C.schar (signed char), C.uchar (unsigned char),
    C.short, C.ushort (unsigned short), C.int, C.uint (unsigned int),
    C.long, C.ulong (unsigned long), C.longlong (long long),
    C.ulonglong (unsigned long long), C.float, C.double,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  8. fess-crawler-lasta/src/main/resources/crawler/extractor.xml

    				"application/x-sas-utility",
    				"application/x-sas-putility",
    				"application/x-sas-transport",
    				"application/x-sas-backup",
    				"application/x-sc",
    				"application/x-sh",
    				"application/x-shar",
    				"application/x-shockwave-flash",
    				"application/x-silverlight-app",
    				"application/x-stuffit",
    				"application/x-stuffitx",
    				"application/x-sv4cpio",
    				"application/x-sv4crc",
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Aug 01 21:40:30 UTC 2020
    - 49K bytes
    - Viewed (0)
  9. src/cmd/cgo/gcc.go

    	"cmd/internal/quoted"
    )
    
    var debugDefine = flag.Bool("debug-define", false, "print relevant #defines")
    var debugGcc = flag.Bool("debug-gcc", false, "print gcc invocations")
    
    var nameToC = map[string]string{
    	"schar":         "signed char",
    	"uchar":         "unsigned char",
    	"ushort":        "unsigned short",
    	"uint":          "unsigned int",
    	"ulong":         "unsigned long",
    	"longlong":      "long long",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  10. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

        </magic>
        <glob pattern="*.sh"/>
        <glob pattern="*.bash"/>
        <sub-class-of type="text/plain"/>
      </mime-type>
    
      <mime-type type="application/x-shar">
        <glob pattern="*.shar"/>
      </mime-type>
    
      <mime-type type="application/x-shapefile">
        <acronym>ESRI Shapefiles</acronym>
        <_comment>ESRI Shapefiles</_comment>
        <magic priority="60">
    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