This is a SCRIPT-8 cassette.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.example; | |
import lombok.AllArgsConstructor; | |
import lombok.Builder; | |
import lombok.Data; | |
import lombok.NoArgsConstructor; | |
@Data | |
@Builder | |
@NoArgsConstructor |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"swagger": "2.0", | |
"info": { | |
"title": "Account Aggregator API", | |
"x-custom-tags": { | |
"x-changelog": "<p>\n1. Updated /FI/Notification to support Partial Fetch Usecase<br>\n2. New Enums Added for FIStatus - READY / DENIED / PENDING / DELIVERED / TIMEOUT<br>\n3. Updated /FI/Fetch to support Query Params<br>\ni) /FI/Fetch/{SessionID} - All accounts & FIP in the session<br>\nii) /FI/Fetch/{SessionID}?fipid=fip1 - All Accounts with the FIP<br>\niii) /FI/Fetch/{SessionID}?fipid=fip1&linkRefNumber=123456985321 - Particular Account<br>\niv) /FI/Fetch/{SessionID}?fipid=fip1&linkRefNumber=123456985321&linkRefNumber=1236548972 - Multiple Accounts Same FIP<br>\nNote's: <br>\ni) fipid in Query Params is limited to only 1<br>\nii) All variations will give response containing accounts whose data has been delivered or not received. Such accounts would have encryptedFI and KeyMaterials empty<br>\n</p>", | |
"x-api-name": "Account Aggregator (AA) API" | |
}, | |
"description": "# Summary\n The Account Aggregator (AA) serv |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
LOCAL_PATH:= $(call my-dir) | |
include $(CLEAR_VARS) | |
LOCAL_SRC_FILES:= \ | |
gps_test.cpp | |
LOCAL_SHARED_LIBRARIES := \ | |
libcutils libhardware | |
LOCAL_MODULE:= test-gps |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
build --action_env PYTHON_BIN_PATH="/usr/local/opt/python@2/bin/python2.7" | |
# build --action_env PYTHON_LIB_PATH="/usr/local/Cellar/python/3.7.1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages" | |
build --python_path="/usr/local/opt/python@2/bin/python2.7" | |
build:xla --define with_xla_support=true | |
build --action_env TF_NEED_OPENCL_SYCL="0" | |
build --action_env TF_NEED_ROCM="0" | |
build --action_env TF_NEED_CUDA="0" | |
build --action_env TF_DOWNLOAD_CLANG="0" | |
build:opt --copt=-march=native | |
build:opt --copt=-Wno-sign-compare |
public class UpdateApp extends AsyncTask<String,Void,Void>{
private Context context;
public void setContext(Context contextf){
context = contextf;
}
@Override
protected Void doInBackground(String... arg0) {
try {
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"crypto/tls" | |
"crypto/x509" | |
"fmt" | |
"io" | |
"log" | |
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"bytes" | |
"code.google.com/p/go.crypto/openpgp" | |
"encoding/base64" | |
"io/ioutil" | |
"log" | |
"os" | |
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"fmt" | |
"log" | |
"os" | |
"strconv" | |
"github.com/Shelnutt2/db2struct" | |
"github.com/jinzhu/gorm" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mutation { | |
NewClass { | |
create(foo: "hello", bar: false, increment: 1) { | |
objectId, foo, bar, increment | |
} | |
} | |
} | |
mutation { | |
create(className: "NewClass", params: {foo: "Bar", bar: true, increment: 10}) { |
NewerOlder