Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 35 for experts (0.18 sec)

  1. pkg/kubelet/eviction/eviction_manager_test.go

    	}
    
    	// new memory threshold notifier that returns an error
    	thresholdNotifier = NewMockThresholdNotifier(mockCtrl)
    	thresholdNotifier.EXPECT().UpdateThreshold(summaryProvider.result).Return(fmt.Errorf("error updating threshold")).Times(1)
    	thresholdNotifier.EXPECT().Description().Return("mock thresholdNotifier").Times(1)
    	manager.thresholdNotifiers = []ThresholdNotifier{thresholdNotifier}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  2. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    eus
    
    // events : 2013-12-05 Binky Moon, LLC
    events
    
    // exchange : 2014-03-06 Binky Moon, LLC
    exchange
    
    // expert : 2013-11-21 Binky Moon, LLC
    expert
    
    // exposed : 2013-12-05 Binky Moon, LLC
    exposed
    
    // express : 2015-02-11 Binky Moon, LLC
    express
    
    // extraspace : 2015-05-14 Extra Space Storage LLC
    extraspace
    
    // fage : 2014-12-18 Fage International S.A.
    fage
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

        return op.emitOpError() << "expects window_stride to be a vector";
    
      const ShapedType &padding_ty = padding_attr.getType();
      if (padding_ty.getRank() != 2 || padding_ty.getDimSize(1) != 2)
        return op.emitOpError()
               << "expects padding to be a matrix with minor dimension 2";
    
      if (lhs_dilation_attr.getType().getRank() != 1)
        return op.emitOpError() << "expects lhs_dilation to be a vecotr";
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/tf-ops.mlir

    func.func @testCaseRegionNoRegions(%arg0: tensor<i32>) {
      // expected-error @+1 {{expects to have at least 1 region}}
      "tf.CaseRegion"(%arg0) {is_stateless = false} : (tensor<i32>) -> ()
      func.return
    }
    
    // -----
    
    func.func @testCaseRegionBadBranchIndicesShape(%arg0: tensor<8xi32>) {
      // expected-error @+1 {{expects 'branch_index' to be a scalar, but got 'tensor<8xi32>'}}
      "tf.CaseRegion"(%arg0) ({
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 23 14:40:35 UTC 2023
    - 236.4K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    	"syscall"
    	"unsafe"
    )
    
    // NTStatus corresponds with NTSTATUS, error values returned by ntdll.dll and
    // other native functions.
    type NTStatus uint32
    
    const (
    	// Invented values to support what package os expects.
    	O_RDONLY   = 0x00000
    	O_WRONLY   = 0x00001
    	O_RDWR     = 0x00002
    	O_CREAT    = 0x00040
    	O_EXCL     = 0x00080
    	O_NOCTTY   = 0x00100
    	O_TRUNC    = 0x00200
    	O_NONBLOCK = 0x00800
    	O_APPEND   = 0x00400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

    LogicalResult EmptyTensorListOp::verify() {
      EmptyTensorListOp op = *this;
      // This is required to populate derived attributes during export in a
      // meaningful way. Else during export to GraphDef element_type() query
      // will result in out of bounds access/assert.
      if (handle_dtype().getSubtypes().size() != 1) {
        return emitOpError(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  7. tests/integration/pilot/common/routing.go

    		),
    		children: []TrafficCall{},
    	}
    	expects = []struct {
    		port int
    		alpn string
    	}{
    		{8888, "http/1.1"},
    		// Note: here we expect HTTP/1.1, because the 443 port is not configured to be HTTP2!
    		{8882, "http/1.1"},
    	}
    	for _, c := range t.Apps.A {
    		for _, e := range expects {
    			c := c
    			e := e
    
    			tc.children = append(tc.children, TrafficCall{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  8. cmd/bucket-replication.go

    		sc = objInfo.StorageClass
    	}
    	putOpts = minio.PutObjectOptions{
    		UserMetadata:    meta,
    		ContentType:     objInfo.ContentType,
    		ContentEncoding: objInfo.ContentEncoding,
    		Expires:         objInfo.Expires,
    		StorageClass:    sc,
    		Internal: minio.AdvancedPutOptions{
    			SourceVersionID:    objInfo.VersionID,
    			ReplicationStatus:  minio.ReplicationStatusReplica,
    			SourceMTime:        objInfo.ModTime,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  9. cmd/object-handlers.go

    	"github.com/valyala/bytebufferpool"
    )
    
    // supportedHeadGetReqParams - supported request parameters for GET and HEAD presigned request.
    var supportedHeadGetReqParams = map[string]string{
    	"response-expires":             xhttp.Expires,
    	"response-content-type":        xhttp.ContentType,
    	"response-cache-control":       xhttp.CacheControl,
    	"response-content-encoding":    xhttp.ContentEncoding,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  10. doc/go1.17_spec.html

    q.x          // (*(*q).T0).x        (*q).x is a valid field selector
    
    p.M0()       // ((*p).T0).M0()      M0 expects *T0 receiver
    p.M1()       // ((*p).T1).M1()      M1 expects T1 receiver
    p.M2()       // p.M2()              M2 expects *T2 receiver
    t.M2()       // (&amp;t).M2()           M2 expects *T2 receiver, see section on Calls
    </pre>
    
    <p>
    but the following is invalid:
    </p>
    
    <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)
Back to top