Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 71 for capmem (0.22 sec)

  1. src/runtime/race_ppc64le.s

    	// First, code below assumes that we are on curg, while raceGetProcCmd
    	// can be executed on g0. Second, it is called frequently, so will
    	// benefit from this fast path.
    	MOVD	$0, R0		// clear R0 since we came from C code
    	CMP	R3, $0
    	BNE	rest
    	// Inline raceGetProdCmd without clobbering callee-save registers.
    	MOVD	runtimeĀ·tls_g(SB), R10
    	MOVD	0(R10), R11
    	MOVD	g_m(R11), R3
    	MOVD	m_p(R3), R3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 17K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/autoscaling/v2/types.go

    	AbleToScale HorizontalPodAutoscalerConditionType = "AbleToScale"
    	// ScalingLimited indicates that the calculated scale based on metrics would be above or
    	// below the range for the HPA, and has thus been capped.
    	ScalingLimited HorizontalPodAutoscalerConditionType = "ScalingLimited"
    )
    
    // HorizontalPodAutoscalerCondition describes the state of
    // a HorizontalPodAutoscaler at a certain point.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  3. src/math/rand/rand_test.go

    		// have emulated floating point.
    		// TODO: detect what it actually has.
    		return true
    	}
    	return false
    }
    
    func TestFloat32(t *testing.T) {
    	// For issue 6721, the problem came after 7533753 calls, so check 10e6.
    	num := int(10e6)
    	// But do the full amount only on builders (not locally).
    	// But ARM5 floating point emulation is slow (Issue 10749), so
    	// do less for that builder:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/autoscaling/v1/types.go

    	AbleToScale HorizontalPodAutoscalerConditionType = "AbleToScale"
    	// ScalingLimited indicates that the calculated scale based on metrics would be above or
    	// below the range for the HPA, and has thus been capped.
    	ScalingLimited HorizontalPodAutoscalerConditionType = "ScalingLimited"
    )
    
    // HorizontalPodAutoscalerCondition describes the state of
    // a HorizontalPodAutoscaler at a certain point.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/util/concurrent/ExecutionSequencer.java

        Runnable listener =
            () -> {
              if (taskFuture.isDone()) {
                // Since the value of oldFuture can only ever be immediateFuture(null) or setFuture of
                // a future that eventually came from immediateFuture(null), this doesn't leak
                // throwables or completion values.
                newFuture.setFuture(oldFuture);
              } else if (outputFuture.isCancelled() && taskExecutor.trySetCancelled()) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  6. src/math/rand/v2/rand_test.go

    		// have emulated floating point.
    		// TODO: detect what it actually has.
    		return true
    	}
    	return false
    }
    
    func TestFloat32(t *testing.T) {
    	// For issue 6721, the problem came after 7533753 calls, so check 10e6.
    	num := int(10e6)
    	// But do the full amount only on builders (not locally).
    	// But ARM5 floating point emulation is slow (Issue 10749), so
    	// do less for that builder:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  7. docs/en/docs/python-types.md

    !!! info
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri May 31 02:38:05 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/autoscaling/v2beta2/types.go

    	AbleToScale HorizontalPodAutoscalerConditionType = "AbleToScale"
    	// ScalingLimited indicates that the calculated scale based on metrics would be above or
    	// below the range for the HPA, and has thus been capped.
    	ScalingLimited HorizontalPodAutoscalerConditionType = "ScalingLimited"
    )
    
    // HorizontalPodAutoscalerCondition describes the state of
    // a HorizontalPodAutoscaler at a certain point.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:27 UTC 2023
    - 28.4K bytes
    - Viewed (0)
  9. src/crypto/tls/handshake_client.go

    		secureRenegotiationSupported: true,
    		alpnProtocols:                config.NextProtos,
    		supportedVersions:            supportedVersions,
    	}
    
    	// The version at the beginning of the ClientHello was capped at TLS 1.2
    	// for compatibility reasons. The supported_versions extension is used
    	// to negotiate versions now. See RFC 8446, Section 4.2.1.
    	if hello.vers > VersionTLS12 {
    		hello.vers = VersionTLS12
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 38.6K bytes
    - Viewed (0)
  10. pkg/scheduler/schedule_one.go

    }
    
    func getAttemptsLabel(p *framework.QueuedPodInfo) string {
    	// We breakdown the pod scheduling duration by attempts capped to a limit
    	// to avoid ending up with a high cardinality metric.
    	if p.Attempts >= 15 {
    		return "15+"
    	}
    	return strconv.Itoa(p.Attempts)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 13:28:08 UTC 2024
    - 43.4K bytes
    - Viewed (0)
Back to top