Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 456 for linksTo (0.23 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/IncrementalBuildSymlinkHandlingIntegrationTest.groovy

             * This documents the current behavior, which is optimizing
             * for performance at the expense of not detecting some corner
             * cases. If there actually is a task that needs to distinguish
             * between links and real files, we should probably provide an
             * opt-in to canonical snapshotting, as it's quite expensive.
             */
            then:
            result.assertTaskSkipped(":work")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 14:30:36 UTC 2024
    - 8K bytes
    - Viewed (0)
  2. src/go/doc/comment.go

    // license that can be found in the LICENSE file.
    
    package doc
    
    import (
    	"go/doc/comment"
    	"io"
    )
    
    // ToHTML converts comment text to formatted HTML.
    //
    // Deprecated: ToHTML cannot identify documentation links
    // in the doc comment, because they depend on knowing what
    // package the text came from, which is not included in this API.
    //
    // Given the *[doc.Package] p where text was found,
    // ToHTML(w, text, nil) can be replaced by:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:52 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/test_race_tag.txt

    # Tests Issue #54468
    
    [short] skip 'links a test binary'
    [!race] skip
    
    go mod tidy
    go test -c -o=$devnull -race .
    
    ! stderr 'cannot find package'
    
    -- go.mod --
    module testrace
    
    go 1.18
    
    require rsc.io/sampler v1.0.0
    -- race_test.go --
    //go:build race
    
    package testrace
    
    import (
            "testing"
    
            _ "rsc.io/sampler"
    )
    
    func TestRaceTag(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 26 17:43:59 UTC 2022
    - 363 bytes
    - Viewed (0)
  4. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus-container-default/1.0-alpha-32/plexus-container-default-1.0-alpha-32.pom

          </plugin-->
          <plugin>
            <artifactId>maven-pmd-plugin</artifactId>
          </plugin>
          <plugin>
            <artifactId>maven-javadoc-plugin</artifactId>
            <configuration>
              <links>
                <link>http://java.sun.com/j2ee/1.4/docs/api</link>
                <link>http://java.sun.com/j2se/1.5.0/docs/api</link>
                <link>http://jakarta.apache.org/commons/collections/apidocs-COLLECTIONS_3_0/</link>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Dec 24 18:09:10 UTC 2020
    - 3.5K bytes
    - Viewed (0)
  5. apache-maven/src/assembly/shared/mvnvalidate

    ## resolve links - $0 may be a link to Maven's home
    PRG="$0"
    
    # need this for relative symlinks
    while [ -h "$PRG" ] ; do
      ls=`ls -ld "$PRG"`
      link=`expr "$ls" : '.*-> \(.*\)$'`
      if expr "$link" : '/.*' > /dev/null; then
        PRG="$link"
      else
        PRG="`dirname "$PRG"`/$link"
      fi
    done
    
    saveddir=`pwd`
    
    MAVEN_HOME=`dirname "$PRG"`/..
    
    # make it fully qualified
    MAVEN_HOME=`cd "$MAVEN_HOME" && pwd`
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat May 23 07:59:32 UTC 2020
    - 418 bytes
    - Viewed (0)
  6. subprojects/diagnostics/src/main/java/org/gradle/api/reporting/model/internal/ModelNodeRenderer.java

            if (model instanceof ModelReferenceNode) {
                return;
            }
    
            Map<String, ModelNode> links = new TreeMap<>();
            for (ModelNode node : model.getLinks(ModelType.untyped())) {
                links.put(node.getPath().getName(), node);
            }
            output.collection(links.values(), this);
        }
    
        public void printNodeName(ModelNode model, StyledTextOutput styledTextoutput) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 29 12:52:59 UTC 2020
    - 6.4K bytes
    - Viewed (0)
  7. src/os/example_test.go

    			// Allow the example to run on platforms that do not support symbolic links.
    			fmt.Printf("%s links to %s\n", filepath.Base(linkPath), "hello.txt")
    			return
    		}
    		log.Fatal(err)
    	}
    
    	// Readlink returns the relative path as passed to os.Symlink.
    	dst, err := os.Readlink(linkPath)
    	if err != nil {
    		log.Fatal(err)
    	}
    	fmt.Printf("%s links to %s\n", filepath.Base(linkPath), dst)
    
    	var dstAbs string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 17:35:49 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  8. src/go/doc/comment/parse.go

    func (d *parseDoc) paragraph(lines []string) Block {
    	// Is this a block of known links? Handle.
    	var defs []*LinkDef
    	for _, line := range lines {
    		def, ok := parseLink(line)
    		if !ok {
    			goto NoDefs
    		}
    		defs = append(defs, def)
    	}
    	for _, def := range defs {
    		d.Links = append(d.Links, def)
    		if d.links[def.Text] == nil {
    			d.links[def.Text] = def
    		}
    	}
    	return nil
    NoDefs:
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 33.5K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/build/relnote/relnote.go

    		for key, link := range newdoc.Links {
    			if doc.Links[key] != nil {
    				return nil, fmt.Errorf("duplicate link reference %q; second in %s", key, filename)
    			}
    			doc.Links[key] = link
    		}
    	}
    	// Remove headings with empty contents.
    	doc.Blocks = removeEmptySections(doc.Blocks)
    	if len(doc.Blocks) > 0 && len(doc.Links) > 0 {
    		// Add a blank line to separate the links.
    		lastPos := lastBlock(doc).Pos()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  10. platforms/native/distributions-native/build.gradle.kts

        agentsRuntimeOnly(project(":instrumentation-agent"))
    
        pluginsRuntimeOnly(platform(project(":distributions-jvm"))) {
            because("the project dependency 'toolingNative -> ide' currently links this to the JVM ecosystem")
        }
        pluginsRuntimeOnly(platform(project(":distributions-publishing"))) {
            because("configuring publishing is part of the 'language native' support")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 825 bytes
    - Viewed (0)
Back to top