Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 190 for cmconfig (0.1 sec)

  1. 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)
  2. staging/src/k8s.io/apiserver/pkg/server/egressselector/config.go

    	}
    	return allErrs
    }
    
    func validateTCPConnection(tcpConfig *apiserver.TCPTransport, fldPath *field.Path) field.ErrorList {
    	allErrs := field.ErrorList{}
    
    	if strings.HasPrefix(tcpConfig.URL, "http://") {
    		if tcpConfig.TLSConfig != nil {
    			allErrs = append(allErrs, field.Invalid(
    				fldPath.Child("tlsConfig"),
    				"nil",
    				"TLSConfig config should not be present when using HTTP"))
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 15:48:39 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  3. .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)
  4. 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)
  5. operator/pkg/validate/validate_values_test.go

        excludeInboundPorts: "333,444"
        clusterDomain: "my.domain"
        lifecycle:
          preStop:
            exec:
              command: ["/bin/sh", "-c", "sleep 30"]
    `,
    		},
    		{
    			desc: "CNIConfig",
    			yamlStr: `
    cni:
      cniBinDir: "/var/lib/cni/bin"
      cniConfDir: "/var/run/multus/cni/net.d"
    `,
    		},
    
    		{
    			desc: "BadIPRange",
    			yamlStr: `
    global:
      proxy:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 13:43:12 UTC 2024
    - 6K bytes
    - Viewed (0)
  6. pkg/proxy/winkernel/hns.go

    	if err != nil {
    		return nil, err
    	}
    	var flags hcn.EndpointFlags
    	if !ep.isLocal {
    		flags |= hcn.EndpointFlagsRemoteEndpoint
    	}
    	ipConfig := &hcn.IpConfig{
    		IpAddress: ep.ip,
    	}
    	hnsEndpoint := &hcn.HostComputeEndpoint{
    		IpConfigurations: []hcn.IpConfig{*ipConfig},
    		MacAddress:       ep.macAddress,
    		Flags:            flags,
    		SchemaVersion: hcn.SchemaVersion{
    			Major: 2,
    			Minor: 0,
    		},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 09 21:21:12 UTC 2023
    - 15K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/controller/controller_test.go

    							err:        nil,
    						},
    					},
    					// hash of initial "testdata/ec_config.yaml" config file before reloading
    					EncryptionFileContentHash: "k8s:enc:unstable:1:6bc9f4aa2e5587afbb96074e1809550cbc4de3cc3a35717dac8ff2800a147fd3",
    				}, nil
    			},
    		},
    		{
    			name:                    "when transformer's health check fails previous config shouldn't be changed",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 16.2K 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