Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 72 for deeper (0.13 sec)

  1. cmd/tier-sweeper.go

    		Bucket: bucket,
    	}
    }
    
    // WithVersion sets the version ID from v
    func (os *objSweeper) WithVersion(vid string) *objSweeper {
    	os.VersionID = vid
    	return os
    }
    
    // WithVersioning sets bucket versioning for sweeper.
    func (os *objSweeper) WithVersioning(versioned, suspended bool) *objSweeper {
    	os.Versioned = versioned
    	os.Suspended = suspended
    	return os
    }
    
    // GetOpts returns ObjectOptions to fetch the object version that may be
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Apr 17 05:09:58 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/service/scopes/CoreBuildSessionServices.java

            BuildLayout buildLayout,
            Deleter deleter,
            BuildOperationRunner buildOperationRunner,
            StartParameter startParameter
        ) {
            BuildScopeCacheDir cacheDir = new BuildScopeCacheDir(userHomeDirProvider, buildLayout, startParameter);
            return new ProjectCacheDir(cacheDir.getDir(), buildOperationRunner, deleter);
        }
    
        @Provides
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/caching/internal/BuildCacheServices.java

            registration.addProvider(new ServiceRegistrationProvider() {
    
                @Provides
                TarPackerFileSystemSupport createPackerFileSystemSupport(Deleter deleter) {
                    return new DefaultTarPackerFileSystemSupport(deleter);
                }
    
                @Provides
                BuildCacheEntryPacker createResultPacker(
                    TarPackerFileSystemSupport fileSystemSupport,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/service/scopes/WorkerSharedProjectScopeServices.java

                FileCollectionFactory fileCollectionFactory,
                ObjectFactory objectFactory,
                FileSystem fileSystem,
                Factory<PatternSet> patternSetFactory,
                Deleter deleter,
                DocumentationRegistry documentationRegistry,
                ProviderFactory providers,
                TaskDependencyFactory taskDependencyFactory,
                DecompressionCoordinator decompressionCoordinator,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  5. subprojects/core/src/testFixtures/groovy/org/gradle/api/internal/file/TestFiles.java

        }
    
        public static DirectoryFileTreeFactory directoryFileTreeFactory() {
            return new DefaultDirectoryFileTreeFactory(getPatternSetFactory(), fileSystem());
        }
    
        public static Deleter deleter() {
            return new DefaultDeleter(Time.clock()::getCurrentTime, fileSystem()::isSymlink, false);
        }
    
        public static FilePropertyFactory filePropertyFactory() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:50:55 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  6. src/cmd/go/alldocs.go

    //	                y.go
    //
    // The same visibility rules apply as for internal, but the code
    // in z.go is imported as "baz", not as "foo/vendor/baz".
    //
    // Code in vendor directories deeper in the source tree shadows
    // code in higher directories. Within the subtree rooted at foo, an import
    // of "crash/bang" resolves to "foo/vendor/crash/bang", not the
    // top-level "crash/bang".
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  7. README.md

    <a href="https://training.talkpython.fm/fastapi-courses" target="_blank" title="FastAPI video courses on demand from people you trust"><img src="https://fastapi.tiangolo.com/img/sponsors/talkpython-v2.jpg"></a>
    <a href="https://github.com/deepset-ai/haystack/" target="_blank" title="Build powerful search from composable, open source building blocks"><img src="https://fastapi.tiangolo.com/img/sponsors/haystack-fastapi.svg"></a>
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 30 13:28:20 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  8. pkg/volume/hostpath/host_path.go

    // THIS IS FOR TESTING AND LOCAL DEVELOPMENT ONLY!  This message should scare you away from using
    // this deleter for anything other than development and testing.
    func (r *hostPathDeleter) Delete() error {
    	regexp := regexp.MustCompile("/tmp/.+")
    	if !regexp.MatchString(r.GetPath()) {
    		return fmt.Errorf("host_path deleter only supports /tmp/.+ but received provided %s", r.GetPath())
    	}
    	return os.RemoveAll(r.GetPath())
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/internal/problems/DefaultProblemLocationAnalyzerTest.groovy

        def elementWithNoSourceFile = new StackTraceElement("class", "method", null, 11)
        def elementWithNoLineNumber = new StackTraceElement("class", "method", "filename", -1)
    
        def 'uses location info from deepest stack frame with matching source file and line information'() {
            def stack = [elementWithNoSourceFile, elementWithNoLineNumber, otherElement, element, callerElement]
            def failure = Mock(Failure) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 17:15:42 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/serialization/codecs/UserTypesCodecTest.kt

    import org.hamcrest.CoreMatchers.sameInstance
    import org.hamcrest.MatcherAssert.assertThat
    import org.junit.Test
    
    
    class UserTypesCodecTest : AbstractUserTypeCodecTest() {
    
        @Test
        fun `can handle deeply nested graphs`() {
    
            val deepGraph = Peano.fromInt(1024)
    
            val read = configurationCacheRoundtripOf(deepGraph)
    
            assertThat(
                read.toInt(),
                equalTo(deepGraph.toInt())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.4K bytes
    - Viewed (0)
Back to top