Search Options

Results per page
Sort
Preferred Languages
Advance

Results 331 - 340 of 351 for Mallocs (0.09 sec)

  1. CHANGELOG/CHANGELOG-1.17.md

    1. - CSI Migration: GCE PD access mode now reflects read only status of inline volumes - this allows multi-attach for read only many PDs ([#84809](https://github.com/kubernetes/kubernetes/pull/84809), [@davidz627](https://github.com/davidz627))
    Registered: Fri Nov 01 09:05:11 UTC 2024
    - Last Modified: Thu Jan 28 10:44:33 UTC 2021
    - 346.2K bytes
    - Viewed (1)
  2. android/guava/src/com/google/common/collect/Sets.java

    1. return false;
    2. }
    3. }
    4. return false;
    5. }
    6.  
    7. /**
    8. * Returns an unmodifiable view of the specified navigable set. This method allows modules to
    9. * provide users with "read-only" access to internal navigable sets. Query operations on the
    10. * returned set "read through" to the specified set, and attempts to modify the returned set,
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Oct 21 14:28:19 UTC 2024
    - 78.8K bytes
    - Viewed (0)
  3. manifests/charts/base/files/crd-all.gen.yaml

    1. should be logged.
    2. type: string
    3. type: object
    4. match:
    5. description: Allows tailoring of logging behavior to specific
    6. conditions.
    7. properties:
    8. mode:
    9. description: |-
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Fri Nov 01 16:23:52 UTC 2024
    - 805K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.12.md

    1. * The kube-apiserver's healthz now takes in an optional query parameter which allows you to disable health checks from causing healthz failures. ([#70676](https://github.com/kubernetes/kubernetes/pull/70676), [@logicalhan](https://github.com/logicalhan))
    Registered: Fri Nov 01 09:05:11 UTC 2024
    - Last Modified: Thu Feb 06 06:04:15 UTC 2020
    - 293.8K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.28.md

    1. Here's the breaking change in `EnqueueExtension` in the scheduling framework.
    2. The `EventsToRegister` in `EnqueueExtension` changed the return value from `ClusterEvent` to `ClusterEventWithHint`. `ClusterEventWithHint` allows each plugin to filter out more useless events via the callback function named `QueueingHintFn`.
    Registered: Fri Nov 01 09:05:11 UTC 2024
    - Last Modified: Wed Oct 23 04:34:59 UTC 2024
    - 456.9K bytes
    - Viewed (0)
  6. okhttp/src/test/java/okhttp3/internal/cache/DiskLruCacheTest.kt

    1. // An edit should now add a job to clean up if the most recent trim failed.
    2. assertThat(cache.edit("b")).isNull()
    3. taskFaker.runNextTask()
    4.  
    5. // Confirm a successful cache trim now allows edits.
    6. filesystem.setFaultyDelete(cacheDir / "a.0", false)
    7. assertThat(cache.edit("c")).isNull()
    8. taskFaker.runNextTask()
    9. set("c", "cc", "cc")
    10. assertValue("c", "cc", "cc")
    11. }
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Apr 15 14:55:09 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.24.md

    1. - Kubelet TCP and HTTP probes are more effective using networking resources: conntrack entries, sockets, ...
    2. This is achieved by reducing the TIME-WAIT state of the connection to 1 second, instead of the defaults 60 seconds. This allows kubelet to free the socket, and free conntrack entry and ephemeral port associated. ([#115143](https://github.com/kubernetes/kubernetes/pull/115143), [@aojea](https://github.com/aojea)) [SIG Network and Node]
    Registered: Fri Nov 01 09:05:11 UTC 2024
    - Last Modified: Thu Aug 24 00:02:43 UTC 2023
    - 473.4K bytes
    - Viewed (0)
  8. cmd/iam.go

    1. func (sys *IAMSys) GetCombinedPolicy(policies ...string) policy.Policy {
    2. _, policy := sys.store.MergePolicies(strings.Join(policies, ","))
    3. return policy
    4. }
    5.  
    6. // doesPolicyAllow - checks if the given policy allows the passed action with given args. This is rarely needed.
    7. // Notice there is no account name involved, so this is a dangerous function.
    8. func (sys *IAMSys) doesPolicyAllow(policy string, args policy.Args) bool {
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Oct 29 16:01:48 UTC 2024
    - 74.6K bytes
    - Viewed (0)
  9. cmd/iam-store.go

    1. }
    2. if err != nil {
    3. return err
    4. }
    5. }
    6.  
    7. delete(cache.iamPolicyDocsMap, policy)
    8. cache.updatedAt = time.Now()
    9.  
    10. return nil
    11. }
    12.  
    13. // GetPolicy - gets the policy definition. Allows specifying multiple comma
    14. // separated policies - returns a combined policy.
    15. func (store *IAMStoreSys) GetPolicy(name string) (policy.Policy, error) {
    16. if name == "" {
    17. return policy.Policy{}, errInvalidArgument
    18. }
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Mon Oct 14 16:35:37 UTC 2024
    - 83.2K bytes
    - Viewed (0)
  10. cmd/xl-storage-format-v2.go

    1. func metaDataPoolPut(buf []byte) {
    2. if cap(buf) >= metaDataReadDefault && cap(buf) < metaDataReadDefault*4 {
    3. //nolint:staticcheck // SA6002 we are fine with the tiny alloc
    4. metaDataPool.Put(buf)
    5. }
    6. }
    7.  
    8. // readXLMetaNoData will load the metadata, but skip data segments.
    9. // This should only be used when data is never interesting.
    10. // If data is not xlv2, it is returned in full.
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Oct 22 15:30:50 UTC 2024
    - 64K bytes
    - Viewed (1)
Back to top