Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 327 for indirect$ (0.18 sec)

  1. src/cmd/compile/internal/types2/lookup.go

    //
    // If no entry is found, a nil object is returned. In this case, the returned
    // index and indirect values have the following meaning:
    //
    //   - If index != nil, the index sequence points to an ambiguous entry
    //     (the same name appeared more than once at the same embedding level).
    //
    //   - If indirect is set, a method with a pointer receiver type was found
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 19:32:17 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  2. src/go/types/lookup.go

    //
    // If no entry is found, a nil object is returned. In this case, the returned
    // index and indirect values have the following meaning:
    //
    //   - If index != nil, the index sequence points to an ambiguous entry
    //     (the same name appeared more than once at the same embedding level).
    //
    //   - If indirect is set, a method with a pointer receiver type was found
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  3. subprojects/core/src/test/resources/org/gradle/api/internal/catalog/parser/plugin-notations.toml

    with-rich4 = { id = "org.example", version.strictly = "1.0" }
    with-rich5 = { id = "org.example", version = { rejectAll = true } }
    with-rich6 = { id = "org.example", version = { require = "1.0", reject = ["1.1", "1.2"] } }
    
    indirect.id = "org.example"
    indirect.version = "1.5"
    
    [versions]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 05:41:21 UTC 2024
    - 668 bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/selection.go

    // Indirect reports whether any pointer indirection was required to get from
    // x to f in x.f.
    //
    // Beware: Indirect spuriously returns true (Go issue #8353) for a
    // MethodVal selection in which the receiver argument and parameter
    // both have type *T so there is no indirection.
    // Unfortunately, a fix is too risky.
    func (s *Selection) Indirect() bool { return s.indirect }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 19:32:17 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  5. src/go/types/selection.go

    // Indirect reports whether any pointer indirection was required to get from
    // x to f in x.f.
    //
    // Beware: Indirect spuriously returns true (Go issue #8353) for a
    // MethodVal selection in which the receiver argument and parameter
    // both have type *T so there is no indirection.
    // Unfortunately, a fix is too risky.
    func (s *Selection) Indirect() bool { return s.indirect }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  6. association.go

    			rv := reflect.Indirect(reflect.ValueOf(value))
    			appendToRelations(reflectValue, rv, clear && idx == 0)
    			if association.Error != nil {
    				return
    			}
    		}
    
    		if len(values) > 0 {
    			association.Error = associationDB.Updates(reflectValue.Addr().Interface()).Error
    		}
    	}
    
    	for _, assignBack := range assignBacks {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:49:45 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r68/CompositeBuildModuleCycleCrossVersionSpec.groovy

            allProjects.includedBuildIdeaProjects.keySet().collect { it.buildIdentifier.rootDir.name } == ['module-a', 'module-b']
        }
    
        def "IDEA can handle indirect cycles between included builds"() {
            given:
            compositeWithIndirectIncludeCycle()
    
            when:
            def allProjects = withConnection {c -> c.action(new IdeaProjectUtil.GetAllIdeaProjectsAction()).run() }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  8. schema/field.go

    		field.ValueOf = func(ctx context.Context, value reflect.Value) (interface{}, bool) {
    			fieldValue := reflect.Indirect(value).Field(fieldIndex)
    			return fieldValue.Interface(), fieldValue.IsZero()
    		}
    	default:
    		field.ValueOf = func(ctx context.Context, v reflect.Value) (interface{}, bool) {
    			v = reflect.Indirect(v)
    			for _, fieldIdx := range field.StructField.Index {
    				if fieldIdx >= 0 {
    					v = v.Field(fieldIdx)
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Apr 15 03:20:20 UTC 2024
    - 32K bytes
    - Viewed (0)
  9. cmd/import-boss/main.go

    	}
    
    	realPkgPath := unmassage(pkg.PkgPath)
    
    	direct, indirect := transitiveImports(pkg)
    	isDirect := map[string]bool{}
    	for _, imp := range direct {
    		isDirect[imp] = true
    	}
    	relate := func(imp string) string {
    		if isDirect[imp] {
    			return "->"
    		}
    		return "-->"
    	}
    
    	var errs []error
    	for _, imp := range uniq(direct, indirect) {
    		if unmassage(imp) == realPkgPath {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 12:36:49 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  10. src/cmd/go/internal/gover/version.go

    	// module that provides any package transitively imported by that module.
    	//
    	// Other indirect dependencies of such a module can be safely pruned out of
    	// the module graph; see https://golang.org/ref/mod#graph-pruning.
    	ExplicitIndirectVersion = "1.17"
    
    	// separateIndirectVersion is the Go version at which
    	// "// indirect" dependencies are added in a block separate from the direct
    	// ones. See https://golang.org/issue/45965.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top