Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Z0700 (0.04 sec)

  1. src/time/format.go

    			}
    			if len(layout) >= i+5 && layout[i:i+5] == "-0700" {
    				return layout[0:i], stdNumTZ, layout[i+5:]
    			}
    			if len(layout) >= i+6 && layout[i:i+6] == "-07:00" {
    				return layout[0:i], stdNumColonTZ, layout[i+6:]
    			}
    			if len(layout) >= i+3 && layout[i:i+3] == "-07" {
    				return layout[0:i], stdNumShortTZ, layout[i+3:]
    			}
    
    		case 'Z': // Z070000, Z07:00:00, Z0700, Z07:00,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheRepository.kt

                    // TODO GlobalCache require(!cacheDir.isDirectory)
                    Files.createDirectories(cacheDir.toPath())
                    chmod(cacheDir, 448) // octal 0700
                    markAccessed(cacheDir)
                    val stateFiles = mutableListOf<File>()
                    val layout = WriteableLayout(cacheDir, stateFiles::add)
                    try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet.go

    		return fmt.Errorf("error creating podresources directory: %v", err)
    	}
    	if utilfeature.DefaultFeatureGate.Enabled(features.ContainerCheckpoint) {
    		if err := os.MkdirAll(kl.getCheckpointsDir(), 0700); err != nil {
    			return fmt.Errorf("error creating checkpoint directory: %v", err)
    		}
    	}
    	if selinux.GetEnabled() {
    		err := selinux.SetFileLabel(pluginRegistrationDir, config.KubeletPluginsDirSELinuxLabel)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  4. docs/en/docs/release-notes.md

    ### Internal
    
    * 👥 Update FastAPI People. PR [#4274](https://github.com/tiangolo/fastapi/pull/4274) by [@github-actions[bot]](https://github.com/apps/github-actions).
    
    ## 0.70.0
    
    This release just upgrades Starlette to the latest version, `0.16.0`, which includes several bug fixes and some small breaking changes.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
Back to top