Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 114 for T_simple (0.39 sec)

  1. src/crypto/tls/conn.go

    //     record should fit in one TCP segment.
    //   - For throughput-sensitive applications, such as large file transfers,
    //     larger TLS records better amortize framing and encryption overheads.
    //
    // A simple heuristic that works well in practice is to use small records for
    // the first 1MB of data, then use larger records for subsequent data, and
    // reset back to smaller records after the connection becomes idle. See "High
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  2. pkg/controller/volume/persistentvolume/binder_test.go

    //     of volumes/claims with expected claims/volumes and report differences.
    //
    // Some limit of calls in enforced to prevent endless loops.
    func TestMultiSync(t *testing.T) {
    	tests := []controllerTest{
    		// Test simple binding
    		{
    			// syncClaim binds to a matching unbound volume.
    			name:            "10-1 - successful bind",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:37:30 UTC 2023
    - 65.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

    // This transformation pass prepares for legalization to the TFLite dialect by
    // converting Tensorlist operations in TensorFlow dialect into operations that
    // can be legalized to TensorFlow Lite dialect with simple replacements.  The
    // newly created operations are in the TensorFlow dialect if the operation can
    // be represented using a TensorFlow op. Otherwise, TensorFlow Lite dialect op
    // is used.
    
    #include <climits>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/util/concurrent/Futures.java

         * exceptions' docs suggest that either is acceptable. Google's Java Practices page recommends
         * IllegalArgumentException here, in part to keep its recommendation simple: Static methods
         * should throw IllegalStateException only when they use static state.
         *
         * Why do we deviate here? The answer: We want for fluentFuture.getDone() to throw the same
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  5. src/bufio/bufio_test.go

    		}
    	}
    	return string(b[0:nb])
    }
    
    func TestReaderSimple(t *testing.T) {
    	data := "hello world"
    	b := NewReader(strings.NewReader(data))
    	if s := readBytes(b); s != "hello world" {
    		t.Errorf("simple hello world test failed: got %q", s)
    	}
    
    	b = NewReader(newRot13Reader(strings.NewReader(data)))
    	if s := readBytes(b); s != "uryyb jbeyq" {
    		t.Errorf("rot13 hello world test failed: got %q", s)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:56:01 UTC 2023
    - 51.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types_swagger_doc_generated.go

    var map_TableRow = map[string]string{
    	"":           "TableRow is an individual row in a table.",
    	"cells":      "cells will be as wide as the column definitions array and may contain strings, numbers (float64 or int64), booleans, simple maps, lists, or null. See the type field of the column definition for a more detailed description.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 49.2K bytes
    - Viewed (0)
  7. src/time/time_test.go

    		case err == nil || err.Error() != want:
    			t.Errorf("(%v).MarshalText() error = %v, want %v", tt.time, err, want)
    		}
    	}
    }
    
    var parseDurationTests = []struct {
    	in   string
    	want Duration
    }{
    	// simple
    	{"0", 0},
    	{"5s", 5 * Second},
    	{"30s", 30 * Second},
    	{"1478s", 1478 * Second},
    	// sign
    	{"-5s", -5 * Second},
    	{"+5s", 5 * Second},
    	{"-0", 0},
    	{"+0", 0},
    	// decimal
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  8. src/time/time.go

    //
    // The zero value of type Time is January 1, year 1, 00:00:00.000000000 UTC.
    // As this time is unlikely to come up in practice, the [Time.IsZero] method gives
    // a simple way of detecting a time that has not been initialized explicitly.
    //
    // Each time has an associated [Location]. The methods [Time.Local], [Time.UTC], and Time.In return a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  9. pkg/proxy/endpointschangetracker_test.go

    		paramRemoveSlice       bool
    		expectedReturnVal      bool
    		expectedCurrentChange  map[ServicePortName][]*BaseEndpointInfo
    	}{
    		// test starting from an empty state
    		"add a simple slice that doesn't already exist": {
    			startingSlices:         []*discovery.EndpointSlice{},
    			endpointsChangeTracker: NewEndpointsChangeTracker("host1", nil, v1.IPv4Protocol, nil, nil),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 21 14:44:08 UTC 2023
    - 79.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    	switch {
    	case len(s) == 0:
    		allErrs = append(allErrs, field.Invalid(fldPath, s, "must not be empty"))
    	case s[0] != '.':
    		allErrs = append(allErrs, field.Invalid(fldPath, s, "must be a simple json path starting with ."))
    	case s != ".":
    		if cs := strings.Split(s[1:], "."); len(cs) < 1 {
    			allErrs = append(allErrs, field.Invalid(fldPath, s, "must be a json path in the dot notation"))
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
Back to top