Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 42 for hard (0.09 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...
    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. src/cmd/go/internal/modget/get.go

    				sumErrs[i] = err
    			}
    		})
    	}
    
    	<-r.work.Idle()
    
    	// Report deprecations, then retractions, then errors fetching sums.
    	// Only errors fetching sums are hard errors.
    	for _, mm := range deprecations {
    		if mm.message != "" {
    			fmt.Fprintf(os.Stderr, "go: module %s is deprecated: %s\n", mm.m.Path, mm.message)
    		}
    	}
    	var retractPath string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      let description = [{
        This prints the current module (by default, to stderr). The module is
        otherwise piped through without changes.
    
        This complements MLIRs dumping functionality, which can sometimes be hard
        to configure. This pass is useful if you know the exact position in the
        pipeline where you want to dump, and are able to easily modify the pipeline
        source code.
      }];
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  4. platforms/core-configuration/graph-serialization/src/main/kotlin/org/gradle/internal/serialize/graph/package-info.java

     * <h3>Encoders and Decoders</h3>
     *  <p>
     *  Serialization of an object that is supported by the configuration cache is performed by an {@link org.gradle.internal.serialize.graph.EncodingProvider}.
     *  Deserialization, on the other hand, is performed by a {@link org.gradle.internal.serialize.graph.DecodingProvider}.
     *  </p>
     *  <p>Both protocols are highly specialized and, as such, they are specified as Single Abstract Method interfaces.</p>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.29.md

    - The `matchLabelKeys/mismatchLabelKeys` feature is introduced to the hard/soft `PodAffinity/PodAntiAffinity`. ([#116065](https://github.com/kubernetes/kubernetes/pull/116065), [@sanposhiho](https://github.com/sanposhiho))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/utils/string_utils.cc

    #include <vector>
    
    #include "absl/status/status.h"
    
    namespace mlir::TFL {
    
    absl::Status MiniDynamicBuffer::AddString(const char* str, size_t len) {
      // If `data_.size() + len` is greater than `SIZE_MAX` then the left hand side
      // will overflow to something less than max_length_. After checking `len <=
      // max_length_` we can use this subtraction to check for overflow.
      if (len > max_length_ || data_.size() >= max_length_ - len)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. src/net/http/serve_test.go

    		shutdownRes <- ts.Config.Shutdown(context.Background())
    	}()
    	readRes := make(chan error, 1)
    	go func() {
    		_, err := c.Read([]byte{0})
    		readRes <- err
    	}()
    
    	// TODO(#59037): This timeout is hard-coded in closeIdleConnections.
    	// It is undocumented, and some users may find it surprising.
    	// Either document it, or switch to a less surprising behavior.
    	const expectTimeout = 5 * time.Second
    
    	t0 := time.Now()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  8. src/runtime/coro.go

    	// Swap it with ourselves.
    	var gnext *g
    	for {
    		// Note: this is a racy load, but it will eventually
    		// get the right value, and if it gets the wrong value,
    		// the c.gp.cas will fail, so no harm done other than
    		// a wasted loop iteration.
    		// The cas will also sync c.gp's
    		// memory enough that the next iteration of the racy load
    		// should see the correct value.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:09:18 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  9. src/sync/pool.go

    // dynamically-sized store of temporary output buffers. The store scales under
    // load (when many goroutines are actively printing) and shrinks when
    // quiescent.
    //
    // On the other hand, a free list maintained as part of a short-lived object is
    // not a suitable use for a Pool, since the overhead does not amortize well in
    // that scenario. It is more efficient to have such objects implement their own
    // free list.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyResolverRequest.java

             * other specified dependency, will be subject to dependency collection/resolution, i.e. should have an artifact
             * descriptor and a corresponding artifact file. The root artifact on the other hand is only used
             * as a label for the root node of the graph in case no root dependency was specified. As such, the configured
             * root artifact is ignored if {@link #root(DependencyCoordinate)} has been set.
             *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 16.9K bytes
    - Viewed (0)
Back to top