Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 184 for filelink (0.27 sec)

  1. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/DefaultFileLockManagerWithCrossVersionProtocolTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.cache.internal
    
    import org.gradle.cache.FileLockManager
    import org.gradle.cache.internal.filelock.DefaultLockOptions
    import org.gradle.test.fixtures.file.TestFile
    
    class DefaultFileLockManagerWithCrossVersionProtocolTest extends AbstractFileLockManagerTest {
        @Override
        protected DefaultLockOptions options() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:52:52 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. platforms/jvm/toolchains-jvm-shared/src/main/java/org/gradle/jvm/toolchain/internal/install/DefaultJdkCacheDirectory.java

    import org.gradle.api.file.FileTree;
    import org.gradle.api.internal.file.FileOperations;
    import org.gradle.api.internal.file.temp.GradleUserHomeTemporaryFileProvider;
    import org.gradle.cache.FileLock;
    import org.gradle.cache.FileLockManager;
    import org.gradle.cache.internal.filelock.DefaultLockOptions;
    import org.gradle.initialization.GradleUserHomeDirProvider;
    import org.gradle.internal.jvm.inspection.JvmInstallationMetadata;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 23:47:49 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  3. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/InMemoryDecoratedCacheTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.cache.internal
    
    import com.google.common.cache.CacheBuilder
    import org.gradle.cache.FileLock
    import org.gradle.test.fixtures.concurrent.ConcurrentSpec
    
    import java.util.concurrent.atomic.AtomicReference
    import java.util.function.Function
    
    class InMemoryDecoratedCacheTest extends ConcurrentSpec {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  4. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/filelock/LockInfo.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.cache.internal.filelock;
    
    public class LockInfo {
        public int port = -1;
        public long lockId;
        public String pid = "unknown";
        public String operation = "unknown";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 813 bytes
    - Viewed (0)
  5. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/filelock/DefaultLockOptionsTest.groovy

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.cache.internal.filelock
    
    import spock.lang.Specification
    
    import static org.gradle.cache.FileLockManager.LockMode.Exclusive
    import static org.gradle.cache.FileLockManager.LockMode.Shared
    
    class DefaultLockOptionsTest extends Specification {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:52:52 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  6. platforms/jvm/toolchains-jvm/src/test/groovy/org/gradle/jvm/toolchain/install/internal/DefaultJavaToolchainProvisioningServiceTest.groovy

    import org.gradle.api.GradleException
    import org.gradle.api.internal.provider.Providers
    import org.gradle.api.provider.ProviderFactory
    import org.gradle.authentication.Authentication
    import org.gradle.cache.FileLock
    import org.gradle.internal.operations.BuildOperationDescriptor
    import org.gradle.internal.operations.TestBuildOperationRunner
    import org.gradle.internal.resource.ExternalResource
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 23:01:05 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  7. src/runtime/symtab_test.go

    	})
    	b.Run("Entry", func(b *testing.B) {
    		for i := 0; i < b.N; i++ {
    			pc := f.Entry()
    			if pc == 0 {
    				b.Fatal("zero PC")
    			}
    		}
    	})
    	b.Run("FileLine", func(b *testing.B) {
    		for i := 0; i < b.N; i++ {
    			file, line := f.FileLine(pc)
    			if !strings.HasSuffix(file, "symtab_test.go") || line == 0 {
    				b.Fatalf("unexpected file/line %q:%d", file, line)
    			}
    		}
    	})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 17 21:46:33 UTC 2022
    - 7.5K bytes
    - Viewed (0)
  8. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/DefaultPersistentDirectoryStoreConcurrencyTest.groovy

    import org.gradle.testfixtures.internal.NativeServicesTestFixture
    import org.junit.Rule
    import spock.lang.Issue
    
    import static org.gradle.cache.FileLockManager.LockMode.OnDemand
    import static org.gradle.cache.internal.filelock.DefaultLockOptions.mode
    
    class DefaultPersistentDirectoryStoreConcurrencyTest extends ConcurrentSpec {
    
        @Rule
        def TestNameTestDirectoryProvider tmpDir = new TestNameTestDirectoryProvider(getClass())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modindex/read.go

    				fileList = &p.IgnoredGoFiles
    			}
    		case isXTest:
    			fileList = &p.XTestGoFiles
    			importMap = xTestImportPos
    			embedMap = xTestEmbedPos
    			directives = &p.XTestDirectives
    		case isTest:
    			fileList = &p.TestGoFiles
    			importMap = testImportPos
    			embedMap = testEmbedPos
    			directives = &p.TestDirectives
    		default:
    			fileList = &p.GoFiles
    			importMap = importPos
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  10. src/cmd/go/internal/lockedfile/internal/filelock/filelock_windows.go

    // Copyright 2018 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.
    
    //go:build windows
    
    package filelock
    
    import (
    	"internal/syscall/windows"
    	"io/fs"
    	"syscall"
    )
    
    type lockType uint32
    
    const (
    	readLock  lockType = 0
    	writeLock lockType = windows.LOCKFILE_EXCLUSIVE_LOCK
    )
    
    const (
    	reserved = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 17 02:24:35 UTC 2023
    - 1.3K bytes
    - Viewed (0)
Back to top