Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for checkType (0.21 sec)

  1. internal/hash/checksum.go

    			}
    		}
    		return t, s
    	}
    	checkType := func(c ChecksumType) {
    		if got := h.Get(c.Key()); got != "" {
    			// If already set, invalid
    			if t != ChecksumNone {
    				t = ChecksumInvalid
    				s = ""
    			} else {
    				t = c
    				s = got
    			}
    			return
    		}
    	}
    	checkType(ChecksumCRC32)
    	checkType(ChecksumCRC32C)
    	checkType(ChecksumSHA1)
    	checkType(ChecksumSHA256)
    	return t, s
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 08 16:18:34 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  2. pkg/volume/hostpath/host_path.go

    	return ftc.path
    }
    
    func newFileTypeChecker(path string, hu hostutil.HostUtils) hostPathTypeChecker {
    	return &fileTypeChecker{path: path, hu: hu}
    }
    
    // checkType checks whether the given path is the exact pathType
    func checkType(path string, pathType *v1.HostPathType, hu hostutil.HostUtils) error {
    	return checkTypeInternal(newFileTypeChecker(path, hu), pathType)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  3. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/subtyping/AbstractSemanticSubtypingTest.kt

    abstract class AbstractSemanticSubtypingTest : AbstractAnalysisApiBasedTest() {
        protected abstract val resultDirective: StringDirective
    
        protected abstract fun KaSession.checkTypes(
            expectedResult: Boolean,
            type1: KaType,
            type2: KaType,
            testServices: TestServices,
        )
    
        override fun configureTest(builder: TestConfigurationBuilder) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 5.9K bytes
    - Viewed (0)
Back to top