Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 67 for relativeTo (0.28 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/Session.java

         *
         * @see org.apache.maven.api.services.ArtifactManager#getPath(Artifact)
         */
        @Nonnull
        Optional<Path> getArtifactPath(@Nonnull Artifact artifact);
    
        /**
         * Gets the relative path for a locally installed artifact. Note that the artifact need not actually exist yet at
         * the returned location, the path merely indicates where the artifact would eventually be stored.
         * <p>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/tasks/testing/testng/TestNGOptions.java

            suiteXmlBuilder = new MarkupBuilder(suiteXmlWriter);
            return suiteXmlBuilder;
        }
    
        /**
         * Add suite files by Strings. Each suiteFile String should be a path relative to the project root.
         */
        public void suites(String... suiteFiles) {
            for (String suiteFile : suiteFiles) {
                suiteXmlFiles.add(new File(TestNGOptions.this.getProjectDir(), suiteFile));
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  3. 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)
  4. pkg/controller/endpointslice/endpointslice_controller_test.go

    		t.Fatalf("len of actions %v is unexpected. Expected to be at least %v", len(actions), num+1)
    	}
    
    	for i := 0; i < num; i++ {
    		relativePos := len(actions) - i - 1
    		assert.Equal(t, verb, actions[relativePos].GetVerb(), "Expected action -%d verb to be %s", i, verb)
    		assert.Equal(t, resource, actions[relativePos].GetResource().Resource, "Expected action -%d resource to be %s", i, resource)
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
  5. 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)
  6. src/math/big/float.go

    )
    
    //go:generate stringer -type=RoundingMode
    
    // Accuracy describes the rounding error produced by the most recent
    // operation that generated a [Float] value, relative to the exact value.
    type Accuracy int8
    
    // Constants describing the [Accuracy] of a [Float].
    const (
    	Below Accuracy = -1
    	Exact Accuracy = 0
    	Above Accuracy = +1
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 15:46:54 UTC 2024
    - 44.5K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modload/init.go

    				if WorkFilePath() != "" && newV.Version == "" && !filepath.IsAbs(newV.Path) {
    					// Since we are in a workspace, we may be loading replacements from
    					// multiple go.mod files. Relative paths in those replacement are
    					// relative to the go.mod file, not the workspace, so the same string
    					// may refer to two different paths and different strings may refer to
    					// the same path. Convert them all to be absolute instead.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  8. 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)
  9. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                                    type: object
                                type: object
                              weight:
                                description: Weight specifies the relative proportion
                                  of traffic to be forwarded to the destination.
                                format: int32
                                type: integer
                            required:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.7K bytes
    - Viewed (0)
  10. manifests/charts/base/crds/crd-all.gen.yaml

                                    type: object
                                type: object
                              weight:
                                description: Weight specifies the relative proportion
                                  of traffic to be forwarded to the destination.
                                format: int32
                                type: integer
                            required:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.6K bytes
    - Viewed (0)
Back to top