Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 113 of 113 for Implementation (0.39 sec)

  1. staging/src/k8s.io/api/extensions/v1beta1/generated.proto

      //   matches /foo/bar/baz, but does not match /foo/barbaz).
      // * ImplementationSpecific: Interpretation of the Path matching is up to
      //   the IngressClass. Implementations can treat this as a separate PathType
      //   or treat it identically to Prefix or Exact path types.
      // Implementations are required to support all path types.
      // Defaults to ImplementationSpecific.
      optional string pathType = 3;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 45.4K bytes
    - Viewed (0)
  2. pkg/util/iptables/iptables.go

    	// 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.
    	EnsureChain(table Table, chain Chain) (bool, error)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 28.6K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/devicemanager/manager.go

    	}
    
    	manager.server = server
    	manager.checkpointdir, _ = filepath.Split(server.SocketPath())
    
    	// The following structures are populated with real implementations in manager.Start()
    	// Before that, initializes them to perform no-op operations.
    	manager.activePods = func() []*v1.Pod { return []*v1.Pod{} }
    	manager.sourcesReady = &sourcesReadyStub{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 12:01:56 UTC 2024
    - 43K bytes
    - Viewed (0)
Back to top