Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for Fixes (0.07 sec)

  1. CHANGELOG/CHANGELOG-1.31.md

    - Fixes a bug where hard evictions due to resource pressure would let the pod have the full termination grace period, instead of shutting down instantly. This bug also affected force deleted pods. Both cases now get a termination grace period of 1 second. ([#124063](https://github.com/kubernetes/kubernetes/pull/124063), [@olyazavr](https://github.com/olyazavr)) [SIG Node]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.3.md

    * Fixes the panic that occurs in the federation controller manager when registering a GKE cluster to the federation. Fixes issue [#30790](https://github.com/kubernetes/kubernetes/pull/30790). ([#30940](https://github.com/kubernetes/kubernetes/pull/30940), [@madhusudancs](https://github.com/madhusudancs))
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 84K bytes
    - Viewed (0)
  3. docs/changelogs/changelog_3x.md

        exception, "Expected Android API level 21+ but was 29".
    
    
    ## Version 3.14.6
    
    _2020-01-11_
    
     *  Fix: Don't crash if the connection is closed when sending a degraded ping. This fixes a
        regression that was introduced in OkHttp 3.14.5.
    
    
    ## Version 3.14.5
    
    _2020-01-03_
    
     *  Fix: Degrade HTTP/2 connections after a timeout. When an HTTP/2 stream times out it may impact
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

    // since the result of SquaredDifference is always non-negative.
    // TFLite interpreter doesn't support Relu+int32 for now. So the test cases
    // are failing without the following pattern to optimize Relu away fixes
    // the problem.
    def OptimizeReluSquaredDifference : Pat<
      (TFL_ReluOp (TFL_SquaredDifferenceOp $l, $r)),
      (TFL_SquaredDifferenceOp $l, $r)>;
    
    // Optimize X^1 o X
    def OptimizePow1ToIdentity : Pat<
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  5. src/cmd/dist/build.go

    //
    // WARNING: This command runs after cmd/dist is built with the Go bootstrap toolchain.
    // It rebuilds and installs cmd/dist with the new toolchain, so other
    // commands (like "go tool dist test" in run.bash) can rely on bug fixes
    // made since the Go bootstrap version, but this function cannot.
    func cmdbootstrap() {
    	timelog("start", "dist bootstrap")
    	defer timelog("end", "dist bootstrap")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    // (although that comment isn't exactly right, as the value overwritten is not simulated correctly).
    //    t1 = MINSD x, y   => incorrect if x==NaN or x==-0,y==+0
    //    t2 = MINSD t1, x  => fixes x==NaN case
    //   res = POR t1, t2   => fixes x==-0,y==+0 case
    // Note that this trick depends on the special property that (NaN OR x) produces a NaN (although
    // it might not produce the same NaN as the input).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/mark_for_compilation_pass.cc

      // Contracts as many edges as possible to create XLA clusters.  After this
      // finishes the clustering decisions made are implicitly stored in
      // `clusters_`.
      Status RunEdgeContractionLoop();
    
      // "Fixes up" clusters by removing some modes.
      //
      // Autoclustering can sometimes be overeager.  For example, clustering large
      // constants (or large broadcasts of constants) can increase the live range
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  8. pkg/proxy/ipvs/proxier.go

    			// a VIP. This leads to a connection from VIP:<random port> to
    			// VIP:<service port>.
    			// Always masquerading OUTPUT (node-originating) traffic with a VIP
    			// source ip and service port destination fixes the outgoing connections.
    			proxier.natRules.Write(
    				args, "src,dst",
    				"-j", string(kubeMarkMasqChain))
    		}
    	}
    
    	// externalIPRules adds iptables rules applies to Service ExternalIPs
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  9. cmd/erasure-object.go

    			markDelete = false
    		}
    		if opts.VersionPurgeStatus() == Complete {
    			markDelete = false
    		}
    		// now, since VersionPurgeStatus() is already set, we can let the
    		// lower layers decide this. This fixes a regression that was introduced
    		// in PR #14555 where !VersionPurgeStatus.Empty() is automatically
    		// considered as Delete marker true to avoid listing such objects by
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/regalloc.go

    		b.Values = append(b.Values, start[b.ID]...)
    		for _, v := range oldSched {
    			b.Values = append(b.Values, v)
    			b.Values = append(b.Values, after[v.ID]...)
    		}
    	}
    }
    
    // shuffle fixes up all the merge edges (those going into blocks of indegree > 1).
    func (s *regAllocState) shuffle(stacklive [][]ID) {
    	var e edgeState
    	e.s = s
    	e.cache = map[ID][]*Value{}
    	e.contents = map[Location]contentRecord{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
Back to top