Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 782 for reverting (0.17 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. 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)
  5. 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)
  6. 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)
  7. 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)
  8. platforms/documentation/docs/src/docs/dsl/org.gradle.api.reporting.Reporting.xml

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 581 bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/PPC64latelower.rules

    // This file contains rules used by the laterLower pass.
    
    // Simplify ISEL x $0 z into ISELZ
    (ISEL [a] x (MOVDconst [0]) z) => (ISELZ [a] x z)
    // Simplify ISEL $0 y z into ISELZ by inverting comparison and reversing arguments.
    (ISEL [a] (MOVDconst [0]) y z) => (ISELZ [a^0x4] y z)
    
    // SETBC, SETBCR is supported on ISA 3.1(Power10) and newer, use ISELZ for
    // older targets
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  10. platforms/software/reporting/src/main/resources/META-INF/gradle-plugins/org.gradle.reporting-base.properties

    Tom Tresansky <******@****.***> 1697026569 -0400
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 64 bytes
    - Viewed (0)
Back to top