Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 30 for experts (0.53 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. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

        // With
        //   %2 = "tfl.reshape"(%0, %shape1)
        rewriter.replaceOpWithNewOp<ReshapeOp>(
            op, thisOp.getType(), prevOp.getOperand(0), thisOp.getOperand(1));
      }
    };
    
    // The kernel expects an 1-D tensor for the shape operand if it presents. If all
    // the dimensions are '1's except the last dimension, it will be reshaped to a
    // 1-D tensor.
    // Note that this pattern doesn't check or change the content of the shape
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  10. cluster/gce/util.sh

              exit 2
          fi
          printf "."
          sleep 2
      done
    
      echo "Kubernetes cluster created."
    
      export KUBE_CERT="${CERT_DIR}/pki/issued/kubecfg.crt"
      export KUBE_KEY="${CERT_DIR}/pki/private/kubecfg.key"
      export CA_CERT="${CERT_DIR}/pki/ca.crt"
      export CONTEXT="${PROJECT}_${INSTANCE_PREFIX}"
      (
       umask 077
    
       # Update the user's kubeconfig to include credentials for this apiserver.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
Back to top