Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 710 for cyclic (0.22 sec)

  1. build-logic-commons/code-quality-rules/src/main/resources/classycle/classycle_report_resources.zip

     } </style></head><body>"); list.document.writeln(text); list.document.writeln("</body></html>"); list.document.close(); list.focus(); } //--> Analysis of Date: Summary no class cycles class cycle class cycles class layers classes (using external classes) grouped in packages no package cycles package cycle package cycles no package packages Type Number of classes Averaged (maximum) size in bytes Averaged (maximum) number of usage by other classes Averaged (maximum) number of used internal classes...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 23.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/initorder.go

    			// If n.obj is not part of the cycle (e.g., n.obj->b->c->d->c),
    			// cycle will be nil. Don't report anything in that case since
    			// the cycle is reported when the algorithm gets to an object
    			// in the cycle.
    			// Furthermore, once an object in the cycle is encountered,
    			// the cycle will be broken (dependency count will be reduced
    			// below), and so the remaining nodes in the cycle don't trigger
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 22:06:51 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  3. src/go/types/initorder.go

    			// If n.obj is not part of the cycle (e.g., n.obj->b->c->d->c),
    			// cycle will be nil. Don't report anything in that case since
    			// the cycle is reported when the algorithm gets to an object
    			// in the cycle.
    			// Furthermore, once an object in the cycle is encountered,
    			// the cycle will be broken (dependency count will be reduced
    			// below), and so the remaining nodes in the cycle don't trigger
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  4. src/debug/dwarf/testdata/cycle.elf

    Austin Clements <******@****.***> 1452288329 -0500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 14 02:05:31 UTC 2016
    - 2.6K bytes
    - Viewed (0)
  5. src/debug/dwarf/testdata/cycle.c

    Austin Clements <******@****.***> 1452288329 -0500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 14 02:05:31 UTC 2016
    - 103 bytes
    - Viewed (0)
  6. src/runtime/mprof.go

    	if blocksampled(cycles, rate) {
    		saveblockevent(cycles, rate, skip+1, blockProfile)
    	}
    }
    
    // blocksampled returns true for all events where cycles >= rate. Shorter
    // events have a cycles/rate random chance of returning true.
    func blocksampled(cycles, rate int64) bool {
    	if rate <= 0 || (rate > cycles && cheaprand64()%rate > cycles) {
    		return false
    	}
    	return true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  7. src/go/types/mono.go

    	// time. Since v is the first vertex we found within the cycle, any
    	// vertices we visited earlier cannot be part of the cycle.
    	for stack[0] != v {
    		stack = stack[1:]
    	}
    
    	// 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)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/ConfigurationCycleIntegrationTest.groovy

            fails "tasks"
    
            and:
            failure.assertHasCause("""A cycle has been detected in model rule dependencies. References forming the cycle:
    first
    \\- Rules#first(String)
       \\- second
          \\- second { ... } @ build.gradle line 26, column 17
             \\- third
                \\- Rules#third(String)
                   \\- first""")
        }
    
        def "cycles involving multiple rules of same phase are detected"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  9. test/fixedbugs/issue6703c.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Check for cycles in a method expression.
    
    package methexpr
    
    type T int
    
    func (T) m() int {
    	_ = x
    	return 0
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 23 20:27:09 UTC 2022
    - 353 bytes
    - Viewed (0)
  10. src/internal/types/testdata/check/init1.go

    // initialization cycles
    
    package init1
    
    // issue 6683 (marked as WorkingAsIntended)
    
    type T0 struct{}
    
    func (T0) m() int { return y0 }
    
    var x0 = T0{}
    
    var y0 /* ERROR "initialization cycle" */ = x0.m()
    
    type T1 struct{}
    
    func (T1) m() int { return y1 }
    
    var x1 interface {
    	m() int
    } = T1{}
    
    var y1 = x1.m() // no cycle reported, x1 is of interface type
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:25 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top