Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 831 for Initial (0.25 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/ModelNode.java

        enum State {
            Registered(true), // Initial state. Only path and some projections are known here
            Discovered(true), // All projections are defined
            Created(true), // Private data has been created, initial rules discovered
            DefaultsApplied(true), // Default values have been applied
            Initialized(true),
            Mutated(true),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  2. src/runtime/debug/garbage.go

    // the soft memory limit in more detail, as well as a variety of common
    // use-cases and scenarios.
    //
    // The initial setting is math.MaxInt64 unless the GOMEMLIMIT
    // environment variable is set, in which case it provides the initial
    // setting. GOMEMLIMIT is a numeric value in bytes with an optional
    // unit suffix. The supported suffixes include B, KiB, MiB, GiB, and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/controller/controller_test.go

    					HealthChecks: []healthz.HealthChecker{
    						&mockHealthChecker{
    							pluginName: "valid-plugin",
    							err:        nil,
    						},
    					},
    					// hash of initial "testdata/ec_config.yaml" config file before reloading
    					EncryptionFileContentHash: "k8s:enc:unstable:1:6bc9f4aa2e5587afbb96074e1809550cbc4de3cc3a35717dac8ff2800a147fd3",
    				}, nil
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  4. src/crypto/aes/gcm_s390x.go

    		for i := range src {
    			dst[i] = src[i] ^ x[i]
    		}
    		cnt.inc()
    	}
    }
    
    // deriveCounter computes the initial GCM counter state from the given nonce.
    // See NIST SP 800-38D, section 7.1.
    func (g *gcmAsm) deriveCounter(nonce []byte) gcmCount {
    	// GCM has two modes of operation with respect to the initial counter
    	// state: a "fast path" for 96-bit (12-byte) nonces, and a "slow path"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top