Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 275 for Maximum (0.17 sec)

  1. platforms/documentation/docs/src/snippets/testing/jacoco-quickstart/groovy/build.gradle

                enabled = false
                element = 'CLASS'
                includes = ['org.gradle.*']
    
                limit {
                    counter = 'LINE'
                    value = 'TOTALCOUNT'
                    maximum = 0.3
                }
            }
        }
    }
    // end::violation-rules-configuration[]
    
    // tag::testtask-configuration-defaults[]
    test {
        jacoco {
            enabled = true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 18:21:45 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util-generated.h.pump

    $$ -*- mode: c++; -*-
    $var n = 50  $$ Maximum length of Values arguments we want to support.
    $var maxtuple = 10  $$ Maximum number of Combine arguments we want to support.
    // Copyright 2008 Google Inc.
    // All Rights Reserved.
    //
    // Redistribution and use in source and binary forms, with or without
    // modification, are permitted provided that the following conditions are
    // met:
    //
    //     * Redistributions of source code must retain the above copyright
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  3. internal/grid/grid.go

    	// defaultBufferSize is the default buffer allocation size.
    	defaultBufferSize = 4 << 10
    
    	// maxBufferSize is the maximum buffer size.
    	// Buffers larger than this is not reused.
    	maxBufferSize = 96 << 10
    
    	// This is the assumed size of bigger buffers and allocation size.
    	biggerBufMin = 32 << 10
    
    	// This is the maximum size of bigger buffers.
    	biggerBufMax = maxBufferSize
    
    	// If there is a queue, merge up to this many messages.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Apr 02 15:56:18 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/testing/jacoco-quickstart/kotlin/build.gradle.kts

                isEnabled = false
                element = "CLASS"
                includes = listOf("org.gradle.*")
    
                limit {
                    counter = "LINE"
                    value = "TOTALCOUNT"
                    maximum = "0.3".toBigDecimal()
                }
            }
        }
    }
    // end::violation-rules-configuration[]
    
    // tag::testtask-configuration-defaults[]
    tasks.test {
        configure<JacocoTaskExtension> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 18:21:45 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  5. pkg/controller/volume/attachdetach/config/types.go

    	// wait between successive executions. Is set to 60 sec by default.
    	ReconcilerSyncLoopPeriod metav1.Duration
    	// DisableForceDetachOnTimeout disables force detach when the maximum unmount
    	// time is exceeded. Is false by default, and thus force detach on unmount is
    	// enabled.
    	DisableForceDetachOnTimeout bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 18:31:52 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  6. src/cmd/internal/bio/buf_mmap.go

    // license that can be found in the LICENSE file.
    
    //go:build unix
    
    package bio
    
    import (
    	"runtime"
    	"sync/atomic"
    	"syscall"
    )
    
    // mmapLimit is the maximum number of mmaped regions to create before
    // falling back to reading into a heap-allocated slice. This exists
    // because some operating systems place a limit on the number of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:20:31 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. pilot/cmd/pilot-agent/app/fds.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package app
    
    // RaiseFileLimits sets the file limit to the maximum allowed, to avoid exhaustion of file descriptors.
    // This is done by setting soft limit == hard limit.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 22:16:26 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/RegularImmutableMultiset.java

       * saving space.
       */
      @VisibleForTesting static final double MAX_LOAD_FACTOR = 1.0;
    
      /**
       * Maximum allowed false positive probability of detecting a hash flooding attack given random
       * input.
       */
      @VisibleForTesting static final double HASH_FLOODING_FPP = 0.001;
    
      /**
       * Maximum allowed length of a hash table bucket before falling back to a j.u.HashMap based
       * implementation. Experimentally determined.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  9. pkg/kubelet/metrics/collectors/volume_stats_test.go

    		# TYPE kubelet_volume_stats_available_bytes gauge
    		# HELP kubelet_volume_stats_capacity_bytes [ALPHA] Capacity in bytes of the volume
    		# TYPE kubelet_volume_stats_capacity_bytes gauge
    		# HELP kubelet_volume_stats_inodes [ALPHA] Maximum number of inodes in the volume
    		# TYPE kubelet_volume_stats_inodes gauge
    		# HELP kubelet_volume_stats_inodes_free [ALPHA] Number of free inodes in the volume
    		# TYPE kubelet_volume_stats_inodes_free gauge
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheException.kt

            summary
        )
    }
    
    
    class TooManyConfigurationCacheProblemsException internal constructor(
        causes: List<Throwable>,
        summary: () -> String
    ) : ConfigurationCacheProblemsException(
        "Maximum number of configuration cache problems has been reached.\n" +
            "This behavior can be adjusted. ${Documentation.maxProblems}",
        causes,
        summary
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.4K bytes
    - Viewed (0)
Back to top