- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 331 for Kats (0.27 sec)
-
.mailmap
Leeseean Chiu <******@****.***> LiviaMedeiros <******@****.***> <******@****.***> Lucas Pardue <******@****.***> <******@****.***> Luke Bayes <******@****.***> Lydia Kats <******@****.***> Maciej Małecki <******@****.***> <******@****.***> Maël Nison <******@****.***> <******@****.***> MaleDong <******@****.***> <******@****.***>
Plain Text - Registered: 2023-03-14 21:40 - Last Modified: 2022-05-29 13:24 - 28.7K bytes - Viewed (2) -
internal/event/target/nats.go
EnvNATSEnable = "MINIO_NOTIFY_NATS_ENABLE" EnvNATSAddress = "MINIO_NOTIFY_NATS_ADDRESS" EnvNATSSubject = "MINIO_NOTIFY_NATS_SUBJECT" EnvNATSUsername = "MINIO_NOTIFY_NATS_USERNAME" EnvNATSPassword = "MINIO_NOTIFY_NATS_PASSWORD" EnvNATSToken = "MINIO_NOTIFY_NATS_TOKEN" EnvNATSTLS = "MINIO_NOTIFY_NATS_TLS" EnvNATSTLSSkipVerify = "MINIO_NOTIFY_NATS_TLS_SKIP_VERIFY"
Go - Registered: 2023-03-19 16:08 - Last Modified: 2022-11-11 20:42 - 12.1K bytes - Viewed (0) -
sample/12-graphql-schema-first/src/cats/cats.graphql
type Query { cats: [Cat] cat(id: ID!): Cat } type Mutation { createCat(createCatInput: CreateCatInput): Cat } type Subscription { catCreated: Cat } type Owner { id: Int! name: String! age: Int cats: [Cat!] } type Cat { id: Int name: String age: Int owner: Owner } """ Test comment """ input CreateCatInput { name: String age: Int
Plain Text - Registered: 2023-02-22 17:50 - Last Modified: 2021-09-24 10:53 - 364 bytes - Viewed (0) -
sample/12-graphql-schema-first/src/cats/cats.service.ts
@Injectable() export class CatsService { private readonly cats: Array<Cat & { ownerId?: number }> = [ { id: 1, name: 'Cat', age: 5, ownerId: 1 }, ]; create(cat: Cat): Cat { cat.id = this.cats.length + 1; this.cats.push(cat); return cat; } findAll(): Cat[] { return this.cats; } findOneById(id: number): Cat { return this.cats.find(cat => cat.id === id); }
Plain Text - Registered: 2023-02-22 17:50 - Last Modified: 2021-02-01 12:43 - 488 bytes - Viewed (0) -
sample/09-babel-example/src/cats/cats.service.js
import { Injectable } from '@nestjs/common'; @Injectable() export class CatsService { constructor() { this.cats = []; } create(cat) { this.cats.push(cat); } findAll() { return this.cats; }
JavaScript - Registered: 2023-03-08 17:50 - Last Modified: 2018-09-18 09:25 - 217 bytes - Viewed (0) -
sample/01-cats-app/src/cats/cats.service.ts
Plain Text - Registered: 2023-03-08 17:50 - Last Modified: 2018-03-25 19:38 - 275 bytes - Viewed (0) -
integration/graphql-schema-first/src/cats/cats.module.ts
import { DynamicModule, Module, Scope } from '@nestjs/common'; import { CatsRequestScopedService } from './cats-request-scoped.service'; import { CatsResolvers } from './cats.resolvers'; import { CatsService } from './cats.service'; @Module({ providers: [CatsService, CatsResolvers], }) export class CatsModule { static enableRequestScope(): DynamicModule { return { module: CatsModule, providers: [ {
Plain Text - Registered: 2023-03-15 17:50 - Last Modified: 2020-02-29 12:21 - 574 bytes - Viewed (0) -
sample/10-fastify/src/cats/cats.module.ts
import { Module } from '@nestjs/common'; import { CatsController } from './cats.controller'; import { CatsService } from './cats.service'; @Module({ controllers: [CatsController], providers: [CatsService], })
Plain Text - Registered: 2023-02-22 17:50 - Last Modified: 2018-03-25 21:28 - 241 bytes - Viewed (0) -
plugins/nats/nats.plugin.zsh
fi if (( $+commands[nats] )); then # If the completion file doesn't exist yet, we need to autoload it and # bind it to `nats`. Otherwise, compinit will have already done that. if [[ ! -f "$ZSH_CACHE_DIR/completions/_nats" ]]; then typeset -g -A _comps autoload -Uz _nats _comps[nats]=_nats fi nats --completion-script-zsh >| "$ZSH_CACHE_DIR/completions/_nats" &|
Plain Text - Registered: 2023-03-16 12:35 - Last Modified: 2023-01-17 12:18 - 756 bytes - Viewed (0) -
integration/graphql-schema-first/src/cats/cats.service.ts
@Injectable() export class CatsService { static COUNTER = 0; private readonly cats: Cat[] = [{ id: 1, name: 'Cat', age: 5 }]; constructor() { CatsService.COUNTER++; } create(cat: Cat): Cat { this.cats.push(cat); return cat; } findAll(): Cat[] { return this.cats; } findOneById(id: number): Cat { return this.cats.find(cat => cat.id === id); }
Plain Text - Registered: 2023-03-15 17:50 - Last Modified: 2020-02-29 12:21 - 485 bytes - Viewed (0)