Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 2,062 for leastOf (0.25 sec)

  1. src/internal/cpu/cpu_arm.go

    	ARM.HasVFPv4 = isSet(HWCap, hwcap_VFPv4)
    	ARM.HasIDIVA = isSet(HWCap, hwcap_IDIVA)
    	// lpae is required to make the 64-bit instructions LDRD and STRD (and variants) atomic.
    	// See ARMv7 manual section B1.6.
    	// We also need at least a v7 chip, for the DMB instruction.
    	ARM.HasV7Atomics = isSet(HWCap, hwcap_LPAE) && isV7(Platform)
    }
    
    func isSet(hwc uint, value uint) bool {
    	return hwc&value != 0
    }
    
    func isV7(s string) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 20:38:55 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. pkg/volume/flexvolume/fake_watcher.go

    import (
    	"github.com/fsnotify/fsnotify"
    	utilfs "k8s.io/kubernetes/pkg/util/filesystem"
    )
    
    // Mock filesystem watcher
    type fakeWatcher struct {
    	watches      []string // List of watches added by the prober, ordered from least recent to most recent.
    	eventHandler utilfs.FSEventHandler
    }
    
    var _ utilfs.FSWatcher = &fakeWatcher{}
    
    func newFakeWatcher() *fakeWatcher {
    	return &fakeWatcher{
    		watches: nil,
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 20 17:33:45 UTC 2018
    - 1.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/profile/filter.go

    // Implements methods to filter samples from profiles.
    
    import "regexp"
    
    // FilterSamplesByName filters the samples in a profile and only keeps
    // samples where at least one frame matches focus but none match ignore.
    // Returns true is the corresponding regexp matched at least one sample.
    func (p *Profile) FilterSamplesByName(focus, ignore, hide, show *regexp.Regexp) (fm, im, hm, hnm bool) {
    	if focus == nil && ignore == nil && hide == nil && show == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 7.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/apps/v1/types_swagger_doc_generated.go

    	"numberUnavailable":      "The number of nodes that should be running the daemon pod and have none of the daemon pod running and available (ready for at least spec.minReadySeconds)",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:14:59 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/policy/v1beta1/types.go

    	"k8s.io/apimachinery/pkg/util/intstr"
    )
    
    // PodDisruptionBudgetSpec is a description of a PodDisruptionBudget.
    type PodDisruptionBudgetSpec struct {
    	// An eviction is allowed if at least "minAvailable" pods selected by
    	// "selector" will still be available after the eviction, i.e. even in the
    	// absence of the evicted pod.  So for example you can prevent all voluntary
    	// evictions by specifying "100%".
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 07 20:44:13 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  6. pilot/cmd/pilot-agent/status/ready/probe.go

    )
    
    // Probe for readiness.
    type Probe struct {
    	LocalHostAddr       string
    	AdminPort           uint16
    	receivedFirstUpdate bool
    	// Indicates that Envoy is ready at least once so that we can cache and reuse that probe.
    	atleastOnceReady bool
    	Context          context.Context
    	// NoEnvoy so we only check config status
    	NoEnvoy bool
    }
    
    type Prober interface {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 00:35:05 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/telemetry.txt

    # Tests for the telemetry subcommand,
    
    # The script test framework sets TEST_TELEMETRY_DIR (overriding the
    # default telemetry dir location) and then checks that at least one
    # counter has been written per script tests.
    # Run go before unsetting TEST_TELEMETRY_DIR to make the tests happy.
    # We want to unset it so the environment we're testing is as close
    # to a user's environment.
    go help telemetry
    env TEST_TELEMETRY_DIR=
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 20:16:39 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  8. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/codegen/InstrumentationResourceGenerator.java

            Collection<CallInterceptionRequest> interceptionRequests
        );
    
        /**
         * Actually generate the resource for filtered requests. A collection of filtered requests passed as a parameter will always have at least one element.
         */
        GenerationResult generateResourceForRequests(
            Collection<CallInterceptionRequest> filteredRequests
        );
    
        interface GenerationResult {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/test/JvmTestOperationDescriptor.java

     * limitations under the License.
     */
    
    package org.gradle.tooling.events.test;
    
    import javax.annotation.Nullable;
    
    /**
     * Describes a test that runs on the JVM and for which an event has occurred. At least
     * a suite name, class name, or method name is available for each JVM test.
     *
     * @since 2.4
     */
    public interface JvmTestOperationDescriptor extends TestOperationDescriptor {
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  10. src/runtime/coro_test.go

    		})
    	}
    }
    
    func checkCoroTestProgOutput(t *testing.T, output string) {
    	t.Helper()
    
    	c := strings.SplitN(output, "\n", 2)
    	if len(c) == 1 {
    		t.Fatalf("expected at least one complete line in the output, got:\n%s", output)
    	}
    	expect, ok := strings.CutPrefix(c[0], "expect: ")
    	if !ok {
    		t.Fatalf("expected first line of output to start with \"expect: \", got: %q", c[0])
    	}
    	rest := c[1]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 21:36:37 UTC 2024
    - 1.9K bytes
    - Viewed (0)
Back to top