Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for noiksi (0.05 sec)

  1. compat/maven-embedder/src/main/java/org/fusesource/jansi/Ansi.java

            } else {
                return new NoAnsi(size);
            }
        }
    
        private static class NoAnsi extends Ansi {
            NoAnsi() {
                super();
            }
    
            NoAnsi(int size) {
                super(size);
            }
    
            NoAnsi(StringBuilder builder) {
                super(builder);
            }
    
            @Override
            public Ansi fg(Color color) {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  2. internal/grid/connection.go

    	if h0 == h1 {
    		return c.Local < c.Remote
    	}
    	return h0 < h1
    }
    
    func (c *Connection) send(ctx context.Context, msg []byte) error {
    	select {
    	case <-ctx.Done():
    		// Returning error here is too noisy.
    		return nil
    	case c.outQueue <- msg:
    		return nil
    	}
    }
    
    // queueMsg queues a message, with an optional payload.
    // sender should not reference msg.Payload
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Mon Jul 29 18:10:04 UTC 2024
    - 46.7K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.31.md

     - Reduced state change noise when volume expansion fails. Also mark certain failures as infeasible.
      
      ACTION REQUIRED:  If you are using the `RecoverVolumeExpansionFailure` alpha feature gate
    Registered: Fri Nov 01 09:05:11 UTC 2024
    - Last Modified: Wed Oct 23 12:18:32 UTC 2024
    - 315.4K bytes
    - Viewed (0)
  4. RELEASE.md

            pull request
            [47772](https://github.com/tensorflow/tensorflow/pull/47772).
        *   In previous versions of TensorFlow, when a GPU was available,
            `tf.sparse.sparse_dense_matmul` introduced truly random noise in the
            forward path for data of type `tf.float32` but not for data of type
            `tf.float64` (for which there was no GPU implementation). In this
            current release, GPU support for other floating-point types
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Tue Oct 22 14:33:53 UTC 2024
    - 735.3K bytes
    - Viewed (0)
Back to top