Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 226 for ifconfig (0.17 sec)

  1. src/cmd/vendor/golang.org/x/telemetry/tsconfig.json

    {
      /* Visit https://aka.ms/tsconfig.json to read more about this file */
      "compilerOptions": {
        "target": "ES2022",
        "module": "ES2022",
        "moduleResolution": "node",
    
        "strict": true,
        "allowUnusedLabels": false,
        "allowUnreachableCode": false,
        "exactOptionalPropertyTypes": true,
        "noFallthroughCasesInSwitch": true,
        "noImplicitOverride": true,
        "noImplicitReturns": true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 683 bytes
    - Viewed (0)
  2. pkg/test/csrctrl/signer/ca_provider.go

    	if err != nil {
    		return nil, fmt.Errorf("error reading CA cert file %s: %v", strRoot, err)
    	}
    	// Create the new extensions config for the CA
    	caConfig, err := ca.NewIstioConfig("istio-system")
    	if err != nil {
    		return nil, err
    	}
    	intermediateCA, err := ca.NewIntermediate(strRoot, caConfig, caLoader)
    	if err != nil {
    		return nil, err
    	}
    	ret := &caProvider{
    		caLoader:       caLoader,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 27 08:14:39 UTC 2021
    - 4.4K bytes
    - Viewed (0)
  3. _config.yml

    Harshavardhana <******@****.***> 1624038114 -0700
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 18 17:41:54 UTC 2021
    - 27 bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/ProjectSchemaAccessorsIntegrationTest.kt

                        setType("other-type")
                    }
                }
    
                listOf(configurations.myConfig.get(), adhocConfig, configurations["for-string-invoke"]).forEach { config ->
                    config.artifacts.forEach { artifact ->
                        println("${'$'}{config.name} -> ${'$'}{artifact.name}:${'$'}{artifact.extension}:${'$'}{artifact.type}")
                    }
                }
                """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 11:39:00 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  5. .github/workflows/people.yml

          - name: Fix git safe.directory in container
            run: mkdir -p /home/runner/work/_temp/_github_home && printf "[safe]\n\tdirectory = /github/workspace" > /home/runner/work/_temp/_github_home/.gitconfig
          # Allow debugging with tmate
          - name: Setup tmate session
            uses: mxschmitt/action-tmate@v3
            if: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.debug_enabled == 'true' }}
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Oct 17 07:19:41 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  6. pkg/test/framework/components/cluster/kube/cluster.go

    }
    
    // CanDeploy for a kube cluster returns true if the config is a non-vm, or if the cluster supports
    // fake pod-based VMs.
    func (c *Cluster) CanDeploy(config echo.Config) (echo.Config, bool) {
    	if config.DeployAsVM && !c.isVMSupported() {
    		return echo.Config{}, false
    	}
    	return config, true
    }
    
    func (c *Cluster) isVMSupported() bool {
    	// VMs can only be deployed on config clusters, since they assume the cluster ID of the control plane.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 17 22:54:10 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/test/integration/table_test.go

    		scheme.AddKnownTypes(metav1.SchemeGroupVersion, &metav1.Table{}, &metav1.TableOptions{})
    
    		crConfig := *config
    		crConfig.GroupVersion = &gv
    		crConfig.APIPath = "/apis"
    		crConfig.NegotiatedSerializer = codecs.WithoutConversion()
    		crRestClient, err := rest.RESTClientFor(&crConfig)
    		if err != nil {
    			t.Fatal(err)
    		}
    
    		// metav1beta1 table
    		{
    			ret, err := crRestClient.Get().
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 02 19:34:41 UTC 2021
    - 18.9K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/config.go

    	"cmd/compile/internal/ir"
    	"cmd/compile/internal/types"
    	"cmd/internal/obj"
    	"cmd/internal/src"
    	"internal/buildcfg"
    )
    
    // A Config holds readonly compilation information.
    // It is created once, early during compilation,
    // and shared across all compilations.
    type Config struct {
    	arch           string // "amd64", etc.
    	PtrSize        int64  // 4 or 8; copy of cmd/internal/sys.Arch.PtrSize
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:11:47 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  9. pilot/pkg/config/kube/crd/config.go

    func (in *IstioKind) DeepCopyObject() runtime.Object {
    	if c := in.DeepCopy(); c != nil {
    		return c
    	}
    
    	return nil
    }
    
    // IstioObject is a k8s wrapper interface for config objects
    type IstioObject interface {
    	runtime.Object
    	GetSpec() json.RawMessage
    	GetStatus() *json.RawMessage
    	GetObjectMeta() metav1.ObjectMeta
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 18:26:16 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  10. pkg/test/framework/components/cluster/config.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package cluster
    
    import (
    	"istio.io/istio/pkg/test/framework/config"
    )
    
    type Config struct {
    	Name               string     `yaml:"clusterName,omitempty"`
    	Network            string     `yaml:"network,omitempty"`
    	HTTPProxy          string     `yaml:"httpProxy,omitempty"`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 1.1K bytes
    - Viewed (0)
Back to top