Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 450 for DISABLE (0.31 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-printers.h

    template <typename T>
    class UniversalPrinter {
     public:
      // MSVC warns about adding const to a function type, so we want to
      // disable the warning.
    #ifdef _MSC_VER
    # pragma warning(push)          // Saves the current warning state.
    # pragma warning(disable:4180)  // Temporarily disables warning 4180.
    #endif  // _MSC_VER
    
      // Note: we deliberately don't call this PrintTo(), as that name
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 30.9K bytes
    - Viewed (0)
  2. common/scripts/kind_provisioner.sh

      if ! (kind delete cluster --name="${NAME}" -v9) > /dev/null; then
        echo "No existing kind cluster with name ${NAME}. Continue..."
      fi
    
      # explicitly disable shellcheck since we actually want $NAME to expand now
      # shellcheck disable=SC2064
      if [[ "${CLEANUP}" == "true" ]]; then
        trap "cleanup_kind_cluster ${NAME}" EXIT
      fi
    
        # If config not explicitly set, then use defaults
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 19:12:55 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  3. .github/workflows/build.yml

              arch: ${{ matrix.api-level == '34' && 'x86_64' || 'x86' }}
              force-avd-creation: false
              emulator-options: -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none
              disable-animations: false
              script: echo "Generated AVD snapshot for caching."
    
          - name: Run Tests
            uses: reactivecircus/android-emulator-runner@v2
            with:
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 01:51:50 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/optimizing-performance/performance.adoc

    ==== Disable reports
    
    Gradle automatically creates test reports regardless of whether you want to look at them.
    That report generation slows down the overall build. You may not need reports if:
    
    * you only care if the tests succeeded (rather than why)
    * you use build scans, which provide more information than a local report
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirMetadataCalculator.kt

                // the majority of tests fail because metadata of each interface will have a flag set, compared to Kapt3.
                jvmDefaultMode = JvmDefaultMode.DISABLE,
                stringTable,
                null,
                null
            )
            return FirElementSerializer.createTopLevel(
                firSession,
                scopeSession,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 20:26:34 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  6. platforms/jvm/jacoco/src/integTest/groovy/org/gradle/testing/jacoco/plugins/rules/JacocoPluginCoverageVerificationIntegrationTest.groovy

            failure.assertHasCause("Rule violated for bundle $testDirectory.name: classes missed count is 0.0, but expected minimum is 0.5")
        }
    
        def "can disable rules"() {
            given:
            buildFile << """
                jacocoTestCoverageVerification {
                    violationRules {
                        rule {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  7. src/main/java/jcifs/Configuration.java

        int getNetbiosRetryCount ();
    
    
        /**
         * 
         * 
         * Property <tt>jcifs.netbios.cachePolicy</tt> in minutes (int, default 600)
         * 
         * @return netbios cache timeout, in seconds, 0 - disable caching, -1 - cache forever
         */
        int getNetbiosCachePolicy ();
    
    
        /**
         * 
         * @return the maximum size of IO buffers, limits the maximum message size
         */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 18K bytes
    - Viewed (0)
  8. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyGradleModuleMetadataPublishIntegrationTest.groovy

            failure.assertHasErrorOutput "Disable this check by adding 'dependencies-without-versions' to the suppressed validations of the :generateMetadataFileForIvyPublication task."
        }
    
        @Issue("https://github.com/gradle/gradle/issues/23030")
        def "can disable validation of dependencies without versions"() {
            settingsFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 07:21:42 UTC 2023
    - 30.4K bytes
    - Viewed (0)
  9. cluster/gce/gci/configure-kubeapiserver.sh

          params+=" --audit-log-path=/var/log/kube-apiserver-audit.log"
          params+=" --audit-log-maxage=0"
          params+=" --audit-log-maxbackup=0"
          # Lumberjack doesn't offer any way to disable size-based rotation. It also
          # has an in-memory counter that doesn't notice if you truncate the file.
          # 2000000000 (in MiB) is a large number that fits in 31 bits. If the log
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 11:08:30 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  10. pkg/kubelet/logs/container_log_manager.go

    // containers managed by kubelet.
    type LogRotatePolicy struct {
    	// MaxSize in bytes of the container log file before it is rotated. Negative
    	// number means to disable container log rotation.
    	MaxSize int64
    	// MaxFiles is the maximum number of log files that can be present.
    	// If rotating the logs creates excess files, the oldest file is removed.
    	MaxFiles int
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 15K bytes
    - Viewed (0)
Back to top