Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 91 for Maximum (0.13 sec)

  1. src/html/template/exec_test.go

    	}
    	tmpl := Must(New("tmpl").Parse(`{{template "tmpl" .}}`))
    	err := tmpl.Execute(io.Discard, nil)
    	got := "<nil>"
    	if err != nil {
    		got = err.Error()
    	}
    	const want = "exceeded maximum template depth"
    	if !strings.Contains(got, want) {
    		t.Errorf("got error %q; want %q", got, want)
    	}
    }
    
    func TestAddrOfIndex(t *testing.T) {
    	// golang.org/issue/14916.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    === Disabling metadata verification
    
    By default, Gradle will not only verify artifacts (jars, ...) but also the metadata associated with those artifacts (typically POM files).
    Verifying this ensures the maximum level of security: metadata files typically tell what transitive dependencies will be included, so a compromised metadata file may cause the introduction of undesired dependencies in the graph.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  3. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // Timeout for the list/watch call.
      // This limits the duration of the call, regardless of any activity or inactivity.
      // +optional
      optional int64 timeoutSeconds = 5;
    
      // limit is a maximum number of responses to return for a list call. If more items exist, the
      // server will set the `continue` field on the list metadata to a value that can be used with the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // Timeout for the list/watch call.
      // This limits the duration of the call, regardless of any activity or inactivity.
      // +optional
      optional int64 timeoutSeconds = 5;
    
      // limit is a maximum number of responses to return for a list call. If more items exist, the
      // server will set the `continue` field on the list metadata to a value that can be used with the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    		}
    	}
    
    	return allErrs
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
  6. src/text/template/exec_test.go

    	}
    	tmpl := Must(New("tmpl").Parse(`{{template "tmpl" .}}`))
    	err := tmpl.Execute(io.Discard, nil)
    	got := "<nil>"
    	if err != nil {
    		got = err.Error()
    	}
    	const want = "exceeded maximum template depth"
    	if !strings.Contains(got, want) {
    		t.Errorf("got error %q; want %q", got, want)
    	}
    }
    
    func TestAddrOfIndex(t *testing.T) {
    	// golang.org/issue/14916.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  7. src/runtime/mbitmap.go

    	// value at the number of bits in a uintptr, multiplied by the pointer
    	// size in bytes.
    	//
    	// We choose a value here that has a natural cutover point in terms of memory
    	// overheads. This value just happens to be the maximum possible value this
    	// can be.
    	//
    	// A span with heap bits in it will have 128 bytes of heap bits on 64-bit
    	// platforms, and 256 bytes of heap bits on 32-bit platforms. The first size
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  8. cmd/test-utils_test.go

    	// Disable Error logging in testing.
    	logger.DisableErrorLog = true
    
    	// Uncomment the following line to see trace logs during unit tests.
    	// logger.AddTarget(console.New())
    
    	// Set system resources to maximum.
    	setMaxResources(serverCtxt{})
    
    	// Initialize globalConsoleSys system
    	globalConsoleSys = NewConsoleLogger(context.Background(), io.Discard)
    
    	globalInternodeTransport = NewInternodeHTTPTransport(0)()
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  9. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    // Windows CE does not define _snprintf_s and MSVC prior to 2005 doesn't
    // complain about _snprintf.
    # define GTEST_SNPRINTF_ _snprintf
    #else
    # define GTEST_SNPRINTF_ snprintf
    #endif
    
    // The maximum number a BiggestInt can represent.  This definition
    // works no matter BiggestInt is represented in one's complement or
    // two's complement.
    //
    // We cannot rely on numeric_limits in STL, as __int64 and long long
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  10. cmd/erasure-server-pool.go

    			serverPools:      make([]*erasureSets, len(endpointServerPools)),
    			s3Peer:           NewS3PeerSys(endpointServerPools),
    			distributionAlgo: formatErasureVersionV3DistributionAlgoV3,
    		}
    	)
    
    	// Maximum number of reusable buffers per node at any given point in time.
    	n := uint64(1024) // single node single/multiple drives set this to 1024 entries
    
    	if globalIsDistErasure {
    		n = 2048
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
Back to top