Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for blockString (0.3 sec)

  1. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/ProgramSource.kt

        internal
        val blockString: String
            get() = source.text.substring(section.block)
    
        override fun equals(other: Any?): Boolean = other is ProgramSourceFragment && other.identifierString == identifierString && other.blockString == blockString
    
        override fun hashCode(): Int {
            return identifierString.hashCode() * 31 * blockString.hashCode()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/PluginsBlockInterpreter.kt

        data class Dynamic(val reason: String) : PluginsBlockInterpretation()
    }
    
    
    internal
    fun interpret(program: Program.Plugins): PluginsBlockInterpretation {
        val blockString = program.fragment.blockString
        return when (val r = pluginsBlockParser(blockString)) {
            is ParserResult.Failure -> PluginsBlockInterpretation.Dynamic(r.reason)
            is ParserResult.Success -> PluginsBlockInterpretation.Static(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  3. src/cmd/trace/gstate.go

    	if !gs.syscall.active {
    		return
    	}
    	blockString := "no"
    	if blocked {
    		blockString = "yes"
    	}
    	gs.completedRanges = append(gs.completedRanges, completedRange{
    		name:       "syscall",
    		startTime:  gs.syscall.time,
    		endTime:    ts,
    		startStack: gs.syscall.stack,
    		arg:        format.BlockedArg{Blocked: blockString},
    	})
    	gs.syscall.active = false
    	gs.syscall.time = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/main.go

    	// generate block kind string method
    	fmt.Fprintln(w, "var blockString = [...]string{")
    	fmt.Fprintln(w, "BlockInvalid:\"BlockInvalid\",")
    	for _, a := range archs {
    		fmt.Fprintln(w)
    		for _, b := range a.blocks {
    			fmt.Fprintf(w, "Block%s%s:\"%s\",\n", a.Name(), b.name, b.name)
    		}
    	}
    	fmt.Fprintln(w, "}")
    	fmt.Fprintln(w, "func (k BlockKind) String() string {return blockString[k]}")
    
    	// generate block kind auxint method
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 22:42:34 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/DependencyManagementIntegrationTest.kt

                    api("in-block:accessor-with-action")
                    api("in-block:string-invoke")
                    api("in-block:string-invoke-with-action")
                    api("direct:accessor")
                    api("direct:accessor-with-action")
                    api("direct-block:string-invoke")
                    api("direct-block:string-invoke-with-action")
                }
    
                // Declare dependency constraints
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 04 06:41:25 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/opGen.go

    	BlockS390XCIJ
    	BlockS390XCGIJ
    	BlockS390XCLIJ
    	BlockS390XCLGIJ
    
    	BlockPlain
    	BlockIf
    	BlockDefer
    	BlockRet
    	BlockRetJmp
    	BlockExit
    	BlockJumpTable
    	BlockFirst
    )
    
    var blockString = [...]string{
    	BlockInvalid: "BlockInvalid",
    
    	Block386EQ:  "EQ",
    	Block386NE:  "NE",
    	Block386LT:  "LT",
    	Block386LE:  "LE",
    	Block386GT:  "GT",
    	Block386GE:  "GE",
    	Block386OS:  "OS",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 1M bytes
    - Viewed (0)
Back to top