Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,194 for avoided (0.17 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zerrors_zos_s390x.go

    	{112, "EDC5112I", "Resource temporarily unavailable."},
    	{113, "EDC5113I", "Bad file descriptor."},
    	{114, "EDC5114I", "Resource busy."},
    	{115, "EDC5115I", "No child processes."},
    	{116, "EDC5116I", "Resource deadlock avoided."},
    	{117, "EDC5117I", "File exists."},
    	{118, "EDC5118I", "Incorrect address."},
    	{119, "EDC5119I", "File too large."},
    	{120, "EDC5120I", "Interrupted function call."},
    	{121, "EDC5121I", "Invalid argument."},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  2. src/internal/bisect/bisect.go

    }
    
    // Trivial error implementation, here to avoid importing errors.
    
    // parseError is a trivial error implementation,
    // defined here to avoid importing errors.
    type parseError struct{ text string }
    
    func (e *parseError) Error() string { return e.text }
    
    // FNV-1a implementation. See Go's hash/fnv/fnv.go.
    // Copied here for simplicity (can handle integers more directly)
    // and to avoid importing hash/fnv.
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 17:28:43 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  3. api/maven-api-settings/src/main/mdo/settings.mdo

              <association>
                <type>RepositoryPolicy</type>
              </association>
            </field>
          </fields>
          <!-- prevent Modello generation of an incorrect equals method. Could be avoided by using <identity/> tags to mark ID as the only identity field -->
          <codeSegments>
            <codeSegment>
              <version>1.0.0/1.1.0</version>
              <code>
                <![CDATA[
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Feb 17 18:40:11 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  4. pilot/pkg/xds/delta.go

    // handles 'push' requests and close - the code will eventually call the 'push' code, and it needs more mutex
    // protection. Original code avoided the mutexes by doing both 'push' and 'process requests' in same thread.
    func (s *DiscoveryServer) processDeltaRequest(req *discovery.DeltaDiscoveryRequest, con *Connection) error {
    	stype := v3.GetShortType(req.TypeUrl)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/Streams.java

       * stream may perform better.
       *
       * @see Stream#concat(Stream, Stream)
       */
      @SuppressWarnings("unchecked") // could probably be avoided with a forwarding Spliterator
      @SafeVarargs
      public static <T extends @Nullable Object> Stream<T> concat(Stream<? extends T>... streams) {
        // TODO(lowasser): consider an implementation that can support SUBSIZED
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 36.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_sequencing.cc

      // Find the FuncOp for the surrounding while loop body.
      func::FuncOp loop_body_func =
          (*forward_pass_ops.begin())->getParentOfType<func::FuncOp>();
    
      // merged_set will keep track of which ops are to be avoided when gather ops
      // for inclusion into the four extracted functions.
      llvm::SetVector<Operation*> merged_set;
    
      // Find the TPUReplicationMetadata and TPUCompilationResult ops and delete
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  7. pkg/controller/resourceclaim/controller.go

    			// have to do the API call below for every deleted pod
    			// to ensure that the pod really doesn't exist. With
    			// the cache, most of the time the pod will be recorded
    			// as deleted and the API call can be avoided.
    			if ec.deletedObjects.Has(reservedFor.UID) {
    				// We know that the pod was deleted. This is
    				// easy to check and thus is done first.
    				keepEntry = false
    			} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  8. src/math/big/natdiv.go

    (As before, this fixup is only needed at most twice.)
    
    Now that q̂ = ⌊uₙuₙ₋₁uₙ₋₂ / vₙ₋₁vₙ₋₂⌋, as mentioned above it is at most one
    away from the correct q, and we've avoided doing any n-digit math.
    (If we need the new remainder, it can be computed as r̂·B + uₙ₋₂ - q̂·vₙ₋₂.)
    
    The final check u < q̂·v and the possible fixup must be done at full precision.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 17:02:38 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  9. pilot/pkg/bootstrap/server.go

    	readinessFlags  *readinessFlags
    
    	// duration used for graceful shutdown.
    	shutdownDuration time.Duration
    
    	// internalStop is closed when the server is shutdown. This should be avoided as much as possible, in
    	// favor of AddStartFunc. This is only required if we *must* start something outside of this process.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/preflight/checks.go

    	// auto-detected and properly bound to an IPV4 address, this will make the cluster non-functional eventually. The case like this should be avoided by the validation instead,
    	// i.e. We don't care whether the input values for those parameters are set correctly here but if it's an IPV4 scoped CIDR or address we will add the file content check for IPV4,
    	// as does the IPV6.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:20:55 UTC 2024
    - 39.5K bytes
    - Viewed (0)
Back to top