Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 700 for dying (0.05 sec)

  1. pkg/kubelet/metrics/collectors/volume_stats_test.go

    	return &i
    }
    
    func TestVolumeStatsCollector(t *testing.T) {
    	ctx := context.Background()
    	// Fixed metadata on type and help text. We prepend this to every expected
    	// output so we only have to modify a single place when doing adjustments.
    	const metadata = `
    		# HELP kubelet_volume_stats_available_bytes [ALPHA] Number of available bytes in the volume
    		# TYPE kubelet_volume_stats_available_bytes gauge
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 9.5K bytes
    - Viewed (1)
  2. architecture/standards/0003-avoid-introducing-Groovy-types-to-public-api.md

    This has been mostly done, but there remain a few holdouts (fixing these is out of scope).
    
    To keep the Groovy DSL ergonomic, we generate methods as necessary from the non-Groovy equivalents.
    
    Doing this provides the following specific benefits:
    - **Reduce the API surface** - We no longer need to maintain two methods.
    - **Consistency** - All languages have consistent access to the same APIs and ergonomics in the DSL.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Mar 10 20:38:06 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/ChildMapFactory.java

         * is about twice as slow as {@link VfsRelativePath#hasPrefix(String, CaseSensitivity)},
         * so comparing the searched path to all of the children is actually faster than doing a binary search.
         */
        private static final int MINIMUM_CHILD_COUNT_FOR_BINARY_SEARCH = 10;
    
        public static <T> ChildMap<T> childMap(CaseSensitivity caseSensitivity, Collection<ChildMap.Entry<T>> entries) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DaemonGreeter.java

            }
            String[] lines = output.split("\n");
            //Assuming that the diagnostics were printed out to the last line. It's not bullet-proof but seems to be doing fine.
            String lastLine = lines[lines.length - 1];
            return startupCommunication.readDiagnostics(lastLine);
        }
    
        private String prepareMessage(String output, List<String> startupArgs) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 05 22:24:02 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/DaemonProcessState.java

        }
    
        @Override
        public void close() {
            if (stopState.get() == DaemonStopState.Forced) {
                // The daemon could not be stopped cleanly, so the services could still be doing work.
                // Don't attempt to stop the services, just stop this process
                return;
            }
    
            // Daemon has finished work, so stop the services
            buildProcessState.close();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/samples/build-organization/composite-builds/declared-substitution/README.adoc

    == Declaring the dependencies substituted by an included build
    
    By default, Gradle will configure each included build in order to determine the dependencies it can provide. The algorithm for doing this is very simple: Gradle will inspect the `group` and `name` for the projects in the included build, and substitute project dependencies for any matching external dependency.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/filters/routine.go

    	return t
    }
    
    // WithRoutine returns an http.Handler that executes preparation of long running requests (i.e. watches)
    // in a separate Goroutine and then serves the long running request in the main Goroutine. Doing so allows
    // freeing stack memory used in preparation Goroutine for better memory efficiency.
    func WithRoutine(handler http.Handler, longRunning request.LongRunningRequestCheck) http.Handler {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 10:22:16 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  8. pkg/probe/tcp/tcp.go

    	"time"
    
    	"k8s.io/kubernetes/pkg/probe"
    
    	"k8s.io/klog/v2"
    )
    
    // New creates Prober.
    func New() Prober {
    	return tcpProber{}
    }
    
    // Prober is an interface that defines the Probe function for doing TCP readiness/liveness checks.
    type Prober interface {
    	Probe(host string, port int, timeout time.Duration) (probe.Result, string, error)
    }
    
    type tcpProber struct{}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 16:57:41 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/mvnsettings/DefaultMavenSettingsProvider.java

        }
    
        /**
         * Builds a complete `Settings` instance for this machine.
         *
         * Note that this can be an expensive operation, spawning an external process
         * and doing a bunch of additional processing.
         */
        @Override
        public Settings buildSettings() throws SettingsBuildingException {
            DefaultSettingsBuilderFactory factory = new DefaultSettingsBuilderFactory();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/test/shift_test.go

    //go:noinline
    func variableShiftOverflow64x8(x int64, y, z uint8) (a, b, c int64) {
    	// Verify junk bits are ignored when doing a variable shift.
    	return x >> (y + z), x << (y + z), int64(uint64(x) >> (y + z))
    }
    
    //go:noinline
    func variableShiftOverflow32x8(x int32, y, z uint8) (a, b, c int32) {
    	// Verify junk bits are ignored when doing a variable shift.
    	return x >> (y + z), x << (y + z), int32(uint32(x) >> (y + z))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 22:26:39 UTC 2023
    - 25.6K bytes
    - Viewed (0)
Back to top