Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 443 for Paging (0.1 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/artifacts/repositories/MetadataSupplierAware.java

     * avoid too many requests on a server. By providing such rules, a plugin or build author can
     * provide the necessary information to perform component selection without having to actually
     * fetch the component metadata on a server.
     *
     * @since 4.9
     */
    public interface MetadataSupplierAware {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 22 14:14:42 UTC 2019
    - 3K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/cpumanager/state/checkpoint.go

    type CPUManagerCheckpointV2 = CPUManagerCheckpoint
    
    // NewCPUManagerCheckpoint returns an instance of Checkpoint
    func NewCPUManagerCheckpoint() *CPUManagerCheckpoint {
    	//nolint:staticcheck // unexported-type-in-api user-facing error message
    	return newCPUManagerCheckpointV2()
    }
    
    func newCPUManagerCheckpointV1() *CPUManagerCheckpointV1 {
    	return &CPUManagerCheckpointV1{
    		Entries: make(map[string]string),
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 27 01:24:22 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  3. manifests/charts/UPDATING-CHARTS.md

    # Updating charts and values.yaml
    
    ## Acceptable Pull Requests
    
    Helm charts `values.yaml` represent a complex user facing API that tends to grow uncontrollably over time
    due to design choices in Helm.
    The underlying Kubernetes resources we configure have 1000s of fields; given enough users and bespoke use cases,
    eventually someone will want to customize every one of those fields.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 27 18:28:55 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/typecheck/_builtin/coverage.go

    // license that can be found in the LICENSE file.
    
    // NOTE: If you change this file you must run "go generate"
    // in cmd/compile/internal/typecheck
    // to update builtin.go. This is not done automatically
    // to avoid depending on having a working compiler binary.
    
    //go:build ignore
    
    package coverage
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 28 16:59:48 UTC 2024
    - 437 bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/runtime/runtime.go

    	if r := recover(); r != nil {
    		handleCrash(ctx, r, additionalHandlers...)
    	}
    }
    
    // handleCrash is the common implementation of HandleCrash and HandleCrash.
    // Having those call a common implementation ensures that the stack depth
    // is the same regardless through which path the handlers get invoked.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 16:28:45 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/math/MathBenchmarking.java

       * the result is chosen uniformly at random in [0, numBits), and then the result is chosen in that
       * range uniformly at random. Zero is treated as having log2 == 0.
       */
      static BigInteger randomNonNegativeBigInteger(int numBits) {
        int digits = RANDOM_SOURCE.nextInt(numBits);
        if (digits == 0) {
          return new BigInteger(1, RANDOM_SOURCE);
        } else {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 4.1K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_tidy_temp.txt

    # Regression test for https://go.dev/issue/51992
    
    # 'go mod tidy' should error instead of throwing panic in the situation below.
    # 1. /tmp/go.mod exists
    # 2. run 'go mod tidy' in /tmp or in the child directory not having go.mod.
    
    [GOOS:plan9] stop  # Plan 9 has no $TMPDIR variable to set.
    
    env GOROOT=$TESTGO_GOROOT
    env TMP=$WORK
    env TMPDIR=$WORK
    mkdir $WORK/child
    
    ! go mod tidy
    ! stdout .
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 640 bytes
    - Viewed (0)
  8. test/fixedbugs/bug483.go

    // Copyright 2014 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test for a garbage collection bug involving not
    // marking x as having its address taken by &x[0]
    // when x is an array value.
    
    package main
    
    import (
    	"bytes"
    	"fmt"
    	"runtime"
    )
    
    func main() {
    	var x = [4]struct{ x, y interface{} }{
    		{"a", "b"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 680 bytes
    - Viewed (0)
  9. pkg/keepalive/options.go

    // (as implied by the options' name...)
    type Options struct {
    	// After a duration of this time if the server/client doesn't see any activity it pings the peer to see if the transport is still alive.
    	Time time.Duration
    	// After having pinged for keepalive check, the server waits for a duration of Timeout and if no activity is seen even after that
    	// the connection is closed.
    	Timeout time.Duration
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/build.gradle.kts

        |* the resolution engine,
        |* how to retrieve and process dependencies and their metadata,
        |* the dependency locking and verification implementations.
        |
        |DSL facing APIs are to be found in 'core-api'""".trimMargin()
    
    errorprone {
        disabledChecks.addAll(
            "AmbiguousMethodReference", // 1 occurrences
            "ClassCanBeStatic",
            "DefaultCharset", // 3 occurrences
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 7K bytes
    - Viewed (0)
Back to top