Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 557 for relativeTo (0.38 sec)

  1. src/go/types/mono.go

    	}
    
    	// TODO(mdempsky): Pivot stack so we report the cycle from the top?
    
    	err := check.newError(InvalidInstanceCycle)
    	obj0 := check.mono.vertices[v].obj
    	err.addf(obj0, "instantiation cycle:")
    
    	qf := RelativeTo(check.pkg)
    	for _, v := range stack {
    		edge := check.mono.edges[check.mono.vertices[v].pre]
    		obj := check.mono.vertices[edge.dst].obj
    
    		switch obj.Type().(type) {
    		default:
    			panic("unexpected type")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. src/go/types/example_test.go

    	}
    	var items []string
    	for obj, uses := range usesByObj {
    		slices.Sort(uses)
    		item := fmt.Sprintf("%s:\n  defined at %s\n  used at %s",
    			types.ObjectString(obj, types.RelativeTo(pkg)),
    			fset.Position(obj.Pos()),
    			strings.Join(uses, ", "))
    		items = append(items, item)
    	}
    	slices.Sort(items) // sort by line:col, in effect
    	fmt.Println(strings.Join(items, "\n"))
    	fmt.Println()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/mono.go

    	}
    
    	// TODO(mdempsky): Pivot stack so we report the cycle from the top?
    
    	err := check.newError(InvalidInstanceCycle)
    	obj0 := check.mono.vertices[v].obj
    	err.addf(obj0, "instantiation cycle:")
    
    	qf := RelativeTo(check.pkg)
    	for _, v := range stack {
    		edge := check.mono.edges[check.mono.vertices[v].pre]
    		obj := check.mono.vertices[edge.dst].obj
    
    		switch obj.Type().(type) {
    		default:
    			panic("unexpected type")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 28 00:05:29 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  4. docs/de/docs/tutorial/bigger-applications.md

    Daher verwenden wir einen relativen Import mit `..` für die Abhängigkeiten:
    
    ```Python hl_lines="3" title="app/routers/items.py"
    {!../../../docs_src/bigger_applications/app/routers/items.py!}
    ```
    
    #### Wie relative Importe funktionieren
    
    !!! tip "Tipp"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:27:59 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  5. docs/de/docs/tutorial/security/first-steps.md

        {!> ../../../docs_src/security/tutorial001.py!}
        ```
    
    !!! tip "Tipp"
        Hier bezieht sich `tokenUrl="token"` auf eine relative URL `token`, die wir noch nicht erstellt haben. Da es sich um eine relative URL handelt, entspricht sie `./token`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:07:08 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  6. docs/en/overrides/main.html

        </div>
      </div>
      <div id="announce-right" style="position: relative;">
        <div class="item">
          <a title="CryptAPI: Your easy to use, secure and privacy oriented payment gateway." style="display: block; position: relative;" href="https://cryptapi.io/" target="_blank">
            <span class="sponsor-badge">sponsor</span>
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 30 13:28:20 UTC 2024
    - 5K bytes
    - Viewed (0)
  7. src/cmd/internal/objabi/reloctype.go

    	// address using an S-type instruction.
    	R_RISCV_PCREL_LO12_S
    
    	// R_RISCV_BRANCH resolves a 12-bit PC-relative branch offset.
    	R_RISCV_BRANCH
    
    	// R_RISCV_RVC_BRANCH resolves an 8-bit PC-relative offset for a CB-type
    	// instruction.
    	R_RISCV_RVC_BRANCH
    
    	// R_RISCV_RVC_JUMP resolves an 11-bit PC-relative offset for a CJ-type
    	// instruction.
    	R_RISCV_RVC_JUMP
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 17:26:07 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/file/FileCopyDetails.java

        @Override
        String getName();
    
        /**
         * Returns the path of this file, relative to the root of the copy destination.
         * <p>
         * Always uses '/' as the hierarchy separator, regardless of platform file separator.
         * Same as calling <code>getRelativePath().getPathString()</code>.
         *
         * @return The path, relative to the root of the copy destination. Never returns null.
         */
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 12:31:43 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/file/FileSystemLocationProperty.java

         * that owns this property instance.
         */
        void set(@Nullable File file);
    
        /**
         * Sets the location of this file, using a {@link File} instance. {@link File} instances with relative paths are resolved relative to the project directory of the project
         * that owns this property instance.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 12:28:22 UTC 2024
    - 3K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/execution/selection/BuildTaskSelector.java

        /**
         * @param rootDir When not null, specifies the build to resolve tasks relative to. When null, resolve relative to the default build.
         * @param projectPath When not null, specifies the project within the target build to resolve tasks relative to. When null, resolve relative to the default project of the target build.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top