Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 27 of 27 for injectLabel (0.16 sec)

  1. pkg/proxy/ipvs/ipset/ipset.go

    	"strconv"
    	"strings"
    
    	"k8s.io/klog/v2"
    	utilexec "k8s.io/utils/exec"
    	netutils "k8s.io/utils/net"
    )
    
    var validationError = fmt.Errorf("failed to validate entry for ipset")
    
    // Interface is an injectable interface for running ipset commands.  Implementations must be goroutine-safe.
    type Interface interface {
    	// FlushSet deletes all entries from a named set.
    	FlushSet(set string) error
    	// DestroySet deletes a named set.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  2. pkg/config/analysis/msg/messages.yaml

            type: string
          - name: resourceName
            type: string
    
      - name: "NamespaceInjectionEnabledByDefault"
        code: IST0148
        level: Info
        description: "user namespace should be injectable if Istio is installed with enableNamespacesByDefault enabled and neither injection label is set."
        template: "is enabled for Istio injection, as Istio is installed with enableNamespacesByDefault as true."
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  3. docs/tr/docs/alternatives.md

    Angular 2'den ilham alan, içine gömülü bir <abbr title="Bağımlılık enjeksiyonu: Dependency Injection">bağımlılık enjeksiyonu</abbr> sistemi var. Bildiğim diğer tüm bağımlılık enjeksiyonu sistemlerinde olduğu gibi"<abbr title="Injectable: dependency injection sistemi tarafından enjekte edilecek dependency (bağımlılık)">bağımlılık</abbr>"ları önceden kaydetmenizi gerektiriyor. Böylece projeyi daha detaylı hale getiriyor ve kod tekrarını da arttırıyor.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  4. pkg/util/iptables/iptables.go

    type RulePosition string
    
    const (
    	// Prepend is the insert flag for iptable
    	Prepend RulePosition = "-I"
    	// Append is the append flag for iptable
    	Append RulePosition = "-A"
    )
    
    // Interface is an injectable interface for running iptables commands.  Implementations must be goroutine-safe.
    type Interface interface {
    	// EnsureChain checks if the specified chain exists and, if not, creates it.  If the chain existed, return true.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 28.6K bytes
    - Viewed (0)
  5. pkg/config/analysis/msg/messages.gen.go

    	// NamespaceInjectionEnabledByDefault defines a diag.MessageType for message "NamespaceInjectionEnabledByDefault".
    	// Description: user namespace should be injectable if Istio is installed with enableNamespacesByDefault enabled and neither injection label is set.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  6. pkg/volume/util/operationexecutor/operation_generator.go

    		recorder:        recorder,
    		blkUtil:         blkUtil,
    		translator:      csitrans.New(),
    	}
    }
    
    // OperationGenerator interface that extracts out the functions from operation_executor to make it dependency injectable
    type OperationGenerator interface {
    	// Generates the MountVolume function needed to perform the mount of a volume plugin
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  7. docs/ja/docs/alternatives.md

    NestJSはAngularにインスパイアされたJavaScript (TypeScript) NodeJSフレームワークで、Pythonですらありません。
    
    Flask-apispecでできることと多少似たようなことを実現しています。
    
    Angular 2にインスピレーションを受けた、統合された依存性注入の仕組みを持っています。(私が知っている他の依存性注入の仕組みと同様に) 「injectable」を事前に登録しておく必要があるため、冗長性とコードの繰り返しが発生します。
    
    パラメータはTypeScriptの型で記述されるので (Pythonの型ヒントに似ています) 、エディタのサポートはとても良いです。
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 31.6K bytes
    - Viewed (0)
Back to top