Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 137 for clobber (0.16 sec)

  1. src/runtime/mfinal_test.go

    		// Test case for argument spill slot.
    		// If the spill slot was not counted for the frame size, it will (incorrectly) choose
    		// call32 as the result has (exactly) 32 bytes. When the argument actually spills,
    		// it clobbers the caller's frame (likely the return PC).
    		{func(x *int) any { return x }, func(v any) [4]int64 {
    			print() // force spill
    			finalize(v.(*int))
    			return [4]int64{}
    		}},
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 20:45:58 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  2. src/crypto/internal/edwards25519/field/fe_alias_test.go

    // leading to incorrect results. That is, it ensures that it's safe to write
    //
    //	v.Invert(v)
    //
    // or
    //
    //	v.Add(v, v)
    //
    // without any of the inputs getting clobbered by the output being written.
    func TestAliasing(t *testing.T) {
    	type target struct {
    		name     string
    		oneArgF  func(v, x *Element) *Element
    		twoArgsF func(v, x, y *Element) *Element
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 17:26:17 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/execution/TestWithCompiler.kt

    internal
    inline fun safeMockProgramHost(stubbing: KStubbing<ExecutableProgram.Host>.(ExecutableProgram.Host) -> Unit = {}) =
        mock<ExecutableProgram.Host> {
            // Add a custom exception handler so that they don't get clobbered.
            on { handleScriptException(any(), any(), any()) } doAnswer { invocation ->
                val throwable: Throwable = invocation.getArgument(0)
                val scriptClass: Class<*> = invocation.getArgument(1)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 19:59:56 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  4. pkg/test/framework/components/zipkin/kube.go

      # routed to this address.
      - address: {INGRESS_DOMAIN}
        ports:
          http-tracing-span: 15443 # Do not change this port value
    `
    )
    
    var (
    	_ Instance  = &kubeComponent{}
    	_ io.Closer = &kubeComponent{}
    )
    
    type kubeComponent struct {
    	id        resource.ID
    	address   string
    	forwarder istioKube.PortForwarder
    	cluster   cluster.Cluster
    }
    
    func getZipkinYaml() (string, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 14 19:29:38 UTC 2023
    - 8K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/ModelSetNodeInitializerExtractionStrategy.java

                NodeBackedModelSet<T> set = new NodeBackedModelSet<T>(setType, elementType, ruleDescriptor, modelNode, state, childStrategy);
                return InstanceModelView.of(modelNode.getPath(), setType, set, state.closer());
            }
    
            @Override
            public boolean equals(Object o) {
                if (this == o) {
                    return true;
                }
                if (o == null || getClass() != o.getClass()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/ScalarCollectionModelView.java

            Collection<E> delegate = initialValue();
            setBackingValue(delegate);
            return delegate;
        }
    
        @Override
        public void close() {
            C instance = getInstance();
            state.closer().execute(instance);
        }
    
        protected abstract C initialValue();
    
        @SuppressWarnings("unchecked")
        public Object setValue(Object values) {
            state.assertCanMutate();
            if (values == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/TransformBackedProvider.java

     *
     * <p>This provider checks that the contents of value have been built prior to running the transform, as the transform may use the content.
     * This check should move further upstream in the future, closer to the producer of the content.</p>
     *
     * @see ProviderInternal for a discussion of the "value" and "value contents".
     */
    public class TransformBackedProvider<OUT, IN> extends AbstractMinimalProvider<OUT> {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 17 23:22:41 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  8. src/net/rpc/jsonrpc/client.go

    import (
    	"encoding/json"
    	"fmt"
    	"io"
    	"net"
    	"net/rpc"
    	"sync"
    )
    
    type clientCodec struct {
    	dec *json.Decoder // for reading JSON values
    	enc *json.Encoder // for writing JSON values
    	c   io.Closer
    
    	// temporary work space
    	req  clientRequest
    	resp clientResponse
    
    	// JSON-RPC responses include the request id but not the request method.
    	// Package rpc expects both.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 3K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/tighten.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package ssa
    
    import "cmd/compile/internal/base"
    
    // tighten moves Values closer to the Blocks in which they are used.
    // This can reduce the amount of register spilling required,
    // if it doesn't also create more live values.
    // A Value can be moved to any block that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 16 01:01:38 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  10. src/net/rpc/jsonrpc/all_test.go

    	}
    }
    
    func TestServerErrorHasNullResult(t *testing.T) {
    	var out strings.Builder
    	sc := NewServerCodec(struct {
    		io.Reader
    		io.Writer
    		io.Closer
    	}{
    		Reader: strings.NewReader(`{"method": "Arith.Add", "id": "123", "params": []}`),
    		Writer: &out,
    		Closer: io.NopCloser(nil),
    	})
    	r := new(rpc.Request)
    	if err := sc.ReadRequestHeader(r); err != nil {
    		t.Fatal(err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 07 01:09:53 UTC 2022
    - 7.8K bytes
    - Viewed (0)
Back to top