Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 451 for choosing (4.09 sec)

  1. internal/config/storageclass/storage-class.go

    // an erasure shard and written along with xl.meta on the drive, on a versioned
    // bucket this value is automatically chosen to 1/8th of the this value, make
    // sure to put this into consideration when choosing this value.
    func (sCfg *Config) InlineBlock() int64 {
    	ConfigLock.RLock()
    	defer ConfigLock.RUnlock()
    	if !sCfg.initialized {
    		return 128 * humanize.KiByte
    	}
    	return sCfg.inlineBlock
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  2. guava/src/com/google/common/graph/Network.java

     * prefer the simplest interface that satisfies your use case. See the <a
     * href="https://github.com/google/guava/wiki/GraphsExplained#choosing-the-right-graph-type">
     * "Choosing the right graph type"</a> section of the Guava User Guide for more details.
     *
     * <h3>Capabilities</h3>
     *
     * <p>{@code Network} supports the following use cases (<a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/SelectorState.java

        // that use this selector. Since a module resolve state tracks all selectors
        // for this module, when considering selectors that need to be used when
        // choosing a version, we must only consider the ones which currently have
        // outgoing edges pointing to them. If not, then it means the module was
        // evicted, but it can still be reintegrated later in a different path.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modget/query.go

    	// version that does not match version.
    	conflict *query
    
    	// candidates is a list of sets of alternatives for a path that matches (or
    	// contains packages that match) the pattern. The query can be resolved by
    	// choosing exactly one alternative from each set in the list.
    	//
    	// A path-literal query results in only one set: the path itself, which
    	// may resolve to either a package path or a module path.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 27 15:48:25 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  5. src/math/big/prime.go

    		return false
    	}
    	// Two is the only even prime.
    	// Already checked by caller, but here to allow testing in isolation.
    	if n[0]&1 == 0 {
    		return n.cmp(natTwo) == 0
    	}
    
    	// Baillie-OEIS "method C" for choosing D, P, Q,
    	// as in https://oeis.org/A217719/a217719.txt:
    	// try increasing P ≥ 3 such that D = P² - 4 (so Q = 1)
    	// until Jacobi(D, n) = -1.
    	// The search is expected to succeed for non-square n after just a few trials.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 02 14:43:52 UTC 2022
    - 10.4K bytes
    - Viewed (0)
  6. src/sort/sort.go

    // ergonomic and runs faster.
    func Sort(data Interface) {
    	n := data.Len()
    	if n <= 1 {
    		return
    	}
    	limit := bits.Len(uint(n))
    	pdqsort(data, 0, n, limit)
    }
    
    type sortedHint int // hint for pdqsort when choosing the pivot
    
    const (
    	unknownHint sortedHint = iota
    	increasingHint
    	decreasingHint
    )
    
    // xorshift paper: https://www.jstatsoft.org/article/view/v008i14/xorshift.pdf
    type xorshift uint64
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 16:40:32 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/reference/ci-systems/github-actions.adoc

    ----
    
    === Initialize the Gradle project and commit to the repository
    
    Use `gradle init` to create a fresh Gradle project. You can choose any of the available options during `init`, but we recommend choosing "library" as the project type.
    
    Once the project is generated, commit the changes and push to the repository.
    
    [listing.terminal.sample-command]
    ----
    $ gradle init
    $ git add .
    $ git commit -m "Initial commit"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 14:41:08 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  8. pkg/registry/core/service/strategy.go

    	}
    
    	// NOTE: there are other fields like `selector` which we could wipe.
    	// Historically we did not wipe them and they are not allocated from
    	// finite pools, so we are (currently) choosing to leave them alone.
    
    	// Clear the load-balancer status if it is no longer appropriate.  Although
    	// LB de-provisioning is actually asynchronous, we don't need to expose the
    	// user to that complexity.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 13:09:36 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/declaring_dependencies.adoc

    [[sec:choosing-configuration]]
    == Choosing the right configuration for dependencies
    
    The choice of the configuration where you declare a dependency is important.
    However there is no fixed rule into which configuration a dependency must go.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 30.1K bytes
    - Viewed (0)
  10. cmd/endpoint-ellipses.go

    	})
    
    	return setCounts
    }
    
    // getSetIndexes returns list of indexes which provides the set size
    // on each index, this function also determines the final set size
    // The final set size has the affinity towards choosing smaller
    // indexes (total sets)
    func getSetIndexes(args []string, totalSizes []uint64, setDriveCount uint64, argPatterns []ellipses.ArgPattern) (setIndexes [][]uint64, err error) {
    	if len(totalSizes) == 0 || len(args) == 0 {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 14.7K bytes
    - Viewed (0)
Back to top