Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 816 for Initial (0.18 sec)

  1. platforms/core-configuration/flow-services/src/main/kotlin/org/gradle/internal/flow/services/BuildFlowScope.kt

            }
    
            protected
            fun illegalState(): Nothing = throw IllegalStateException("This operation is not supported while in the ${javaClass.simpleName} state.")
    
            class Initial() : State() {
    
                private
                val actions = mutableListOf<RegisteredFlowAction>()
    
                override val pendingActions: List<RegisteredFlowAction>
                    get() = actions
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:59:39 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/crypto/sha3/shake.go

    	// by the method specified in 3.3 of [1].
    	// It is stored here in order for Reset() to be able to put context into
    	// initial state.
    	initBlock []byte
    }
    
    // Consts for configuring initial SHA-3 state
    const (
    	dsbyteShake  = 0x1f
    	dsbyteCShake = 0x04
    	rate128      = 168
    	rate256      = 136
    )
    
    func bytepad(input []byte, w int) []byte {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/MutableReferenceTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.internal
    
    import spock.lang.Specification
    
    class MutableReferenceTest extends Specification {
    
        def "initial value is kept"() {
            def object = "object"
            expect:
            MutableReference.empty().get() == null
            MutableReference.of(null).get() == null
            MutableReference.of(object).get() is object
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/protocol/ConnectionParameters.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.tooling.internal.protocol;
    
    /**
     * Initial configuration for a provider connection.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/util.go

    	}
    	return uint64(currentResourceVersion), nil
    }
    
    // AnnotateInitialEventsEndBookmark adds a special annotation to the given object
    // which indicates that the initial events have been sent.
    //
    // Note that this function assumes that the obj's annotation
    // field is a reference type (i.e. a map).
    func AnnotateInitialEventsEndBookmark(obj runtime.Object) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:05:06 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  6. tensorflow/cc/saved_model/fingerprinting_utils.h

    using ::tensorflow::protobuf::Map;
    using ::tensorflow::protobuf::Message;
    using ::tensorflow::protobuf::RepeatedPtrField;
    
    // Number of sequential FieldIndex matches of `a` in `b`. (Length of initial
    // subsequence.)
    // Example: `a = {4, 2}`, `b = {4, 2, 1, 3}`, `fieldTagMatches(a, b) == 2`
    absl::StatusOr<int> fieldTagMatches(
        const RepeatedPtrField<::tensorflow::proto_splitter::FieldIndex>& a,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 20 22:19:55 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/test/groovy/org/gradle/api/tasks/compile/ForkOptionsTest.groovy

    class ForkOptionsTest extends Specification {
        static final List PROPS = ['executable', 'memoryInitialSize', 'memoryMaximumSize', 'tempDir']
    
        ForkOptions forkOptions = TestUtil.newInstance(ForkOptions)
    
        def 'initial values of forkOptions'() {
            expect:
            forkOptions.executable == null
            forkOptions.javaHome == null
            forkOptions.memoryInitialSize == null
            forkOptions.memoryMaximumSize == null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  8. pkg/kube/krt/singleton.go

    func (d dummyValue) ResourceName() string {
    	return ""
    }
    
    type StaticSingleton[T any] interface {
    	Singleton[T]
    	Set(*T)
    }
    
    func NewStatic[T any](initial *T) StaticSingleton[T] {
    	val := new(atomic.Pointer[T])
    	val.Store(initial)
    	x := &static[T]{
    		val:           val,
    		id:            nextUID(),
    		eventHandlers: &handlers[T]{},
    	}
    	return collectionAdapter[T]{x}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  9. pkg/controller/statefulset/stateful_set_control_test.go

    		name       string
    		invariants func(set *apps.StatefulSet, om *fakeObjectManager) error
    		initial    func() *apps.StatefulSet
    		update     func(set *apps.StatefulSet) *apps.StatefulSet
    		validate   func(set *apps.StatefulSet, pods []*v1.Pod) error
    	}
    
    	testFn := func(test *testcase, t *testing.T) {
    		set := test.initial()
    		client := fake.NewSimpleClientset(set)
    		om, _, ssc := setupController(client)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 19:01:47 UTC 2024
    - 108.7K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/StaleDaemonAddressException.java

     * limitations under the License.
     */
    
    package org.gradle.launcher.daemon.client;
    
    /**
     * Thrown when connected to a stale daemon address.
     *
     * This is thrown instead of using an initial handshake on the connection, to avoid the latency of a round trip to the
     * daemon before starting the build.
     */
    public class StaleDaemonAddressException extends DaemonConnectionException {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 1K bytes
    - Viewed (0)
Back to top