Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 3,575 for halted (0.26 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/client/applyconfiguration/apiextensions/v1/jsonschemaprops.go

    // If called multiple times, the Type field is set to the value of the last call.
    func (b *JSONSchemaPropsApplyConfiguration) WithType(value string) *JSONSchemaPropsApplyConfiguration {
    	b.Type = &value
    	return b
    }
    
    // WithFormat sets the Format 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: Mon Aug 28 12:38:10 UTC 2023
    - 25.2K bytes
    - Viewed (0)
  2. test/retjmp.dir/main.go

    func leaf2()
    
    var f1called, f2called, f3called, f4called bool
    
    func main() {
    	f()
    	if !f1called {
    		panic("f1 not called")
    	}
    	if !f2called {
    		panic("f2 not called")
    	}
    	leaf()
    	if !f3called {
    		panic("f3 not called")
    	}
    	leaf2()
    	if !f4called {
    		panic("f4 not called")
    	}
    }
    
    func f1() { f1called = true }
    func f2() { f2called = true }
    func f3() { f3called = true }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 22:42:08 UTC 2021
    - 655 bytes
    - Viewed (0)
  3. 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)
  4. staging/src/k8s.io/client-go/applyconfigurations/core/v1/podspec.go

    }
    
    // WithVolumes adds the given value to the Volumes field in the declarative configuration
    // and returns the receiver, so that objects can be build by chaining "With" function invocations.
    // If called multiple times, values provided by each call will be appended to the Volumes field.
    func (b *PodSpecApplyConfiguration) WithVolumes(values ...*VolumeApplyConfiguration) *PodSpecApplyConfiguration {
    	for i := range values {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 10 19:22:42 UTC 2022
    - 23.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/client-go/applyconfigurations/core/v1/persistentvolumesource.go

    }
    
    // WithGCEPersistentDisk sets the GCEPersistentDisk 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 GCEPersistentDisk field is set to the value of the last call.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 13.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/client-go/applyconfigurations/core/v1/event.go

    // If called multiple times, the LastTimestamp field is set to the value of the last call.
    func (b *EventApplyConfiguration) WithLastTimestamp(value metav1.Time) *EventApplyConfiguration {
    	b.LastTimestamp = &value
    	return b
    }
    
    // WithCount sets the Count 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 Mar 23 17:59:55 UTC 2022
    - 17.8K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top