Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/cmd/vet/doc.go

    	directive        check Go toolchain directives such as //go:debug
    	errorsas         report passing non-pointer or non-error values to errors.As
    	framepointer     report assembly that clobbers the frame pointer before saving it
    	httpresponse     check for mistakes using HTTP responses
    	ifaceassert      detect impossible interface-to-interface type assertions
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 00:17:30 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  2. pkg/test/framework/runtime.go

    func (i *runtime) newRootContext(test *testImpl, goTest *testing.T, labels label.Set) *testContext {
    	return newTestContext(test, goTest, i.context, nil, labels)
    }
    
    // Close implements io.Closer
    func (i *runtime) Close() error {
    	return i.context.globalScope.done(i.context.settings.NoCleanup)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 26 17:50:56 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/DefaultModelViewState.java

            this.mutable = mutable;
            this.canReadChildren = canReadChildren;
        }
    
        public void close() {
            closed = true;
        }
    
        public Action<Object> closer() {
            return new Action<Object>() {
                @Override
                public void execute(Object o) {
                    close();
                }
            };
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  4. src/runtime/cgo/gcc_aix_ppc64.S

    	bl	saveregs
    	stdu	1, -296(1)
    
    	// Set up Go ABI constant registers
    	// Must match _cgo_reginit in runtime package.
    	xor 0, 0, 0
    
    	// Restore g pointer (r30 in Go ABI, which may have been clobbered by C)
    	mr	30, 4
    
    	// Call fn
    	mr	12, 3
    	mtctr	12
    	bctrl
    
    	addi	1, 1, 296
    	bl	restoreregs
    	ld	2, 40(1)
    	ld	0, 16(1)
    	mtlr	0
    	blr
    
    saveregs:
    	// Save callee-save registers
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 24 22:38:02 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/doc/c4/README.adoc

    image::images/C4_2_Container.svg[]
    
    ## Level 3: Component diagram
    
    The following diagram detail each container components and gets closer to how the Kotlin DSL is organized.
    It should be useful enough to know where to find what in the Kotlin DSL source code.
    
    image::images/C4_3_Component.svg[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Nov 19 00:01:54 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. pkg/test/echo/server/forwarder/instance.go

    // limitations under the License.
    
    package forwarder
    
    import (
    	"context"
    	"fmt"
    	"io"
    
    	"istio.io/istio/pkg/test/echo/common/scheme"
    	"istio.io/istio/pkg/test/echo/proto"
    )
    
    var _ io.Closer = &Instance{}
    
    // Instance is a client for forwarding requests to echo servers.
    type Instance struct {
    	e           *executor
    	protocolMap map[scheme.Instance]protocol
    	protocols   []protocol
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 13 17:19:22 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  7. pkg/test/framework/suitecontext.go

    }
    
    func (c *suiteContext) CleanupStrategy(strategy cleanup.Strategy, fn func()) {
    	switch strategy {
    	case cleanup.Always:
    		c.globalScope.addCloser(&closer{fn: func() error {
    			fn()
    			return nil
    		}})
    	case cleanup.Conditionally:
    		c.globalScope.addCloser(&closer{fn: func() error {
    			fn()
    			return nil
    		}, noskip: true})
    	default:
    		// No cleanup.
    		return
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  8. src/internal/bytealg/compare_arm64.s

    // On entry:
    // R0 points to the start of a
    // R1 is the length of a
    // R2 points to the start of b
    // R3 is the length of b
    //
    // On exit:
    // R0 is the result
    // R4, R5, R6, R8, R9 and R10 are clobbered
    TEXT cmpbody<>(SB),NOSPLIT|NOFRAME,$0-0
    	CMP	R0, R2
    	BEQ	samebytes         // same starting pointers; compare lengths
    	CMP	R1, R3
    	CSEL	LT, R3, R1, R6    // R6 is min(R1, R3)
    
    	CBZ	R6, samebytes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 18 18:26:13 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  9. pkg/test/framework/components/prometheus/kube.go

    	testKube "istio.io/istio/pkg/test/kube"
    	"istio.io/istio/pkg/test/scopes"
    )
    
    const (
    	serviceName = "prometheus"
    	appName     = "prometheus"
    )
    
    var (
    	_ Instance  = &kubeComponent{}
    	_ io.Closer = &kubeComponent{}
    )
    
    type kubeComponent struct {
    	id resource.ID
    
    	api       map[string]prometheusApiV1.API
    	forwarder map[string]istioKube.PortForwarder
    	clusters  cluster.Clusters
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/SpecializedModelMapProjection.java

            P instance = DirectInstantiator.instantiate(viewImpl, publicType, elementType, ruleDescriptor, modelNode, state, creatorStrategy);
            return InstanceModelView.of(modelNode.getPath(), publicType, instance, state.closer());
        }
    
        @Override
        public <T> boolean canBeViewedAs(ModelType<T> targetType) {
            return targetType.isAssignableFrom(publicType);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.4K bytes
    - Viewed (0)
Back to top