Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,106 for reverting (0.26 sec)

  1. releasenotes/notes/startupProbe.yaml

          readinessPeriodSeconds: 15
          readinessFailureThreshold: 4
          startupProbe:
            enabled: true
            failureThreshold: 600
          ```
          
          The recommended values to disable the startup probe (reverting the behavior to match older Istio versions):
          
          ```
          readinessInitialDelaySeconds: 1
          readinessPeriodSeconds: 2
          readinessFailureThreshold: 30
          startupProbe:
            enabled: false
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 13 23:27:34 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_edit_go.txt

    # Test support for go mod edit -go to set language version.
    
    env GO111MODULE=on
    ! go build
    stderr ' type alias requires'
    go mod edit -go=1.9
    grep 'go 1.9' go.mod
    go build
    
    # Reverting the version should force a rebuild and error instead of using
    # the cached 1.9 build. (https://golang.org/issue/37804)
    go mod edit -go=1.8
    ! go build
    stderr 'type alias requires'
    
    # go=none should drop the line
    go mod edit -go=none
    ! grep go go.mod
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 28 02:54:10 UTC 2024
    - 506 bytes
    - Viewed (0)
  3. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/nativeplatform/RealWorldNativePluginPerformanceTest.groovy

                            // do change
                            changeClosure(file, originalContent)
                        } else if (context.iteration > 2) {
                            println "Reverting $file"
                            file.text = originalContent
                        }
                    }
                }
            }
    
            when:
            def result = runner.run()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  4. src/crypto/x509/root_unix_test.go

    	origCertFiles := certFiles[:]
    
    	// To prevent any other certs from being loaded in
    	// through "SSL_CERT_FILE" or from known "certFiles",
    	// clear them all, and they'll be reverting on defer.
    	certFiles = certFiles[:0]
    	os.Setenv(certFileEnv, "")
    
    	defer func() {
    		certFiles = origCertFiles[:]
    		os.Setenv(certDirEnv, origDir)
    		os.Setenv(certFileEnv, origFile)
    	}()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 01 00:36:38 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/typecheck/iexport.go

    package typecheck
    
    import (
    	"strings"
    )
    
    const blankMarker = "$"
    
    // TparamName returns the real name of a type parameter, after stripping its
    // qualifying prefix and reverting blank-name encoding. See TparamExportName
    // for details.
    func TparamName(exportName string) string {
    	// Remove the "path" from the type param name that makes it unique.
    	ix := strings.LastIndex(exportName, ".")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 21 02:40:02 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/transaction/CompileTransaction.java

    import static org.gradle.api.internal.tasks.compile.incremental.compilerapi.deps.GeneratedResource.Location.SOURCE_OUTPUT;
    
    /**
     * A helper class to handle incremental compilation after a failure: it makes moving files around easier and reverting state easier.
     */
    public class CompileTransaction {
    
        private static final Logger LOG = LoggerFactory.getLogger(CompileTransaction.class);
    
        private final Deleter deleter;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/layout_optimization.cc

      for (unsigned idx : layout_dependent_results) {
        OpResult result = op->getResult(idx);
    
        // If the op is layout agnostic, the new result type can be generated by
        // reverting `permutation`. Otherwise, operations with custom folding will
        // update the result type in `FoldOperandsPermutation`.
        if (layout_agnostic)
          result.setType(ReversePermuteShapedType(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  8. pilot/pkg/model/endpointshards.go

    	// condition is introduced where an XDS response may be generated before the update, but not
    	// completed until after a response after the update. Essentially, we transition from v0 -> v1 ->
    	// v0 -> invalidate -> v1. Reverting a change we pushed violates our contract of monotonically
    	// moving forward in version. In practice, this is pretty rare and self corrects nearly
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  9. src/go/internal/gcimporter/iimport.go

    	n, _ := typ.(*types.Named)
    	return n
    }
    
    const blankMarker = "$"
    
    // tparamName returns the real name of a type parameter, after stripping its
    // qualifying prefix and reverting blank-name encoding. See tparamExportName
    // for details.
    func tparamName(exportName string) string {
    	// Remove the "path" from the type param name that makes it unique.
    	ix := strings.LastIndex(exportName, ".")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  10. platforms/software/reporting/src/main/java/org/gradle/api/reporting/Reporting.java

     * limitations under the License.
     */
    
    package org.gradle.api.reporting;
    
    import groovy.lang.Closure;
    import groovy.lang.DelegatesTo;
    import org.gradle.api.Action;
    
    /**
     * An object that provides reporting options.
     * <p>
     * Tasks that produce reports as part of their execution expose configuration options of those reports via these methods.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 3K bytes
    - Viewed (0)
Back to top