Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 55 for Display (0.15 sec)

  1. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/api/DaemonStateControl.java

        /**
         * Runs the given long running command. No more than 1 command may be running at any given time.
         *
         * @param command The command to run
         * @param commandDisplayName The command's display name, used for logging and error messages.
         *
         * @throws DaemonUnavailableException When this daemon is unable to run the command, either because it is currently executing another command
         * or is currently stopping.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 05 22:24:02 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. docs/sts/assume-role.go

    	cr "github.com/minio/minio-go/v7/pkg/credentials"
    )
    
    var (
    	// Minio endpoint (for STS API)
    	stsEndpoint string
    
    	// User account credentials
    	minioUsername string
    	minioPassword string
    
    	// Display credentials flag
    	displayCreds bool
    
    	// Credential expiry duration
    	expiryDuration time.Duration
    
    	// Bucket to list
    	bucketToList string
    
    	// Session policy file (FIXME: add support in minio-go)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 12 16:09:55 UTC 2024
    - 4K bytes
    - Viewed (0)
  3. src/go/types/format.go

    			check.pkgPathMap = make(map[string]map[string]bool)
    			check.seenPkgMap = make(map[*Package]bool)
    			check.markImports(check.pkg)
    		}
    		// If the same package name was used by multiple packages, display the full path.
    		if len(check.pkgPathMap[pkg.name]) > 1 {
    			return strconv.Quote(pkg.path)
    		}
    		return pkg.name
    	}
    	return ""
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/GradleDistribution.java

        /**
         * Returns true if it as a Gradle version that supports Kotlin scripts
         */
        boolean isSupportsKotlinScript();
    
        /**
         * Returns true if this version has a method for tests display names
         */
        boolean isHasTestDisplayNames();
    
        /**
         * Returns true if this version supports custom toolchain resolvers.
         */
        boolean isSupportsCustomToolchainResolvers();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 16:09:27 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  5. src/cmd/trace/procgen.go

    		// Check if this proc was in a syscall before it stopped.
    		// This means the syscall blocked. We need to emit it to the
    		// viewer at this point because we only display the time the
    		// syscall occupied a P when the viewer is in per-P mode.
    		//
    		// TODO(mknyszek): We could do better in a per-M mode because
    		// all events have to happen on *some* thread, and in v2 traces
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/problems/KnownProblemIds.groovy

            def knownDefinition = KNOWN_DEFINITIONS[problem.definition.id.fqid]
            assert knownDefinition != null : "Unknown problem id: ${definition.id.fqid}"
            assert knownDefinition == definition.id.displayName : "Unexpected display name for problem: ${definition.id.fqid}. Expected=${knownDefinition}, actual=${definition.id.displayName}"
    
            def groupFqid = groupOf(definition.id.fqid)
            while (groupFqid != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:07:53 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  7. cmd/metrics-v3-handler.go

    			Registry:            registry,
    			MaxRequestsInFlight: 2,
    		},
    		authFn: authFn,
    
    		metricsData: metricGroups,
    	}
    }
    
    // metricDisplay - contains info on a metric for display purposes.
    type metricDisplay struct {
    	Name   string   `json:"name"`
    	Help   string   `json:"help"`
    	Type   string   `json:"type"`
    	Labels []string `json:"labels"`
    }
    
    func (md metricDisplay) String() string {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 16:06:35 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  8. ReadMe.md

    [![official project](https://jb.gg/badges/official.svg)](https://confluence.jetbrains.com/display/ALL/JetBrains+on+GitHub)
    [![TeamCity (simple build status)](https://img.shields.io/teamcity/http/teamcity.jetbrains.com/s/Kotlin_KotlinPublic_Compiler.svg)](https://teamcity.jetbrains.com/buildConfiguration/Kotlin_KotlinPublic_Compiler?branch=%3Cdefault%3E&buildTypeTab=overview&mode=builds)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Apr 11 14:28:46 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  9. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/DependencyReportTask.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.api.tasks.diagnostics;
    
    import org.gradle.work.DisableCachingByDefault;
    
    /**
     * Displays the dependency tree for a project. An instance of this type is used when you
     * execute the {@code dependencies} task from the command-line.
     */
    @DisableCachingByDefault(because = "Not worth caching")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:33:20 UTC 2024
    - 1008 bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/integTest/groovy/org/gradle/jvm/toolchain/ShowToolchainsIntegrationTest.groovy

        }
    
        def "showsToolchains is properly visible as task"() {
            when:
            run("tasks")
    
            then:
            outputContains("javaToolchains - Displays the detected java toolchains.")
        }
    
        def "toolchains log contains progress info about installation suppliers"() {
            when:
            createDirs("a")
            settingsFile << """
                    include 'a'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:32:55 UTC 2024
    - 1.7K bytes
    - Viewed (0)
Back to top