Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 879 for indirect$ (0.21 sec)

  1. 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)
  2. 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)
  3. src/cmd/go/testdata/script/mod_replace_readonly.txt

    module m
    
    go 1.16
    -- go.mod.latest --
    module m
    
    go 1.16
    
    replace rsc.io/quote => ./quote
    
    require rsc.io/quote v1.5.2 // indirect
    -- go.mod.specific --
    module m
    
    go 1.16
    
    replace rsc.io/quote v1.0.0-doesnotexist => ./quote
    
    require rsc.io/quote v1.0.0-doesnotexist // indirect
    -- use.go --
    package use
    
    import _ "rsc.io/quote"
    -- quote/go.mod --
    module rsc.io/quote
    
    go 1.16
    -- quote/quote.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  4. callbacks/associations.go

    					distinctElems := reflect.MakeSlice(reflect.SliceOf(fieldType), 0, 10)
    					identityMap := map[string]bool{}
    					for i := 0; i < rValLen; i++ {
    						obj := db.Statement.ReflectValue.Index(i)
    						if reflect.Indirect(obj).Kind() != reflect.Struct {
    							break
    						}
    						if _, zero := rel.Field.ValueOf(db.Statement.Context, obj); !zero { // check belongs to relation value
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Tue Apr 11 03:06:13 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  5. analysis/analysis-api/testData/components/compileTimeConstantProvider/evaluate/propertyInCompanionObject_indirect_twice.kt

    package prop.`in`.`companion`.indirect.twice
    
    class Test {
        fun test() {
            val x = <expr>oneMore</expr>
        }
        companion object {
            // effectively constant
            val someField = "something"
            val indirectPointer = someField
            val oneMore = indirectPointer
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Mar 11 12:51:16 UTC 2022
    - 296 bytes
    - Viewed (0)
  6. src/go/types/methodset_test.go

    			}
    			if got, want := sel.Index(), m.index; !sameSlice(got, want) {
    				t.Errorf("%s [method %d]: got index = %v, want %v", src, i, got, want)
    			}
    			if got, want := sel.Indirect(), m.indirect; got != want {
    				t.Errorf("%s [method %d]: got indirect = %v, want %v", src, i, got, want)
    			}
    		}
    	}
    
    	for src, methods := range tests {
    		check(src, methods, false)
    	}
    
    	for src, methods := range tParamTests {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 08 15:27:57 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  7. src/internal/types/testdata/fixedbugs/issue51360.go

    	len.Println /* ERROR "cannot select on len" */
    	len.Println /* ERROR "cannot select on len" */ ()
    	_ = len.Println /* ERROR "cannot select on len" */
    	_ = len /* ERROR "cannot index len" */ [0]
    	_ = *len /* ERROR "cannot indirect len" */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:25 UTC 2023
    - 423 bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_vendor_unused_only.txt

    # golang.org/issue/36580
    
    env GO111MODULE=on
    
    go mod vendor
    cmp go1.14-modules.txt vendor/modules.txt
    
    -- go.mod --
    module example.com/m
    go 1.14
    
    require example.com v1.0.0 // indirect
    -- go.sum --
    example.com v1.0.0/go.mod h1:WRiieAqDBb1hVdDXLLdxNtCDWNfehn7FWyPC5Oz2vB4=
    -- go1.14-modules.txt --
    # example.com v1.0.0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 13 00:19:50 UTC 2021
    - 459 bytes
    - Viewed (0)
  9. test/fixedbugs/issue54632.go

    // The inliner would erroneously scan the caller function's body for
    // reassignments *before* substituting the inlined function call body,
    // which could cause false positives in deciding when it's safe to
    // transitively inline indirect function calls.
    
    package main
    
    func main() {
    	bug1()
    	bug2(fail)
    }
    
    func bug1() {
    	fn := fail
    	fn = pass
    	fn()
    }
    
    func bug2(fn func()) {
    	fn = pass
    	fn()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 24 14:31:08 UTC 2022
    - 609 bytes
    - Viewed (0)
  10. 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)
Back to top