Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 164 for ifconfig (0.16 sec)

  1. tools/istio-clean-iptables/pkg/config/config.go

    // limitations under the License.
    
    package config
    
    import (
    	"encoding/json"
    	"fmt"
    	"os/user"
    
    	"github.com/miekg/dns"
    
    	"istio.io/istio/pkg/env"
    	"istio.io/istio/pkg/log"
    	netutil "istio.io/istio/pkg/util/net"
    	types "istio.io/istio/tools/istio-iptables/pkg/config"
    	"istio.io/istio/tools/istio-iptables/pkg/constants"
    )
    
    func DefaultConfig() *Config {
    	return &Config{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 01 04:37:36 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  2. internal/config/lambda/config.go

    // Config - lambda target configuration structure, holds
    // information about various lambda targets.
    type Config struct {
    	Webhook map[string]target.WebhookArgs `json:"webhook"`
    }
    
    const (
    	defaultTarget = "1"
    )
    
    // NewConfig - initialize lambda config.
    func NewConfig() Config {
    	// Make sure to initialize lambda targets
    	cfg := Config{
    		Webhook: make(map[string]target.WebhookArgs),
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Mar 07 16:12:41 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. internal/config/subnet/config.go

    		}
    	}
    }
    
    // LookupConfig - lookup config and override with valid environment settings if any.
    func LookupConfig(kvs config.KVS, transport http.RoundTripper) (cfg Config, err error) {
    	if err = config.CheckValidKeys(config.SubnetSubSys, kvs, DefaultKVS); err != nil {
    		return cfg, err
    	}
    
    	var proxyURL *xnet.URL
    	proxy := env.Get(config.EnvMinIOSubnetProxy, kvs.Get(config.Proxy))
    	if len(proxy) > 0 {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/config.go

    )
    
    func init() {
    	install.Install(scheme)
    }
    
    // LoadConfiguration loads the provided configuration.
    func LoadConfiguration(config io.Reader) (*resourcequotaapi.Configuration, error) {
    	// if no config is provided, return a default configuration
    	if config == nil {
    		externalConfig := &resourcequotav1.Configuration{}
    		scheme.Default(externalConfig)
    		internalConfig := &resourcequotaapi.Configuration{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 15:48:39 UTC 2023
    - 2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/server/egressselector/config.go

    // incorrect file paths. It will return nil if it does not find anything wrong.
    func ValidateEgressSelectorConfiguration(config *apiserver.EgressSelectorConfiguration) field.ErrorList {
    	allErrs := field.ErrorList{}
    	if config == nil {
    		return allErrs // Treating a nil configuration as valid
    	}
    	for _, service := range config.EgressSelections {
    		fldPath := field.NewPath("service", "connection")
    		switch service.Connection.ProxyProtocol {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 15:48:39 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  6. .github/ISSUE_TEMPLATE/config.yml

    Sebastián Ramírez <******@****.***> 1675173772 +0100
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Jan 31 14:02:52 UTC 2023
    - 930 bytes
    - Viewed (0)
  7. docs_src/settings/app02/config.py

    Sebastián Ramírez <******@****.***> 1688749933 +0200
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jul 07 17:12:13 UTC 2023
    - 159 bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/config.go

    Joel Sing <******@****.***> 1677767040 +1100
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 05:14:11 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  9. pilot/cmd/pilot-agent/config/config.go

    // limitations under the License.
    
    package config
    
    import (
    	"fmt"
    	"os"
    	"runtime"
    	"strconv"
    	"strings"
    
    	"google.golang.org/protobuf/types/known/wrapperspb"
    
    	"istio.io/api/annotation"
    	meshconfig "istio.io/api/mesh/v1alpha1"
    	"istio.io/istio/pilot/pkg/util/network"
    	"istio.io/istio/pkg/bootstrap"
    	"istio.io/istio/pkg/config/mesh"
    	"istio.io/istio/pkg/config/validation/agent"
    	"istio.io/istio/pkg/env"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  10. pilot/pkg/config/aggregate/config.go

    	return cr.schemas
    }
    
    // Get the first config found in the stores.
    func (cr *store) Get(typ config.GroupVersionKind, name, namespace string) *config.Config {
    	for _, store := range cr.stores[typ] {
    		config := store.Get(typ, name, namespace)
    		if config != nil {
    			return config
    		}
    	}
    	return nil
    }
    
    // List all configs in the stores.
    func (cr *store) List(typ config.GroupVersionKind, namespace string) []config.Config {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 26 01:14:27 UTC 2023
    - 5.4K bytes
    - Viewed (0)
Back to top