Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,038 for logical (0.1 sec)

  1. platforms/documentation/docs/src/docs/userguide/optimizing-performance/inspect.adoc

    After startup, Gradle initializes your project. Usually, Gradle only processes your settings file.
    If you have custom build logic in a `buildSrc` directory, Gradle also processes that logic.
    After building `buildSrc` once, Gradle considers it up to date. The up-to-date checks take significantly less time than logic processing.
    If your `buildSrc` phase takes too much time, consider breaking it out into a separate project.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. cmd/net.go

    	} else if addr1Local, err = isLocalHost(host1, port1, port1); err != nil {
    		// Host not empty, check if it is local
    		return false, err
    	}
    
    	if host2 == "" {
    		// If empty host means it is localhost
    		addr2Local = true
    	} else if addr2Local, err = isLocalHost(host2, port2, port2); err != nil {
    		// Host not empty, check if it is local
    		return false, err
    	}
    
    	// If both of addresses point to the same machine, check if
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/moduleconverter/dependencies/DefaultLocalConfigurationMetadataBuilder.java

    import org.gradle.internal.component.local.model.DefaultLocalConfigurationMetadata;
    import org.gradle.internal.component.local.model.LocalComponentArtifactMetadata;
    import org.gradle.internal.component.local.model.LocalConfigurationGraphResolveMetadata;
    import org.gradle.internal.component.local.model.LocalConfigurationMetadata;
    import org.gradle.internal.component.local.model.LocalFileDependencyMetadata;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 18K bytes
    - Viewed (0)
  4. src/crypto/tls/defaults.go

    package tls
    
    import (
    	"internal/godebug"
    	"slices"
    	_ "unsafe" // for linkname
    )
    
    // Defaults are collected in this file to allow distributions to more easily patch
    // them to apply local policies.
    
    var tlskyber = godebug.New("tlskyber")
    
    func defaultCurvePreferences() []CurveID {
    	if tlskyber.Value() == "0" {
    		return []CurveID{X25519, CurveP256, CurveP384, CurveP521}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/telemetry/start.go

    	mode, _ := telemetry.Default.Mode()
    	if mode == "off" {
    		// Telemetry is turned off. Crash reporting doesn't work without telemetry
    		// at least set to "local". The upload process runs in both "on" and "local" modes.
    		// In local mode the upload process builds local reports but does not do the upload.
    		return result
    	}
    
    	counter.Open()
    
    	if _, err := os.Stat(telemetry.Default.LocalDir()); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  6. pkg/kubelet/util/util_windows.go

    func LocalEndpoint(path, file string) (string, error) {
    	// extract the podresources config name from the path. We only need this on windows because the preferred layout of pipes,
    	// this is why we have the extra logic in here instead of changing the function signature. Join the file to make sure the
    	// last path component is a file, so the operation chain works..
    	podResourcesDir := filepath.Base(filepath.Dir(filepath.Join(path, file)))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 08:58:18 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. cluster/log-dump/log-dump.sh

    # This function shouldn't ever trigger errexit
    function save-logs() {
        local -r node_name="${1}"
        local -r dir="${2}"
        local files=()
        IFS=' ' read -r -a files <<< "$3"
        local opt_systemd_services="${4:-""}"
        local on_master="${5:-"false"}"
    
        local extra=()
        IFS=' ' read -r -a extra <<< "$extra_log_files"
        files+=("${extra[@]}")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 21:15:57 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache.adoc

    Gradle supports a `local` and a `remote` build cache that can be configured separately.
    When both build caches are enabled, Gradle tries to load build outputs from the local build cache first, and then tries the remote build cache if no build outputs are found.
    If outputs are found in the remote cache, they are also stored in the local cache, so next time they will be found locally.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 11:30:10 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  9. build-logic/cleanup/src/main/java/gradlebuild/cleanup/services/KillLeakingJavaProcesses.java

     *
     * Usage: java build-logic/cleanup/src/main/java/gradlebuild/cleanup/services/KillLeakingJavaProcesses.java
     */
    public class KillLeakingJavaProcesses {
        enum ExecutionMode {
            /**
             * Run at the beginning of each build. Kill potentially leaked processes in previous builds.
             * Only kill local Gradle processes (classpath in checkout directory).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:46:00 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  10. src/path/filepath/path.go

    // For example, Clean("//host/share/../x") returns `\\host\share\x`.
    //
    // See also Rob Pike, “Lexical File Names in Plan 9 or
    // Getting Dot-Dot Right,”
    // https://9p.io/sys/doc/lexnames.html
    func Clean(path string) string {
    	return filepathlite.Clean(path)
    }
    
    // IsLocal reports whether path, using lexical analysis only, has all of these properties:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15.5K bytes
    - Viewed (0)
Back to top