Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 47 for rend (0.14 sec)

  1. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    even know what they're about!'
    
      `Read them,' said the King.
    
      The White Rabbit put on his spectacles.  `Where shall I begin,
    please your Majesty?' he asked.
    
      `Begin at the beginning,' the King said gravely, `and go on
    till you come to the end:  then stop.'
    
      These were the verses the White Rabbit read:--
    
            `They told me you had been to her,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 145.2K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    even know what they're about!'
    
      `Read them,' said the King.
    
      The White Rabbit put on his spectacles.  `Where shall I begin,
    please your Majesty?' he asked.
    
      `Begin at the beginning,' the King said gravely, `and go on
    till you come to the end:  then stop.'
    
      These were the verses the White Rabbit read:--
    
            `They told me you had been to her,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 29 21:35:03 UTC 2012
    - 145.2K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/CallTest.kt

              call: Call,
              response: Response,
            ) {
              val bytes = response.body.byteStream()
              assertThat(bytes.read()).isEqualTo('a'.code)
              assertThat(bytes.read()).isEqualTo('b'.code)
              assertThat(bytes.read()).isEqualTo('c'.code)
    
              // This request will share a connection with 'A' cause it's all done.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 142.5K bytes
    - Viewed (0)
  4. pkg/volume/util/operationexecutor/operation_generator.go

    			}
    			return volumetypes.NewOperationContext(eventErr, detailedErr, migrated)
    		}
    
    		// record total time it takes to mount a volume. This is end to end time that includes waiting for volume to attach, node to be update
    		// plugin call to succeed
    		mountRequestTime := volumeToMount.MountRequestTime
    		totalTimeTaken := time.Since(mountRequestTime).Seconds()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/encapsulate_subgraphs_pass_test.cc

                             .WithAttr("_outside", "O1"));
        Node* send =
            SendFromHost(ops::NodeOut(key_constant, 0), "F1", "F1", "O1", {e},
                         b2.opts().WithControlInput(e).WithAttr(
                             kXlaHasHostTransferAttrName, true));
    
        Node* s = Sequencer(
            b2.opts().WithName("F1_sequencer").WithControlInputs({recv, send}),
            "F1");
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 113.3K bytes
    - Viewed (0)
  6. pkg/controller/statefulset/stateful_set_control_test.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package statefulset
    
    import (
    	"context"
    	"errors"
    	"fmt"
    	"math"
    	"math/rand"
    	"reflect"
    	"runtime"
    	"sort"
    	"strconv"
    	"strings"
    	"sync"
    	"testing"
    	"time"
    
    	apps "k8s.io/api/apps/v1"
    	v1 "k8s.io/api/core/v1"
    	apierrors "k8s.io/apimachinery/pkg/api/errors"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 19:01:47 UTC 2024
    - 108.7K bytes
    - Viewed (0)
  7. src/reflect/all_test.go

    		case 0:
    			cv = MakeChan(TypeOf(c), 1)
    			c = cv.Interface().(chan int)
    		}
    
    		// Send
    		cv.Send(ValueOf(2))
    		if i := <-c; i != 2 {
    			t.Errorf("reflect Send 2, native recv %d", i)
    		}
    
    		// Recv
    		c <- 3
    		if i, ok := cv.Recv(); i.Int() != 3 || !ok {
    			t.Errorf("native send 3, reflect Recv %d, %t", i.Int(), ok)
    		}
    
    		// TryRecv fail
    		val, ok := cv.TryRecv()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  8. doc/go1.17_spec.html

    begins. Communication blocks until the send can proceed.
    A send on an unbuffered channel can proceed if a receiver is ready.
    A send on a buffered channel can proceed if there is room in the buffer.
    A send on a closed channel proceeds by causing a <a href="#Run_time_panics">run-time panic</a>.
    A send on a <code>nil</code> channel blocks forever.
    </p>
    
    <pre>
    ch &lt;- 3  // send value 3 to channel ch
    </pre>
    
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  9. src/crypto/sha512/sha512_test.go

    func TestBlockGeneric(t *testing.T) {
    	if boring.Enabled {
    		t.Skip("BoringCrypto doesn't expose digest")
    	}
    	gen, asm := New().(*digest), New().(*digest)
    	buf := make([]byte, BlockSize*20) // arbitrary factor
    	rand.Read(buf)
    	blockGeneric(gen, buf)
    	block(asm, buf)
    	if *gen != *asm {
    		t.Error("block and blockGeneric resulted in different states")
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 03 21:17:08 UTC 2023
    - 105.6K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

                        contextualLabel == "Property \'output\' points to \'${reserved.absolutePath}\' which is managed by Gradle"
                        details == 'Trying to write an output to a read-only location which is for Gradle internal use only'
                        solutions == ['Select a different output location']
                        additionalData.asMap == [
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
Back to top