content
stringlengths
263
5.24M
pred_label
stringclasses
1 value
pred_score_pos
float64
0.6
1
namespace Polly.Specs.Helpers; public static class PolicyExtensions { public class ExceptionAndOrCancellationScenario { public int NumberOfTimesToRaiseException; public int? AttemptDuringWhichToCancel; public bool ActionObservesCancellation = true; } public static void RaiseEx...
__label__POS
0.896714
namespace Polly.Specs.Helpers; public static class ContextualPolicyTResultExtensionsAsync { public static Task<TResult> RaiseResultSequenceAsync<TResult>( this AsyncPolicy<TResult> policy, IDictionary<string, object> contextData, params TResult[] resultsToRaise) => policy.RaiseResu...
__label__POS
0.96872
package io.apptik.comm.jus.okhttp3; import org.junit.Rule; import org.junit.Test; import java.io.IOException; import io.apptik.comm.jus.Request; import io.apptik.comm.jus.toolbox.ByteArrayPool; import okhttp3.mockwebserver.MockResponse; import okhttp3.mockwebserver.MockWebServer; import static org.mockito.Mockito....
__label__POS
0.905066
package io.apptik.comm.jus.okhttp3; import java.io.IOException; import io.apptik.comm.jus.Request; import okhttp3.Interceptor; import okhttp3.Response; public abstract class AbstractMarkerInterceptor implements Interceptor { public static final String OKHTTP3_INTERCEPT = "okhttp3-intercept"; public static fi...
__label__POS
0.9921
package io.apptik.comm.jus; import org.json.JSONArray; import org.json.JSONObject; import org.junit.Test; import org.junit.runner.RunWith; import org.robolectric.RobolectricGradleTestRunner; import org.robolectric.annotation.Config; import io.apptik.comm.jus.converter.JSONConverter; import io.apptik.comm.jus.http.HTT...
__label__POS
0.776783
namespace Polly.Specs.Helpers.RateLimit; internal static class IRateLimiterExtensions { public static void ShouldPermitAnExecution(this IRateLimiter rateLimiter) { (bool PermitExecution, TimeSpan RetryAfter) canExecute = rateLimiter.PermitExecution(); canExecute.PermitExecution.ShouldBeTrue()...
__label__POS
0.924664
To use Appwrite with React, follow these steps: 1. **Set Up Your Environment:** - Ensure you have a recent version of [Node.js](https://nodejs.org/en/download/) installed. - Have a basic understanding of React and Next.js. 2. **Create a React Project:** - You can create a new React project using Vite with th...
__label__POS
0.913705
I don't have the specific details for the PHP SDK, but I can provide you with the general endpoints available for the Avatars API in Appwrite. The Avatars API typically includes the following endpoints: 1. **GET /avatars/credit-card**: Generate a credit card icon. 2. **GET /avatars/favicon**: Fetch a website's favicon...
__label__POS
0.64359
To set up database collections and documents in Appwrite, you can follow these steps: ### Step 1: Create a Collection 1. **Navigate to the Appwrite Console**: Go to [Appwrite Console](https://cloud.appwrite.io/). 2. **Create a New Collection**: - Go to the Databases section and create a new collection. - Defin...
__label__POS
0.793074
To host a simple static website with Appwrite, you can follow these steps: 1. **Create an Account and Project**: If you haven't already, create an account on Appwrite and create your first project. 2. **Add a Platform**: In your project, go to **Add a platform** and add a **Web app**. Set the **Hostname** to `localho...
__label__POS
0.987855
// Copyright 2013 Square, Inc. package io.apptik.comm.jus.retro; import org.junit.Test; import java.util.Set; import static org.assertj.core.api.Assertions.assertThat; public final class RequestFactoryParserTest { @Test public void pathParameterParsing() throws Exception { expectParams("/"); expectParam...
__label__POS
0.785586
namespace Polly.Utils; #pragma warning disable CA1716 // Identifiers should not match keywords internal abstract partial class CancellationTokenSourcePool { public static CancellationTokenSourcePool Create(TimeProvider timeProvider) { #if NET8_0_OR_GREATER if (timeProvider == TimeProvider.System) ...
__label__POS
0.748401
using Polly.Telemetry; namespace Polly.Utils.Pipeline; internal static class PipelineComponentFactory { public static PipelineComponent FromPipeline(ResiliencePipeline pipeline) => new ExternalComponent(pipeline.Component); public static PipelineComponent FromPipeline<T>(ResiliencePipeline<T> pipeline) => n...
__label__POS
0.996371
<?php use Appwrite\Utopia\View; ?> <p> Appwrite Functions unlock limitless potential for developers to extend Appwrite with code snippets. Appwrite Functions are user-defined functions that can start small and scale big, deploying automatically from source control. These Functions can be triggered by HT...
__label__POS
0.622916
<?php $layout = $this->getParam('layout', 'xxl'); $sdk = $this->getParam('sdk', ''); $family = $this->getParam('family', ''); $title = $this->getParam('title', ''); $subtitle = $this->getParam('subtitle', ''); $clientSDK = ($family === APP_PLATFORM_CLIENT && !empty($sdk)) ? '?sdk=' . $sdk : ...
__label__POS
0.758898
<?php $platforms = $this->getParam('platforms', []); $markdown = new \Parsedown(); $markdown->setSafeMode(true); ?> <p>We provide libraries for major programming languages and platforms so you don't have to write code for interacting with our HTTP APIs from scratch.</p> <p>Our team is always working on improving an...
__label__POS
0.928308
package io.appwrite.enums import com.google.gson.annotations.SerializedName enum class CreditCard(val value: String) { @SerializedName("amex") AMERICAN_EXPRESS("amex"), @SerializedName("argencard") ARGENCARD("argencard"), @SerializedName("cabal") CABAL("cabal"), @SerializedName("cencosud")...
__label__POS
0.922642
package io.appwrite.enums import com.google.gson.annotations.SerializedName enum class OAuthProvider(val value: String) { @SerializedName("amazon") AMAZON("amazon"), @SerializedName("apple") APPLE("apple"), @SerializedName("auth0") AUTH0("auth0"), @SerializedName("authentik") AUTHENTIK...
__label__POS
0.78015
const os = require('os'); const fs = require("fs"); const _path = require("path"); const process = require("process"); const JSONbig = require("json-bigint")({ storeAsString: false }); const KeysVars = new Set(["key", "value"]); const KeysSite = new Set(["path", "$id", "name", "enabled", "logging", "timeout", "framewo...
__label__POS
0.775477
/** * Helper class to generate role strings for `Permission`. */ export class Role { /** * Grants access to anyone. * * This includes authenticated and unauthenticated users. * * @returns {string} */ public static any(): string { return 'any' } /** * Gran...
__label__POS
0.912114
/// Appwrite Models library appwrite.models; import 'enums.dart' as enums; part 'src/models/model.dart'; part 'src/models/row_list.dart'; part 'src/models/document_list.dart'; part 'src/models/session_list.dart'; part 'src/models/identity_list.dart'; part 'src/models/log_list.dart'; part 'src/models/file_list.dart'; ...
__label__POS
1.00001
/// Appwrite Enums library dart_appwrite.enums; part 'src/enums/authenticator_type.dart'; part 'src/enums/authentication_factor.dart'; part 'src/enums/o_auth_provider.dart'; part 'src/enums/browser.dart'; part 'src/enums/credit_card.dart'; part 'src/enums/flag.dart'; part 'src/enums/relationship_type.dart'; part 'src/...
__label__POS
1.00001
using System.Collections; using System.Collections.Generic; using System.Linq; using System.Text.Json; using System.Text.Json.Serialization; namespace Appwrite { public class Query { [JsonPropertyName("method")] public string Method { get; set; } = string.Empty; [JsonPropertyN...
__label__POS
0.660022
using System; namespace Appwrite { public static class ID { // Generate an hex ID based on timestamp // Recreated from https://www.php.net/manual/en/function.uniqid.php private static string HexTimestamp() { var now = DateTime.UtcNow; var epoch = (now - n...
__label__POS
0.659143
/// Appwrite Models library dart_appwrite.models; import 'enums.dart' as enums; part 'src/models/model.dart'; part 'src/models/row_list.dart'; part 'src/models/document_list.dart'; part 'src/models/table_list.dart'; part 'src/models/collection_list.dart'; part 'src/models/database_list.dart'; part 'src/models/index_l...
__label__POS
1.00001
using System; namespace Appwrite.Enums { public class CreditCard : IEnum { public string Value { get; private set; } public CreditCard(string value) { Value = value; } public static CreditCard AmericanExpress => new CreditCard("amex"); public static...
__label__POS
0.99837
using System; namespace Appwrite.Enums { public class Runtime : IEnum { public string Value { get; private set; } public Runtime(string value) { Value = value; } public static Runtime Node145 => new Runtime("node-14.5"); public static Runtime Node16...
__label__POS
0.99888
using System; namespace Appwrite.Enums { public class PasswordHash : IEnum { public string Value { get; private set; } public PasswordHash(string value) { Value = value; } public static PasswordHash Sha1 => new PasswordHash("sha1"); public static Pa...
__label__POS
0.998085
using System; namespace Appwrite.Enums { public class Browser : IEnum { public string Value { get; private set; } public Browser(string value) { Value = value; } public static Browser AvantBrowser => new Browser("aa"); public static Browser AndroidW...
__label__POS
0.998386
using System; namespace Appwrite.Enums { public class OAuthProvider : IEnum { public string Value { get; private set; } public OAuthProvider(string value) { Value = value; } public static OAuthProvider Amazon => new OAuthProvider("amazon"); public s...
__label__POS
0.9989
using System; namespace Appwrite.Enums { public class BuildRuntime : IEnum { public string Value { get; private set; } public BuildRuntime(string value) { Value = value; } public static BuildRuntime Node145 => new BuildRuntime("node-14.5"); public s...
__label__POS
0.999355
using System; namespace Appwrite.Enums { public class Name : IEnum { public string Value { get; private set; } public Name(string value) { Value = value; } public static Name V1Database => new Name("v1-database"); public static Name V1Deletes => new...
__label__POS
0.999759
using System; namespace Appwrite.Enums { public class Flag : IEnum { public string Value { get; private set; } public Flag(string value) { Value = value; } public static Flag Afghanistan => new Flag("af"); public static Flag Angola => new Flag("ao")...
__label__POS
0.99744
import Foundation enum QueryValue: Codable { case string(String) case int(Int) case double(Double) case bool(Bool) case query(Query) case array([QueryValue]) // for nested arrays init(from decoder: Decoder) throws { let container = try decoder.singleValueContainer() if l...
__label__POS
0.886766
using System; namespace Appwrite.Enums { public class Framework : IEnum { public string Value { get; private set; } public Framework(string value) { Value = value; } public static Framework Analog => new Framework("analog"); public static Framework ...
__label__POS
0.992428
using System; using System.Linq; using System.Collections.Generic; using System.Text.Json; using System.Text.Json.Serialization; using Appwrite.Enums; namespace Appwrite.Models { public class ExecutionList { [JsonPropertyName("total")] public long Total { get; private set; } [JsonProp...
__label__POS
0.960187
using System; using System.Linq; using System.Collections.Generic; using System.Text.Json; using System.Text.Json.Serialization; using Appwrite.Enums; namespace Appwrite.Models { public class FrameworkList { [JsonPropertyName("total")] public long Total { get; private set; } [JsonProp...
__label__POS
0.951171
using System; using System.Linq; using System.Collections.Generic; using System.Text.Json; using System.Text.Json.Serialization; using Appwrite.Enums; namespace Appwrite.Models { public class ResourceToken { [JsonPropertyName("$id")] public string Id { get; private set; } [JsonPropert...
__label__POS
0.684769
using System; using System.Linq; using System.Collections.Generic; using System.Text.Json; using System.Text.Json.Serialization; using Appwrite.Enums; namespace Appwrite.Models { public class MessageList { [JsonPropertyName("total")] public long Total { get; private set; } [JsonProper...
__label__POS
0.942785
using System; using System.Linq; using System.Collections.Generic; using System.Text.Json; using System.Text.Json.Serialization; using Appwrite.Enums; namespace Appwrite.Models { public class SessionList { [JsonPropertyName("total")] public long Total { get; private set; } [JsonProper...
__label__POS
0.951111
using System; using System.Linq; using System.Collections.Generic; using System.Text.Json; using System.Text.Json.Serialization; using Appwrite.Enums; namespace Appwrite.Models { public class TransactionList { [JsonPropertyName("total")] public long Total { get; private set; } [JsonPr...
__label__POS
0.957069
import 'package:dart_appwrite/models.dart'; import 'package:test/test.dart'; void main() { group('Identity', () { test('model', () { final model = Identity( $id: '5e5ea5c16897e', $createdAt: '2020-10-15T06:38:00.000+00:00', $updatedAt: '2020-10-15T06:38:00.000+00:00', userId...
__label__POS
0.665122
import 'package:dart_appwrite/models.dart'; import 'package:test/test.dart'; void main() { group('ResourceToken', () { test('model', () { final model = ResourceToken( $id: 'bb8ea5c16897e', $createdAt: '2020-10-15T06:38:00.000+00:00', resourceId: '5e5ea5c168bb8:5e5ea5c168bb8', ...
__label__POS
0.619751
using System; using System.Linq; using System.Collections.Generic; using System.Text.Json; using System.Text.Json.Serialization; using Appwrite.Enums; namespace Appwrite.Models { public class AlgoScrypt { [JsonPropertyName("type")] public string Type { get; private set; } [JsonPropert...
__label__POS
0.913621
using System; using System.Linq; using System.Collections.Generic; using System.Text.Json; using System.Text.Json.Serialization; using Appwrite.Enums; namespace Appwrite.Models { public class AlgoScryptModified { [JsonPropertyName("type")] public string Type { get; private set; } [Jso...
__label__POS
0.820438
part of '../../enums.dart'; enum OAuthProvider { amazon(value: 'amazon'), apple(value: 'apple'), auth0(value: 'auth0'), authentik(value: 'authentik'), autodesk(value: 'autodesk'), bitbucket(value: 'bitbucket'), bitly(value: 'bitly'), box(value: 'box'), dailymotion(value: 'dailymotion'), discord(val...
__label__POS
0.777053
using System; using System.Linq; using System.Collections.Generic; using System.Text.Json; using System.Text.Json.Serialization; using Appwrite.Enums; namespace Appwrite.Models { public class Phone { [JsonPropertyName("code")] public string Code { get; private set; } [JsonPropertyName...
__label__POS
0.921665
using System; using System.Linq; using System.Collections.Generic; using System.Text.Json; using System.Text.Json.Serialization; using Appwrite.Enums; namespace Appwrite.Models { public class ResourceTokenList { [JsonPropertyName("total")] public long Total { get; private set; } [Json...
__label__POS
0.927954
using System; using System.Linq; using System.Collections.Generic; using System.Text.Json; using System.Text.Json.Serialization; using Appwrite.Enums; namespace Appwrite.Models { public class Specification { [JsonPropertyName("memory")] public long Memory { get; private set; } [JsonPr...
__label__POS
0.749742
using System; using System.Linq; using System.Collections.Generic; using System.Text.Json; using System.Text.Json.Serialization; using Appwrite.Enums; namespace Appwrite.Models { public class ColumnIndexList { [JsonPropertyName("total")] public long Total { get; private set; } [JsonPr...
__label__POS
0.947056
using System; using System.Linq; using System.Collections.Generic; using System.Text.Json; using System.Text.Json.Serialization; using Appwrite.Enums; namespace Appwrite.Models { public class MembershipList { [JsonPropertyName("total")] public long Total { get; private set; } [JsonPro...
__label__POS
0.960421
using System; using System.Linq; using System.Collections.Generic; using System.Text.Json; using System.Text.Json.Serialization; using Appwrite.Enums; namespace Appwrite.Models { public class Team { [JsonPropertyName("$id")] public string Id { get; private set; } [JsonPropertyName("$c...
__label__POS
0.7778
using System; using System.Linq; using System.Collections.Generic; using System.Text.Json; using System.Text.Json.Serialization; using Appwrite.Enums; namespace Appwrite.Models { public class CountryList { [JsonPropertyName("total")] public long Total { get; private set; } [JsonProper...
__label__POS
0.953305
using System; using System.Linq; using System.Collections.Generic; using System.Text.Json; using System.Text.Json.Serialization; using Appwrite.Enums; namespace Appwrite.Models { public class Token { [JsonPropertyName("$id")] public string Id { get; private set; } [JsonPropertyName("$...
__label__POS
0.688732
using System; using System.Linq; using System.Collections.Generic; using System.Text.Json; using System.Text.Json.Serialization; using Appwrite.Enums; namespace Appwrite.Models { public class CurrencyList { [JsonPropertyName("total")] public long Total { get; private set; } [JsonPrope...
__label__POS
0.953618
using System; using System.Linq; using System.Collections.Generic; using System.Text.Json; using System.Text.Json.Serialization; using Appwrite.Enums; namespace Appwrite.Models { public class Currency { [JsonPropertyName("symbol")] public string Symbol { get; private set; } [JsonPrope...
__label__POS
0.675357
using System; using System.Linq; using System.Collections.Generic; using System.Text.Json; using System.Text.Json.Serialization; using Appwrite.Enums; namespace Appwrite.Models { public class LocaleCodeList { [JsonPropertyName("total")] public long Total { get; private set; } [JsonPro...
__label__POS
0.964803
import Foundation fileprivate let DEFAULT_MIME_TYPE = "application/octet-stream" fileprivate let mimeTypes = [ "md": "text/markdown", "html": "text/html", "htm": "text/html", "shtml": "text/html", "css": "text/css", "xml": "text/xml", "gif": "image/gif", "jpeg": "image/jpeg", "jpg"...
__label__POS
0.715934
using System; using System.Linq; using System.Collections.Generic; using System.Text.Json; using System.Text.Json.Serialization; using Appwrite.Enums; namespace Appwrite.Models { public class DocumentList { [JsonPropertyName("total")] public long Total { get; private set; } [JsonPrope...
__label__POS
0.94296
using System; using System.Linq; using System.Collections.Generic; using System.Text.Json; using System.Text.Json.Serialization; using Appwrite.Enums; namespace Appwrite.Models { public class IdentityList { [JsonPropertyName("total")] public long Total { get; private set; } [JsonPrope...
__label__POS
0.954665
using System; using System.Linq; using System.Collections.Generic; using System.Text.Json; using System.Text.Json.Serialization; using Appwrite.Enums; namespace Appwrite.Models { public class TeamList { [JsonPropertyName("total")] public long Total { get; private set; } [JsonPropertyN...
__label__POS
0.95016
using System; using System.Linq; using System.Collections.Generic; using System.Text.Json; using System.Text.Json.Serialization; using Appwrite.Enums; namespace Appwrite.Models { public class CollectionList { [JsonPropertyName("total")] public long Total { get; private set; } [JsonPro...
__label__POS
0.978337
using System; using System.Linq; using System.Collections.Generic; using System.Text.Json; using System.Text.Json.Serialization; using Appwrite.Enums; namespace Appwrite.Models { public class FunctionList { [JsonPropertyName("total")] public long Total { get; private set; } [JsonPrope...
__label__POS
0.90672
using System.IO; using Appwrite.Extensions; namespace Appwrite.Models { public class InputFile { public string Path { get; set; } = string.Empty; public string Filename { get; set; } = string.Empty; public string MimeType { get; set; } = string.Empty; public string SourceType { ...
__label__POS
0.627653
using PollyDemos.OutputHelpers; namespace PollyDemos.Helpers; public abstract class DemoBase { protected int TotalRequests; protected int EventualSuccesses; protected int EventualFailures; protected int Retries; // In the case of WPF the stdIn is redirected. protected static bool ShouldTermin...
__label__POS
0.698675
part of '../../enums.dart'; enum BuildRuntime { node145(value: 'node-14.5'), node160(value: 'node-16.0'), node180(value: 'node-18.0'), node190(value: 'node-19.0'), node200(value: 'node-20.0'), node210(value: 'node-21.0'), node22(value: 'node-22'), php80(value: 'php-8.0'), php81(value: 'php-8.1'), p...
__label__POS
0.767422
namespace PollyDemos.Helpers; public abstract class ConcurrencyLimiterDemoBase : DemoBase { // Track the number of 'good' and 'faulting' requests made, succeeded and failed. // At any time, requests pending = made - succeeded - failed. protected int GoodRequestsMade; protected int GoodRequestsSucceeded...
__label__POS
0.888524
using System; using System.Linq; using System.Collections.Generic; using System.Text.Json; using System.Text.Json.Serialization; using Appwrite.Enums; namespace Appwrite.Models { public class Transaction { [JsonPropertyName("$id")] public string Id { get; private set; } [JsonPropertyN...
__label__POS
0.722295
using System; using System.Linq; using System.Collections.Generic; using System.Text.Json; using System.Text.Json.Serialization; using Appwrite.Enums; namespace Appwrite.Models { public class VariableList { [JsonPropertyName("total")] public long Total { get; private set; } [JsonPrope...
__label__POS
0.955584
using System; using System.Linq; using System.Collections.Generic; using System.Text.Json; using System.Text.Json.Serialization; using Appwrite.Enums; namespace Appwrite.Models { public class RuntimeList { [JsonPropertyName("total")] public long Total { get; private set; } [JsonProper...
__label__POS
0.954846
using System; using System.Linq; using System.Collections.Generic; using System.Text.Json; using System.Text.Json.Serialization; using Appwrite.Enums; namespace Appwrite.Models { public class SiteList { [JsonPropertyName("total")] public long Total { get; private set; } [JsonPropertyN...
__label__POS
0.952104
using System; using System.Linq; using System.Collections.Generic; using System.Text.Json; using System.Text.Json.Serialization; using Appwrite.Enums; namespace Appwrite.Models { public class TargetList { [JsonPropertyName("total")] public long Total { get; private set; } [JsonPropert...
__label__POS
0.956329
using System; using System.Linq; using System.Collections.Generic; using System.Text.Json; using System.Text.Json.Serialization; using Appwrite.Enums; namespace Appwrite.Models { public class IndexList { [JsonPropertyName("total")] public long Total { get; private set; } [JsonProperty...
__label__POS
0.944204
package query import ( "encoding/json" ) func toArray(val interface{}) []interface{} { switch v := val.(type) { case nil: return nil case []interface{}: return v default: return []interface{}{val} } } type queryOptions struct { Method string Attribute *string Values *[]interface{} } func parseQ...
__label__POS
0.915877
using System; using System.Linq; using System.Collections.Generic; using System.Text.Json; using System.Text.Json.Serialization; using Appwrite.Enums; namespace Appwrite.Models { public class HealthTime { [JsonPropertyName("remoteTime")] public long RemoteTime { get; private set; } [J...
__label__POS
0.978058
part of '../../enums.dart'; enum Runtime { node145(value: 'node-14.5'), node160(value: 'node-16.0'), node180(value: 'node-18.0'), node190(value: 'node-19.0'), node200(value: 'node-20.0'), node210(value: 'node-21.0'), node22(value: 'node-22'), php80(value: 'php-8.0'), php81(value: 'php-8.1'), php82(...
__label__POS
0.763233
part of '../../enums.dart'; enum OAuthProvider { amazon(value: 'amazon'), apple(value: 'apple'), auth0(value: 'auth0'), authentik(value: 'authentik'), autodesk(value: 'autodesk'), bitbucket(value: 'bitbucket'), bitly(value: 'bitly'), box(value: 'box'), dailymotion(value: 'dailymotion'), discord(val...
__label__POS
0.777053
using System; using System.Linq; using System.Collections.Generic; using System.Text.Json; using System.Text.Json.Serialization; using Appwrite.Enums; namespace Appwrite.Models { public class RowList { [JsonPropertyName("total")] public long Total { get; private set; } [JsonPropertyNa...
__label__POS
0.954777
using System; using System.Linq; using System.Collections.Generic; using System.Text.Json; using System.Text.Json.Serialization; using Appwrite.Enums; namespace Appwrite.Models { public class AlgoArgon2 { [JsonPropertyName("type")] public string Type { get; private set; } [JsonPropert...
__label__POS
0.915797
using System; using System.Linq; using System.Collections.Generic; using System.Text.Json; using System.Text.Json.Serialization; using Appwrite.Enums; namespace Appwrite.Models { public class Topic { [JsonPropertyName("$id")] public string Id { get; private set; } [JsonPropertyName("$...
__label__POS
0.76361
using System; using System.Linq; using System.Collections.Generic; using System.Text.Json; using System.Text.Json.Serialization; using Appwrite.Enums; namespace Appwrite.Models { public class LanguageList { [JsonPropertyName("total")] public long Total { get; private set; } [JsonPrope...
__label__POS
0.951808
using System; using System.Linq; using System.Collections.Generic; using System.Text.Json; using System.Text.Json.Serialization; using Appwrite.Enums; namespace Appwrite.Models { public class HealthStatus { [JsonPropertyName("name")] public string Name { get; private set; } [JsonPrope...
__label__POS
0.902952
using System; using System.Linq; using System.Collections.Generic; using System.Text.Json; using System.Text.Json.Serialization; using Appwrite.Enums; namespace Appwrite.Models { public class FileList { [JsonPropertyName("total")] public long Total { get; private set; } [JsonPropertyN...
__label__POS
0.929484
using System; using System.Linq; using System.Collections.Generic; using System.Text.Json; using System.Text.Json.Serialization; using Appwrite.Enums; namespace Appwrite.Models { public class UserList { [JsonPropertyName("total")] public long Total { get; private set; } [JsonPropertyN...
__label__POS
0.923541
using System; using System.Linq; using System.Collections.Generic; using System.Text.Json; using System.Text.Json.Serialization; using Appwrite.Enums; namespace Appwrite.Models { public class SubscriberList { [JsonPropertyName("total")] public long Total { get; private set; } [JsonPro...
__label__POS
0.958517
using System; using System.Linq; using System.Collections.Generic; using System.Text.Json; using System.Text.Json.Serialization; using Appwrite.Enums; namespace Appwrite.Models { public class DeploymentList { [JsonPropertyName("total")] public long Total { get; private set; } [JsonPro...
__label__POS
0.952699
using System; using System.Linq; using System.Collections.Generic; using System.Text.Json; using System.Text.Json.Serialization; using Appwrite.Enums; namespace Appwrite.Models { public class TableList { [JsonPropertyName("total")] public long Total { get; private set; } [JsonProperty...
__label__POS
0.976354
using System; using System.Linq; using System.Collections.Generic; using System.Text.Json; using System.Text.Json.Serialization; using Appwrite.Enums; namespace Appwrite.Models { public class LogList { [JsonPropertyName("total")] public long Total { get; private set; } [JsonPropertyNa...
__label__POS
0.955945
using System; using System.Linq; using System.Collections.Generic; using System.Text.Json; using System.Text.Json.Serialization; using Appwrite.Enums; namespace Appwrite.Models { public class BucketList { [JsonPropertyName("total")] public long Total { get; private set; } [JsonPropert...
__label__POS
0.950297
using Appwrite; using System; using System.Text.Json; using System.Text.Json.Serialization; using System.Threading.Tasks; namespace StorageCleaner { class Program { static async Task Main(string[] args) { var client = new Client(); client .SetEndPoint(Envi...
__label__POS
0.775258
using System; using System.Net.Http; using System.Threading.Tasks; using System.Text.Json; namespace GenerateGiphyGif { class Program { static async Task Main(string[] args) { var giphyApiKey = Environment.GetEnvironmentVariable("GIPHY_API_KEY"); var keyword = Environme...
__label__POS
0.66135
using System; using System.Linq; using System.Collections.Generic; using System.Text.Json; using System.Text.Json.Serialization; using Appwrite.Enums; namespace Appwrite.Models { public class TopicList { [JsonPropertyName("total")] public long Total { get; private set; } [JsonProperty...
__label__POS
0.95884
using System; using System.Linq; using System.Collections.Generic; using System.Text.Json; using System.Text.Json.Serialization; using Appwrite.Enums; namespace Appwrite.Models { public class SpecificationList { [JsonPropertyName("total")] public long Total { get; private set; } [Json...
__label__POS
0.955505
using System; using System.Linq; using System.Collections.Generic; using System.Text.Json; using System.Text.Json.Serialization; using Appwrite.Enums; namespace Appwrite.Models { public class HealthCertificate { [JsonPropertyName("name")] public string Name { get; private set; } [Json...
__label__POS
0.764669
using System; using System.Linq; using System.Collections.Generic; using System.Text.Json; using System.Text.Json.Serialization; using Appwrite.Enums; namespace Appwrite.Models { public class AttributeList { [JsonPropertyName("total")] public long Total { get; private set; } [JsonProp...
__label__POS
0.958918
using System; using Newtonsoft.Json; using Twilio; using Twilio.Rest.Api.V2010.Account; using Twilio.Types; namespace SendSMS { public class Program { public static void Main(string[] args) { try { string requestBody = Environment.GetEnvironmentVariable(...
__label__POS
0.955845
using System; using System.Linq; using System.Collections.Generic; using System.Text.Json; using System.Text.Json.Serialization; using Appwrite.Enums; namespace Appwrite.Models { public class ProviderList { [JsonPropertyName("total")] public long Total { get; private set; } [JsonPrope...
__label__POS
0.958444
using System; using System.Linq; using System.Collections.Generic; using System.Text.Json; using System.Text.Json.Serialization; using Appwrite.Enums; namespace Appwrite.Models { public class ContinentList { [JsonPropertyName("total")] public long Total { get; private set; } [JsonProp...
__label__POS
0.953946
using System; using System.Linq; using System.Collections.Generic; using System.Text.Json; using System.Text.Json.Serialization; using Appwrite.Enums; namespace Appwrite.Models { public class ColumnList { [JsonPropertyName("total")] public long Total { get; private set; } [JsonPropert...
__label__POS
0.974958
using SpeedTest; using SpeedTest.Models; using System; using System.Collections.Generic; using System.Diagnostics; using System.Linq; using System.Net; using System.Threading.Tasks; namespace GetInternetSpeed { class Program { private static SpeedTestClient client; private static Settings set...
__label__POS
0.903122