Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 146 for pirates (0.3 sec)

  1. src/runtime/mgcpacer_test.go

    	t.Parallel()
    
    	const initialHeapBytes = 256 << 10
    	for _, e := range []*gcExecTest{
    		{
    			// The most basic test case: a steady-state heap.
    			// Growth to an O(MiB) heap, then constant heap size, alloc/scan rates.
    			name:          "Steady",
    			gcPercent:     100,
    			memoryLimit:   math.MaxInt64,
    			globalsBytes:  32 << 10,
    			nCores:        8,
    			allocRate:     constant(33.0),
    			scanRate:      constant(1024.0),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 19 13:53:21 UTC 2023
    - 39.3K bytes
    - Viewed (0)
  2. cmd/bucket-metadata.go

    		}
    	}
    
    	// migrate unencrypted remote targets
    	if err = b.migrateTargetConfig(ctx, objectAPI); err != nil {
    		return b, err
    	}
    
    	return b, nil
    }
    
    // loadBucketMetadata loads and migrates to bucket metadata.
    func loadBucketMetadata(ctx context.Context, objectAPI ObjectLayer, bucket string) (BucketMetadata, error) {
    	return loadBucketMetadataParse(ctx, objectAPI, bucket, true)
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/TreeMultiset.java

         *
         * For the header node, though, this field contains `null`, regardless of the type of the
         * multiset.
         *
         * Most code that operates on an AvlNode never operates on the header node. Such code can access
         * the elem field without a null check by calling getElement().
         */
        @CheckForNull private final E elem;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 34.6K bytes
    - Viewed (0)
  4. go.mod

    	github.com/mitchellh/copystructure v1.2.0
    	github.com/mitchellh/go-homedir v1.1.0
    	github.com/moby/buildkit v0.13.2
    	github.com/onsi/gomega v1.33.1
    	github.com/openshift/api v0.0.0-20240530053948-b01900f1982a
    	github.com/pires/go-proxyproto v0.7.0
    	github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2
    	github.com/prometheus/client_golang v1.19.1
    	github.com/prometheus/client_model v0.6.1
    	github.com/prometheus/common v0.54.0
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 15:32:28 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  5. pkg/registry/core/service/ipallocator/controller/repair.go

    // * ClusterIPs that do not match the currently configured range
    // * Allocations to services that were not actually created due to a crash or powerloss
    // * Migrates old versions of Kubernetes services into the atomic ipallocator model automatically
    //
    // Can be run at infrequent intervals, and is best performed on startup of the master.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Sep 30 15:46:06 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  6. guava/src/com/google/common/hash/Striped64.java

       * only become known via CAS failures, convergence can be slow,
       * and because threads are typically not bound to CPUS forever,
       * may not occur at all. However, despite these limitations,
       * observed contention rates are typically low in these cases.
       *
       * It is possible for a Cell to become unused when threads that
       * once hashed to it terminate, as well as in the case where
       * doubling the table causes no thread to hash to it under
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/cache/Striped64.java

       * only become known via CAS failures, convergence can be slow,
       * and because threads are typically not bound to CPUS forever,
       * may not occur at all. However, despite these limitations,
       * observed contention rates are typically low in these cases.
       *
       * It is possible for a Cell to become unused when threads that
       * once hashed to it terminate, as well as in the case where
       * doubling the table causes no thread to hash to it under
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  8. guava/src/com/google/common/cache/Striped64.java

       * only become known via CAS failures, convergence can be slow,
       * and because threads are typically not bound to CPUS forever,
       * may not occur at all. However, despite these limitations,
       * observed contention rates are typically low in these cases.
       *
       * It is possible for a Cell to become unused when threads that
       * once hashed to it terminate, as well as in the case where
       * doubling the table causes no thread to hash to it under
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  9. src/cmd/go/internal/mvs/mvs.go

    package mvs
    
    import (
    	"fmt"
    	"slices"
    	"sort"
    	"sync"
    
    	"cmd/go/internal/par"
    
    	"golang.org/x/mod/module"
    )
    
    // A Reqs is the requirement graph on which Minimal Version Selection (MVS) operates.
    //
    // The version strings are opaque except for the special version "none"
    // (see the documentation for module.Version). In particular, MVS does not
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 21:58:12 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/util/config/common.go

    			unknown = append(unknown, gvk)
    		}
    	}
    
    	if len(unknown) > 0 {
    		return errors.Errorf("unknown configuration APIs: %#v", unknown)
    	}
    
    	return nil
    }
    
    // MigrateOldConfig migrates an old configuration from a byte slice into a new one (returned again as a byte slice).
    // Only kubeadm kinds are migrated.
    func MigrateOldConfig(oldConfig []byte, allowExperimental bool, mutators migrateMutators) ([]byte, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 11:04:08 UTC 2024
    - 18.1K bytes
    - Viewed (0)
Back to top