Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 289 for rootfs (0.13 sec)

  1. CHANGELOG/CHANGELOG-1.8.md

    * Detach and clear bad disk URI ([#58345](https://github.com/kubernetes/kubernetes/pull/58345), [@rootfs](https://github.com/rootfs))
    * Expose Metrics Server metrics via /metric endpoint. ([#57456](https://github.com/kubernetes/kubernetes/pull/57456), [@kawych](https://github.com/kawych))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
  2. testing/smoke-test/src/smokeTest/resources/org/gradle/smoketests/play-example/conf/routes

    # Routes
    # This file defines all application routes (Higher priority routes first)
    # ~~~~
    
    # Home page
    GET     /                           @controllers.Application.index
    
    # Map static resources from the /public folder to the /assets URL path
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 323 bytes
    - Viewed (0)
  3. testing/smoke-test/src/smokeTest/resources/org/gradle/play/integtest/fixtures/external/basicplayapp/conf/routes

    # Routes
    # Home page
    GET     /                           @controllers.Application.index
    
    GET     /shutdown                   @controllers.Application.shutdown
    
    # Map static resources from the /public folder to the /assets URL path
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 313 bytes
    - Viewed (0)
  4. src/crypto/tls/example_test.go

    -----END CERTIFICATE-----`
    
    	// First, create the set of root certificates. For this example we only
    	// have one. It's also possible to omit this in order to use the
    	// default root set of the current operating system.
    	roots := x509.NewCertPool()
    	ok := roots.AppendCertsFromPEM([]byte(rootPEM))
    	if !ok {
    		panic("failed to parse root certificate")
    	}
    
    	conn, err := tls.Dial("tcp", "mail.google.com:443", &tls.Config{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 18:23:49 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  5. testing/smoke-test/src/smokeTest/resources/org/gradle/play/integtest/fixtures/external/basicplayapp/conf/routes.old

    # Routes
    # Home page
    GET     /                           controllers.Application.index
    
    GET     /shutdown                   controllers.Application.shutdown
    
    # Map static resources from the /public folder to the /assets URL path
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 310 bytes
    - Viewed (0)
  6. src/crypto/x509/name_constraints_test.go

    	},
    
    	// #14: roots can exclude subtrees and that doesn't affect other names.
    	{
    		roots: []constraintsSpec{
    			{
    				bad: []string{"dns:.example.com"},
    			},
    		},
    		intermediates: [][]constraintsSpec{
    			{
    				{},
    			},
    		},
    		leaf: leafSpec{
    			sans: []string{"dns:foo.com"},
    		},
    	},
    
    	// #15: roots exclusions are effective.
    	{
    		roots: []constraintsSpec{
    			{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 22:40:21 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.30.md

    - Fixed `kubectl explain` to show enum for field types if they were defined. ([#123023](https://github.com/kubernetes/kubernetes/pull/123023), [@ah8ad3](https://github.com/ah8ad3))
    - Fixed a bug in kubeadm where the `--rootfs` global flag didn't work with "kubeadm upgrade node" for control plane nodes. ([#123077](https://github.com/kubernetes/kubernetes/pull/123077), [@neolit123](https://github.com/neolit123))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modload/buildlist.go

    	drop := make(map[string]bool)
    	for _, m := range replace {
    		drop[m.Path] = true
    	}
    	var roots []module.Version
    	for _, m := range rs.rootModules {
    		if !drop[m.Path] {
    			roots = append(roots, m)
    		}
    	}
    	roots = append(roots, replace...)
    	gover.ModSort(roots)
    	return newRequirements(rs.pruning, roots, rs.direct)
    }
    
    // A ConstraintError describes inconsistent constraints in EditBuildList
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet.go

    		return fmt.Errorf("error creating root directory: %v", err)
    	}
    	if err := os.MkdirAll(kl.getPodLogsDir(), 0750); err != nil {
    		return fmt.Errorf("error creating pod logs root directory %q: %w", kl.getPodLogsDir(), err)
    	}
    	if err := kl.hostutil.MakeRShared(kl.getRootDir()); err != nil {
    		return fmt.Errorf("error configuring root directory: %v", err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  10. platforms/jvm/jvm-services/src/main/java/org/gradle/jvm/toolchain/internal/LinuxInstallationSupplier.java

            return "Common Linux Locations";
        }
    
        @Override
        public Set<InstallationLocation> get() {
            if (os.isLinux()) {
                return Arrays.stream(roots)
                    .map(root -> FileBasedInstallationFactory.fromDirectory(root, getSourceName(), InstallationLocation::autoDetected))
                    .flatMap(Set::stream)
                    .collect(Collectors.toSet());
            }
            return Collections.emptySet();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:55 UTC 2024
    - 1.9K bytes
    - Viewed (0)
Back to top