Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,184 for relativeTo (0.59 sec)

  1. 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)
  2. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/plugins/precompiled/PrecompiledScriptPluginAccessorsTest.kt

            }
    
        private
        fun FoldersDsl.withKotlinDslPlugin(): File =
            withKotlinDslPluginIn(relativePath)
    
        private
        val FoldersDsl.relativePath
            get() = root.relativeTo(projectRoot).path
    
        private
        fun jarWithInvalidPlugin(id: String, implClass: String): File =
            pluginJarWith(
                pluginDescriptorEntryFor(id, implClass),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 30 11:39:02 UTC 2023
    - 29.6K bytes
    - Viewed (0)
  3. api/go1.5.txt

    pkg go/types, func NewTypeName(token.Pos, *Package, string, Type) *TypeName
    pkg go/types, func NewVar(token.Pos, *Package, string, Type) *Var
    pkg go/types, func ObjectString(Object, Qualifier) string
    pkg go/types, func RelativeTo(*Package) Qualifier
    pkg go/types, func SelectionString(*Selection, Qualifier) string
    pkg go/types, func TypeString(Type, Qualifier) string
    pkg go/types, func WriteExpr(*bytes.Buffer, ast.Expr)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 30 21:14:09 UTC 2015
    - 46.6K bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzers/testdata/relative-envoy-filter-operation.yaml

    # If the patch operation is INSERT_FIRST or priority is set, then the analyzer will not do anything
    apiVersion: networking.istio.io/v1alpha3
    kind: EnvoyFilter
    metadata:
      name: test-relative-1
      namespace: bookinfo
    spec:
      workloadSelector:
        labels:
          app: reviews1
      configPatches:
        # The first patch adds the Lua filter to the listener/http connection manager
      - applyTo: HTTP_FILTER
        match:
          context: SIDECAR_INBOUND
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 31 19:38:42 UTC 2022
    - 6.1K bytes
    - Viewed (0)
  5. maven-core/src/test/resources/project-dynamism/pom-relative.xml

    Hervé Boutemy <******@****.***> 1573303514 +0100
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Nov 09 12:45:14 UTC 2019
    - 1.1K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/api/internal/file/RelativeFileTest.groovy

        def "can get base directory of relative file" () {
            File file = new File("/some/relatively/long/path/to/a/file")
            RelativePath relativePath = RelativePath.parse(true, "to/a/file")
            RelativeFile relativeFile = new RelativeFile(file, relativePath)
    
            expect:
            relativeFile.getBaseDir() == new File("/some/relatively/long/path")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 02 13:47:53 UTC 2015
    - 1.5K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/Checkstyle.java

                parameters.getStylesheetString().set(stylesheetString.asString());
            }
        }
    
        /**
         * {@inheritDoc}
         *
         * <p>The sources for this task are relatively relocatable even though it produces output that
         * includes absolute paths. This is a compromise made to ensure that results can be reused
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 19 14:14:12 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/run_issue51125.txt

    # Relative import paths (a holdover from GOPATH) were accidentally allowed in module mode.
    
    cd $WORK
    
    # Relative imports should not be allowed with a go.mod file.
    
    ! go run driver.go
    stderr '^driver.go:3:8: "./mypkg" is relative, but relative import paths are not supported in module mode$'
    
    go list -e -f '{{with .Error}}{{.}}{{end}}' -deps driver.go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 16 19:10:58 UTC 2022
    - 1.3K bytes
    - Viewed (0)
Back to top