Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 113 for touched (0.13 sec)

  1. platforms/software/version-control/src/main/java/org/gradle/vcs/internal/services/DefaultVersionControlRepositoryFactory.java

                            GFileUtils.mkdirs(workingDir);
                            // Update timestamp so that working directory is not garbage collected
                            GFileUtils.touch(baseDir);
                            delegate.populate(workingDir, ref, spec);
                            return workingDir;
                        } catch (Exception e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 18:35:55 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/cache/internal/VersionSpecificCacheCleanupAction.java

                lastCleanupTime = Instant.ofEpochMilli(gcFile.lastModified());
            }
    
            return cleanupFrequency.requiresCleanup(lastCleanupTime);
        }
    
        private void markCleanedUp() {
            GFileUtils.touch(getGcFile());
        }
    
        private File getGcFile() {
            File currentVersionCacheDir = versionSpecificCacheDirectoryScanner.getDirectory(GradleVersion.current());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 20:26:37 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  3. src/internal/trace/trace_test.go

    		// Check to make sure that no goroutine in the "special" trace region
    		// ends up blocking, unblocking, then immediately blocking again.
    		//
    		// The goroutines are careful to call runtime.Gosched in between blocking,
    		// so there should never be a clean block/unblock on the goroutine unless
    		// the runtime was generating extraneous events.
    		const (
    			entered = iota
    			blocked
    			runnable
    			running
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  4. src/syscall/syscall_linux_test.go

    					t.Errorf("[%d,%d,%d] waiter result got=%d, want=%d", i, j, k, got, want)
    				}
    			}
    
    			// Provide an explicit opportunity for this Go
    			// routine to change Ms.
    			runtime.Gosched()
    
    			if once {
    				// One waiter routine will have exited.
    				routines--
    			}
    
    			// Whatever M we are now running on, confirm
    			// we see the wanted value too.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23K bytes
    - Viewed (0)
  5. src/runtime/mgc.go

    	})
    
    	// Release the world sema before Gosched() in STW mode
    	// because we will need to reacquire it later but before
    	// this goroutine becomes runnable again, and we could
    	// self-deadlock otherwise.
    	semrelease(&worldsema)
    	releasem(mp)
    
    	// Make sure we block instead of returning to user code
    	// in STW mode.
    	if mode != gcBackgroundMode {
    		Gosched()
    	}
    
    	semrelease(&work.startSema)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  6. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/DefaultPersistentDirectoryCacheTest.groovy

            try {
                cache.open()
                dir.file("some-file").touch()
            } finally {
                cache.close()
            }
    
            return dir
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 16:40:49 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/fixtures/SystemPropertiesCompositeBuildFixture.groovy

                spec.testDirectory.file("buildSrc/gradle.properties") << "systemProp.$propertyKey=${propertyValue()}"
                spec.testDirectory.file("buildSrc/build.gradle").touch()
            }
    
            @Override
            String propertyValue() {
                return "buildSrc property"
            }
    
            @Override
            String toString() {
                return "BuildSrc"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  8. src/runtime/gc_test.go

    				tos--
    			} else {
    				n.l, n.r = n.r, n.l
    				stack[tos] = n.l
    				stack[tos+1] = n.r
    				tos++
    			}
    
    			if i%(1<<12) == 0 {
    				// Avoid non-preemptible loops (see issue #10958).
    				runtime.Gosched()
    			}
    		}
    	})
    
    	runtime.KeepAlive(wbRoots)
    }
    
    func BenchmarkBulkWriteBarrier(b *testing.B) {
    	if runtime.GOMAXPROCS(-1) < 2 {
    		// We don't want GC to take our time.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 22:33:52 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl-tooling-builders/src/crossVersionTest/groovy/org/gradle/kotlin/dsl/tooling/builders/AbstractKotlinScriptModelCrossVersionTest.groovy

        def setup() {
            // Required for the lenient classpath mode
            toolingApi.requireDaemons()
            // Only Kotlin settings scripts
            settingsFile.delete()
            file("settings.gradle.kts").touch()
            // Gradle 6.5.1 instrumented jar cache has concurrency issues causing flakiness
            // This is exacerbated by those cross-version tests running concurrently
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  10. src/syscall/dir_plan9.go

    	Qid: Qid{
    		Path: ^uint64(0),
    		Vers: ^uint32(0),
    		Type: ^uint8(0),
    	},
    	Mode:   ^uint32(0),
    	Atime:  ^uint32(0),
    	Mtime:  ^uint32(0),
    	Length: ^int64(0),
    }
    
    // Null assigns special "don't touch" values to members of d to
    // avoid modifying them during [Wstat].
    func (d *Dir) Null() { *d = nullDir }
    
    // Marshal encodes a 9P stat message corresponding to d into b
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 19:32:38 UTC 2024
    - 5.2K bytes
    - Viewed (0)
Back to top