Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 126 for createBar (0.13 sec)

  1. operator/pkg/util/progress/progress.go

    	bar        *pb.ProgressBar
    	template   string
    	mu         sync.Mutex
    	state      InstallState
    }
    
    func NewLog() *Log {
    	return &Log{
    		components: map[string]*ManifestLog{},
    		bar:        createBar(),
    	}
    }
    
    const inProgress = `{{ yellow (cycle . "-" "-" "-" " ") }} `
    
    // createStatus will return a string to report the current status.
    // ex: - Processing resources for components. Waiting for foo, bar
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 19:23:44 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. platforms/core-runtime/build-process-services/src/test/groovy/org/gradle/api/internal/classpath/ManifestUtilTest.groovy

        }
    
        def "returns empty classpath for jar without manifest"() {
            when:
            createJar()
    
            then:
            ManifestUtil.parseManifestClasspath(jarFile) == []
        }
    
        def "returns empty classpath for jar with manifest without Class-Path"() {
            when:
            createJar(manifestWithClasspath(null))
    
            then:
            ManifestUtil.parseManifestClasspath(jarFile) == []
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  3. logger/sql_test.go

    		{
    			SQL:           "create table users (name, age, height, actived, bytes, create_at, update_at, deleted_at, email, role, pass) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)",
    			NumericRegexp: nil,
    			Vars:          []interface{}{"jinzhu", 1, 999.99, true, []byte("12345"), tt, &tt, nil, "w@g.\"com", myrole, pwd},
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Thu Mar 21 08:00:02 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  4. platforms/jvm/jvm-services/src/test/groovy/org/gradle/jvm/toolchain/internal/SdkmanInstallationSupplierTest.groovy

        }
    
        def "supplies multiple installations for multiple paths"() {
            given:
            def expectedLocation1 = candidates.createDir("java/11.0.6.hs-adpt")
            def expectedLocation2 = candidates.createDir("java/14")
            def expectedLocation3 = candidates.createDir("java/8.0.262.fx-librca")
    
            when:
            def directories = supplier.get()
    
            then:
            directories.size() == 3
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 22:17:53 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/DefaultArtifactCacheLockingAccessCoordinatorTest.groovy

        def cacheRepository = new DefaultUnscopedCacheBuilderFactory(new TestInMemoryCacheFactory())
        def cacheDir = temporaryFolder.createDir(CacheLayout.MODULES.key)
        def resourcesDir = cacheDir.createDir(CacheLayout.RESOURCES.key)
        def filesDir = cacheDir.createDir(CacheLayout.FILE_STORE.key)
        def metaDataDir = cacheDir.createDir(CacheLayout.META_DATA.key)
        def artifactCacheMetadata = Stub(ArtifactCacheMetadata) {
            getCacheDir() >> cacheDir
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:50:57 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/es/log/bsentity/BsFavoriteLog.java

        public LocalDateTime getCreatedAt() {
            checkSpecifiedProperty("createdAt");
            return createdAt;
        }
    
        public void setCreatedAt(LocalDateTime value) {
            registerModifiedProperty("createdAt");
            this.createdAt = value;
        }
    
        public String getDocId() {
            checkSpecifiedProperty("docId");
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/initialization/layout/BuildLayoutFactoryTest.groovy

        def "returns closest ancestor directory that contains a #settingsFilename file"() {
            given:
            def locator = buildLayoutFactoryFor()
    
            and:
            def currentDir = tmpDir.createDir("sub/current")
            def subDir = tmpDir.createDir("sub")
            def settingsFile = subDir.createFile(settingsFilename)
            tmpDir.createFile(settingsFilename)
    
            expect:
            def layout = locator.getLayoutFor(currentDir, true)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 09:18:31 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/es/log/bsentity/BsUserInfo.java

        public LocalDateTime getCreatedAt() {
            checkSpecifiedProperty("createdAt");
            return createdAt;
        }
    
        public void setCreatedAt(LocalDateTime value) {
            registerModifiedProperty("createdAt");
            this.createdAt = value;
        }
    
        public LocalDateTime getUpdatedAt() {
            checkSpecifiedProperty("updatedAt");
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  9. platforms/jvm/jvm-services/src/test/groovy/org/gradle/jvm/toolchain/internal/AsdfInstallationSupplierTest.groovy

        }
    
        def "supplies multiple installations for multiple paths"() {
            given:
            def expectedLocation1 = candidates.createDir("installs/java/11.0.6.hs-adpt")
            def expectedLocation2 = candidates.createDir("installs/java/14")
            def expectedLocation3 = candidates.createDir("installs/java/8.0.262.fx-librca")
    
            when:
            def directories = supplier.get()
    
            then:
            directories.size() == 3
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 22:17:53 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  10. platforms/jvm/toolchains-jvm/src/test/groovy/org/gradle/internal/jvm/inspection/DefaultJavaInstallationRegistryTest.groovy

            def jdkHome = temporaryFolder.createDir("jdk-$version")
            def binDir = jdkHome.createDir("bin")
            binDir.createFile(OperatingSystem.current().getExecutableName("java"))
            return jdkHome
        }
    
        private TestFile createJreInstallation(String version) {
            def jdkHome = temporaryFolder.createDir("jdk-$version")
            def jreHome = jdkHome.file("jre").createDir()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 22:46:10 UTC 2024
    - 9.6K bytes
    - Viewed (0)
Back to top