Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 144 for conf1 (0.14 sec)

  1. cmd/kubeadm/app/apis/kubeadm/validation/validation_test.go

    		s        string
    		expected bool
    	}{
    		{"foo", false},
    		{"/foo/bar/file_which_i_believe_not_existing.conf", false},
    		{tmpfile.Name(), true},
    		{"http://[::1]a", false},
    		{"http://url/file.conf", false},
    		{"https://u r l/file.conf", false},
    		{"https://url/file.conf", true},
    	}
    	for i, rt := range tests {
    		actual := ValidateDiscoveryKubeConfigPath(rt.s, nil)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/stmt.go

    	. "internal/types/errors"
    	"sort"
    )
    
    func (check *Checker) funcBody(decl *declInfo, name string, sig *Signature, body *syntax.BlockStmt, iota constant.Value) {
    	if check.conf.IgnoreFuncBodies {
    		panic("function body not ignored")
    	}
    
    	if check.conf.Trace {
    		check.trace(body.Pos(), "-- %s: %s", name, sig)
    	}
    
    	// save/restore current environment and set up function environment
    	// (and use 0 indentation at function start)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  3. apache-maven/pom.xml

              <groupId>org.apache.rat</groupId>
              <artifactId>apache-rat-plugin</artifactId>
              <configuration>
                <excludes combine.children="append">
                  <exclude>src/assembly/maven/bin/m2.conf</exclude>
                  <!-- these are partial scripts, resulting in mvn scripts -->
                  <exclude>src/assembly/shared/init</exclude>
                  <exclude>src/assembly/shared/init.cmd</exclude>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/componentconfigs/kubelet.go

    	kubeletHealthzBindAddress = "127.0.0.1"
    
    	// kubeletSystemdResolverConfig specifies the default resolver config when systemd service is active
    	kubeletSystemdResolverConfig = "/run/systemd/resolve/resolv.conf"
    )
    
    // kubeletHandler is the handler instance for the kubelet component config
    var kubeletHandler = handler{
    	GroupVersion: kubeletconfig.SchemeGroupVersion,
    	AddToScheme:  kubeletconfig.AddToScheme,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 8K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/phases/upgrade/staticpods.go

    		}
    
    		// Do the same for super-admin.conf, but only if it exists
    		if _, err := os.Stat(filepath.Join(pathMgr.KubernetesDir(), constants.SuperAdminKubeConfigFileName)); err == nil {
    			// renew the certificate embedded in the super-admin.conf file
    			renewed, err := certsRenewMgr.RenewUsingLocalCA(constants.SuperAdminKubeConfigFileName)
    			if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 10:07:41 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  6. platforms/core-configuration/declarative-dsl-provider/src/integTest/groovy/org/gradle/internal/declarativedsl/project/DeclarativeDSLCustomDependenciesExtensionsSpec.groovy

            file("build-logic/build.gradle") << defineRestrictedPluginBuild()
    
            file("build.gradle.dcl") << """
                library {
                    sub {
                        conf(baseMethod("base:name:1.0"))
                        conf(subMethod("sub:name:1.0"))
                    }
                }
            """
            file("settings.gradle") << defineSettings(typeSafeProjectAccessors)
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 10:11:12 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  7. cmd/common-main.go

    	ctxt.IdleTimeout = ctx.Duration("idle-timeout")
    	ctxt.UserTimeout = ctx.Duration("conn-user-timeout")
    	ctxt.ShutdownTimeout = ctx.Duration("shutdown-timeout")
    
    	if conf := ctx.String("config"); len(conf) > 0 {
    		err = mergeServerCtxtFromConfigFile(conf, ctxt)
    	} else {
    		err = mergeDisksLayoutFromArgs(serverCmdArgs(ctx), ctxt)
    	}
    
    	return err
    }
    
    func handleCommonArgs(ctxt serverCtxt) {
    	if ctxt.JSON {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  8. hack/golangci-strict.yaml

          path: ../_output/local/bin/logcheck.so
          description: structured logging checker
          original-url: k8s.io/logtools/logcheck
          settings:
            config: |
              # hack/logcheck.conf contains regular expressions that are matched against <pkg>/<file>,
              # for example k8s.io/cmd/kube-scheduler/app/config/config.go.
              #
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/constants/constants_test.go

    			"failed GetAdminKubeConfigPath:\n\texpected: %s\n\t  actual: %s",
    			expected,
    			actual,
    		)
    	}
    }
    
    func TestGetKubeletKubeConfigPath(t *testing.T) {
    	expected := filepath.FromSlash("/etc/kubernetes/kubelet.conf")
    	actual := GetKubeletKubeConfigPath()
    
    	if actual != expected {
    		t.Errorf(
    			"failed GetKubeletKubeConfigPath:\n\texpected: %s\n\t  actual: %s",
    			expected,
    			actual,
    		)
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 03:26:36 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  10. cmd/kubelet/app/server.go

    // the configurations in "10-config.conf" will be applied first, and then the configurations in "20-config.conf" will be applied,
    // potentially overriding the previous values.
    func mergeKubeletConfigurations(kubeletConfig *kubeletconfiginternal.KubeletConfiguration, kubeletDropInConfigDir string) error {
    	const dropinFileExtension = ".conf"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
Back to top