Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,841 for halted (0.37 sec)

  1. test/fixedbugs/issue15609.dir/main.go

    package main
    
    var called bool
    
    func target() {
    	called = true
    }
    
    func main() {
    	jump()
    	if !called {
    		panic("target not called")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Oct 09 19:50:09 UTC 2016
    - 135 bytes
    - Viewed (0)
  2. staging/src/k8s.io/client-go/applyconfigurations/batch/v1/jobspec.go

    }
    
    // WithParallelism sets the Parallelism field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the Parallelism field is set to the value of the last call.
    func (b *JobSpecApplyConfiguration) WithParallelism(value int32) *JobSpecApplyConfiguration {
    	b.Parallelism = &value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/api/internal/ClosureBackedActionTest.groovy

        def "one arg closure is called"() {
            given:
            def called = false
            def thing = "1"
            def closure = {
                called = true
                assert it.is(thing)
                assert delegate.is(thing)
            }
    
            when:
            action(closure).execute(thing)
    
            then:
            called
        }
    
        def "zero arg closure is called"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:52:06 UTC 2021
    - 2.8K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/DependencyGraphVisitor.java

        /**
         * Visits a node of the graph. Includes the root. This method is called for all nodes before {@link #visitEdges(DependencyGraphNode)} is called.
         */
        default void visitNode(DependencyGraphNode node) {}
    
        /**
         * Visits a selector. This method is called for all selectors before {@link #visitEdges(DependencyGraphNode)} is called.
         */
        default void visitSelector(DependencyGraphSelector selector) {}
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 18:04:06 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. test/range.go

    		s += i
    	}
    	if nmake != 1 {
    		println("range called makeslice", nmake, "times")
    		panic("fail")
    	}
    	if s != 10 {
    		println("wrong sum ranging over makeslice", s)
    		panic("fail")
    	}
    }
    
    func testslice2() {
    	n := 0
    	nmake = 0
    	for range makeslice() {
    		n++
    	}
    	if nmake != 1 {
    		println("range called makeslice", nmake, "times")
    		panic("fail")
    	}
    	if n != 5 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 05:50:54 UTC 2017
    - 8.1K bytes
    - Viewed (0)
  6. test/fixedbugs/bug474.go

    // Bug in method values: escape analysis was off.
    
    package main
    
    import "sync"
    
    var called = false
    
    type T struct {
    	once sync.Once
    }
    
    func (t *T) M() {
    	called = true
    }
    
    func main() {
    	var t T
    	t.once.Do(t.M)
    	if !called {
    		panic("not called")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 419 bytes
    - Viewed (0)
  7. src/internal/nettrace/nettrace.go

    	// ConnectStart is called before a Dial, excluding Dials made
    	// during DNS lookups. In the case of DualStack (Happy Eyeballs)
    	// dialing, this may be called multiple times, from multiple
    	// goroutines.
    	ConnectStart func(network, addr string)
    
    	// ConnectDone is called after a Dial with the results, excluding
    	// Dials made during DNS lookups. It may also be called multiple
    	// times, like ConnectStart.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:57:14 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/api/internal/tasks/SnapshotTaskInputsBuildOperationType.java

                 */
                void preRoot(VisitState state);
    
                /**
                 * Called before entering a directory.
                 * <p>
                 * {@link VisitState#getName()} and {@link VisitState#getPath()} may be called during.
                 */
                void preDirectory(VisitState state);
    
                /**
                 * Called when visiting a non-directory file.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 17:46:30 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  9. test/fixedbugs/bug286.go

    	x.(J).f()
    	if callee != "f" {
    		println("test1 called", callee)
    		error_ = true
    	}
    }
    
    func test2(x I) {
    	type J interface {
    		g()
    		I
    	}
    	x.(J).f()
    	if callee != "f" {
    		println("test2 called", callee)
    		error_ = true
    	}
    }
    
    type J interface {
    	g()
    	I
    }
    
    func test3(x I) {
    	x.(J).f()
    	if callee != "f" {
    		println("test3 called", callee)
    		error_ = true
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 1.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/client-go/applyconfigurations/core/v1/probe.go

    // If called multiple times, the TimeoutSeconds field is set to the value of the last call.
    func (b *ProbeApplyConfiguration) WithTimeoutSeconds(value int32) *ProbeApplyConfiguration {
    	b.TimeoutSeconds = &value
    	return b
    }
    
    // WithPeriodSeconds sets the PeriodSeconds field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 17 17:31:23 UTC 2021
    - 5.7K bytes
    - Viewed (0)
Back to top