Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 19 of 19 for asanread (0.16 sec)

  1. src/cmd/cgo/internal/testsanitizers/testdata/msan6.go

    // the stack as uninitialized.
    //
    //go:noinline
    func F1() uintptr {
    	s := C.f()
    	return uintptr(s.a[0])
    }
    
    // F2 allocates a struct on the stack and converts it to an empty interface,
    // which will call msanread and see that the data appears uninitialized.
    //
    //go:noinline
    func F2() interface{} {
    	return C.S{}
    }
    
    func poisonStack(i int) int {
    	if i == 0 {
    		return int(F1())
    	}
    	F1()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. src/runtime/msan_loong64.s

    //go:build msan
    
    #include "go_asm.h"
    #include "textflag.h"
    
    #define RARG0 R4
    #define RARG1 R5
    #define RARG2 R6
    #define FARG  R7
    
    // func runtime·domsanread(addr unsafe.Pointer, sz uintptr)
    // Called from msanread.
    TEXT	runtime·domsanread(SB), NOSPLIT, $0-16
    	MOVV	addr+0(FP), RARG0
    	MOVV	sz+8(FP), RARG1
    	// void __msan_read_go(void *addr, uintptr_t sz);
    	MOVV	$__msan_read_go(SB), FARG
    	JMP	msancall<>(SB)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 09 01:36:54 UTC 2024
    - 2K bytes
    - Viewed (0)
  3. src/runtime/msan_amd64.s

    #define RARG1 DX
    #define RARG2 R8
    #define RARG3 R9
    #else
    #define RARG0 DI
    #define RARG1 SI
    #define RARG2 DX
    #define RARG3 CX
    #endif
    
    // func runtime·domsanread(addr unsafe.Pointer, sz uintptr)
    // Called from msanread.
    TEXT	runtime·domsanread(SB), NOSPLIT, $0-16
    	MOVQ	addr+0(FP), RARG0
    	MOVQ	sz+8(FP), RARG1
    	// void __msan_read_go(void *addr, uintptr_t sz);
    	MOVQ	$__msan_read_go(SB), AX
    	JMP	msancall<>(SB)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 09 01:36:54 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/DaemonRegistryUnavailableExpirationStrategy.java

            try {
                final DaemonContext daemonContext = daemon.getDaemonContext();
                final File daemonRegistryDir = daemonContext.getDaemonRegistryDir();
                if (!new DaemonDir(daemonRegistryDir).getRegistry().canRead()) {
                    LOG.warn("Daemon registry {} became unreadable. Expiring daemon.", daemonRegistryDir);
                    return new DaemonExpirationResult(GRACEFUL_EXPIRE, REGISTRY_BECAME_UNREADABLE);
                } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyErrorIntegrationTest.groovy

            try {
                Assert.assertTrue("$dir exists", dir.exists())
                Assert.assertTrue("$dir is a directory", dir.isDirectory())
                Assert.assertFalse("$dir is not readable", dir.canRead())
                Assert.assertTrue("$dir is writable", dir.canWrite())
    
                testFile('build.gradle') << '''
                    task copy(type: Copy) {
                        from 'src'
                        into 'dest'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 10:48:19 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/project/ExtensionDescriptorBuilder.java

                        }
                    }
                }
            } else {
                File pluginXml = new File(extensionJar, getExtensionDescriptorLocation());
    
                if (pluginXml.canRead()) {
                    try (InputStream is = Files.newInputStream(pluginXml.toPath())) {
                        extensionDescriptor = build(is);
                    }
                }
            }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/caching/local/internal/DirectoryBuildCacheServiceFactory.java

                if (!directory.isDirectory()) {
                    throw new IllegalArgumentException(String.format("Cache directory %s must be a directory", directory));
                }
                if (!directory.canRead()) {
                    throw new IllegalArgumentException(String.format("Cache directory %s must be readable", directory));
                }
                if (!directory.canWrite()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 18:35:55 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  8. platforms/software/resources-http/src/main/java/org/gradle/internal/resource/transport/http/SystemDefaultSSLContextFactory.java

                for (String fileName : fileNames) {
                    File candidate = new File(fileName);
                    if (candidate.isFile() && candidate.canRead()) {
                        storePath = fileName;
                        break;
                    } else if (!fileName.equals(getDefaultJsseTrustStore())) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  9. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/collections/SingleIncludePatternFileTree.java

                PatternStep step = PatternStepFactory.getStep(segment, false);
                File[] children = file.listFiles();
                if (children == null) {
                    if (!file.canRead()) {
                        throw new GradleException(String.format("Could not list contents of directory '%s' as it is not readable.", file));
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 6.5K bytes
    - Viewed (0)
Back to top