Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 146 for slug (0.06 sec)

  1. src/log/slog/json_handler.go

    // Copyright 2022 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package slog
    
    import (
    	"bytes"
    	"context"
    	"encoding/json"
    	"errors"
    	"fmt"
    	"io"
    	"log/slog/internal/buffer"
    	"strconv"
    	"sync"
    	"time"
    	"unicode/utf8"
    )
    
    // JSONHandler is a [Handler] that writes Records to an [io.Writer] as
    // line-delimited JSON objects.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 16:18:11 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  2. docs/fr/docs/alternatives.md

    Marshmallow et Webargs fournissent la validation, l'analyse et la sérialisation en tant que plug-ins.
    
    Mais la documentation fait toujours défaut. C'est alors qu'APISpec a été créé.
    
    Il s'agit d'un plug-in pour de nombreux frameworks (et il existe également un plug-in pour Starlette).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  3. plugin/pkg/admission/network/denyserviceexternalips/admission.go

    	return &externalIPsDenierPlugin{
    		Handler: admission.NewHandler(admission.Create, admission.Update),
    	}
    }
    
    // Admit ensures that modifications of the Service.Spec.ExternalIPs field are
    // denied
    func (plug *externalIPsDenierPlugin) Validate(ctx context.Context, attr admission.Attributes, o admission.ObjectInterfaces) error {
    	if attr.GetResource().GroupResource() != core.Resource("services") {
    		return nil
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 29 18:00:11 UTC 2020
    - 3.2K bytes
    - Viewed (0)
  4. src/log/slog/attr.go

    // Copyright 2022 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package slog
    
    import (
    	"time"
    )
    
    // An Attr is a key-value pair.
    type Attr struct {
    	Key   string
    	Value Value
    }
    
    // String returns an Attr for a string value.
    func String(key, value string) Attr {
    	return Attr{key, StringValue(value)}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 18:23:25 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  5. pkg/istio-agent/plugins.go

    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/security"
    	citadel "istio.io/istio/security/pkg/nodeagent/caclient/providers/citadel"
    )
    
    // WARNING WARNING WARNING
    // These interfaces must be stable to allow vendors plug custom CAs.
    
    type RootCertProvider interface {
    	GetKeyCertsForCA() (string, string)
    	FindRootCAForCA() (string, error)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat May 11 03:32:57 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/examples/stateful/stateful.go

    	executionPoints []string
    	mu              sync.RWMutex
    }
    
    var _ framework.ReservePlugin = &MultipointExample{}
    var _ framework.PreBindPlugin = &MultipointExample{}
    
    // Name is the name of the plug used in Registry and configurations.
    const Name = "multipoint-plugin-example"
    
    // Name returns name of the plugin. It is used in logs, etc.
    func (mp *MultipointExample) Name() string {
    	return Name
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 09 03:43:17 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  7. api/go1.22.txt

    pkg go/version, func Lang(string) string #62039
    pkg html/template, const ErrJSTemplate //deprecated #61619
    pkg io, method (*SectionReader) Outer() (ReaderAt, int64, int64) #61870
    pkg log/slog, func SetLogLoggerLevel(Level) Level #62418
    pkg math/big, method (*Rat) FloatPrec() (int, bool) #50489
    pkg math/rand/v2, func ExpFloat64() float64 #61716
    pkg math/rand/v2, func Float32() float32 #61716
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 20:54:27 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  8. docs/tr/docs/history-design-future.md

    Geçmişte oluşturulan pek çok araç **FastAPI**'a ilham kaynağı olmuştur.
    
    Yıllardır yeni bir framework oluşturmaktan kaçınıyordum. Başlangıçta **FastAPI**'ın çözdüğü sorunları çözebilmek için pek çok farklı framework, <abbr title="Eklenti: Plug-In">eklenti</abbr> ve araç kullanmayı denedim.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  9. pkg/log/options.go

    	})
    }
    
    // Extension provides an extension mechanism for logs.
    // This is essentially like https://pkg.go.dev/golang.org/x/exp/slog#Handler.
    // This interface should be considered unstable; we will likely swap it for slog in the future and not expose zap internals.
    // Returns a modified Core interface, and a Close() function.
    type Extension func(c zapcore.Core) (zapcore.Core, func() error, error)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 04:04:34 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  10. src/cmd/vet/doc.go

    	printf           check consistency of Printf format strings and arguments
    	shift            check for shifts that equal or exceed the width of the integer
    	sigchanyzer      check for unbuffered channel of os.Signal
    	slog             check for invalid structured logging calls
    	stdmethods       check signature of methods of well-known interfaces
    	stringintconv    check for string(int) conversions
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 00:17:30 UTC 2023
    - 3.8K bytes
    - Viewed (0)
Back to top