Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 42 for relativeTo (0.18 sec)

  1. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    .Legacy URL Conversions
    |===
    | Original Input | New Input | Reasoning
    
    | `file:relative/path` | `relative/path` | The `file` scheme does not support relative paths.
    | `file:relative/path%21` | `relative/path!` | Without a scheme, the path is taken as-is, without decoding.
    | `https://example.com/my folder/` | `https://example.com/my%20folder/` | Spaces are not valid in URLs.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  2. src/cmd/go/alldocs.go

    // as "unicode/utf8") or a package found in one of the work spaces (For more
    // details see: 'go help gopath').
    //
    // # Relative import paths
    //
    // An import path beginning with ./ or ../ is called a relative path.
    // The toolchain supports relative import paths as a shortcut in two ways.
    //
    // First, a relative path can be used as a shorthand on the command line.
    // If you are working in the directory containing the code imported as
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  3. cluster/gce/upgrade.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # !!!EXPERIMENTAL !!! Upgrade script for GCE. Expect this to get
    # rewritten in Go in relatively short order, but it allows us to start
    # testing the concepts.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    if [[ "${KUBERNETES_PROVIDER:-gce}" != "gce" ]]; then
      echo "!!! ${1} only works on GCE" >&2
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/liveness/plive.go

    	off = objw.Uintptr(x, off, uint64(len(vars)))
    	for _, v := range vars {
    		// Note: arguments and return values have non-negative Xoffset,
    		// in which case the offset is relative to argp.
    		// Locals have a negative Xoffset, in which case the offset is relative to varp.
    		// We already limit the frame size, so the offset and the object size
    		// should not be too big.
    		frameOffset := v.FrameOffset()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/build.gradle

    class GradleInstallationForTestEnvironmentProvider implements CommandLineArgumentProvider {
        @Internal
        final ConfigurableFileCollection gradleHomeDir
    
        @PathSensitive(PathSensitivity.RELATIVE)
        @InputDirectory
        final DirectoryProperty samplesdir
    
        @Nested
        final GradleDistribution gradleDistribution
    
        private final FileCollection testTaskClasspath
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 15:37:11 UTC 2024
    - 42K bytes
    - Viewed (0)
  6. cmd/xl-storage.go

    			}
    		}
    	} // Success.
    	return nil
    }
    
    func getValidPath(path string) (string, error) {
    	if path == "" {
    		return path, errInvalidArgument
    	}
    
    	var err error
    	// Disallow relative paths, figure out absolute paths.
    	path, err = filepath.Abs(path)
    	if err != nil {
    		return path, err
    	}
    
    	fi, err := Lstat(path)
    	if err != nil && !osIsNotExist(err) {
    		return path, err
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProblemReportingIntegrationTest.groovy

    class ConfigurationCacheProblemReportingIntegrationTest extends AbstractConfigurationCacheIntegrationTest {
    
        def "input files are reported with relative path"() {
            given:
            file('provider.txt').text = 'provider'
            file('fis-path.txt').text = 'fis-path'
            file('fis-file.txt').text = 'fis-file'
            file('fis-abs.txt').text = 'fis-abs'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  8. .bazelrc

    # Tensorflow uses M_* math constants that only get defined by MSVC headers if
    # _USE_MATH_DEFINES is defined.
    build:windows --copt=/D_USE_MATH_DEFINES
    build:windows --host_copt=/D_USE_MATH_DEFINES
    
    # Windows has a relatively short command line limit, which TF has begun to hit.
    # See https://docs.bazel.build/versions/main/windows.html
    build:windows --features=compiler_param_file
    build:windows --features=archive_param_file
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  9. src/net/http/server.go

    			r2.URL.Path = p
    			r2.URL.RawPath = rp
    			h.ServeHTTP(w, r2)
    		} else {
    			NotFound(w, r)
    		}
    	})
    }
    
    // Redirect replies to the request with a redirect to url,
    // which may be a path relative to the request path.
    //
    // The provided code should be in the 3xx range and is usually
    // [StatusMovedPermanently], [StatusFound] or [StatusSeeOther].
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.29.md

    - Previous versions of Kubernetes on Google Cloud required that workloads (e.g. Deployments, DaemonSets, etc.) which used `PersistentDisk` volumes were using them in read-only mode.  This validation provided very little value at relatively host implementation cost, and will no longer be validated.  If this is a problem for a specific use-case, please set the `SkipReadOnlyValidationGCE` gate to false to re-enable the validation, and file a Kubernetes bug with details. ([#121083](h...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
Back to top