Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 137 for clobber (0.16 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/cmd/vendor/golang.org/x/text/cases/trieval.go

    const (
    	cUncased          info = iota // 000
    	cTitle                        // 001
    	cLower                        // 010
    	cUpper                        // 011
    	cIgnorableUncased             // 100
    	cIgnorableCased               // 101 // lower case if mappings exist
    	cXORCase                      // 11x // case is cLower | ((rune&1) ^ x)
    
    	maxCaseMode = cUpper
    )
    
    func (c info) isCased() bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  8. pkg/test/echo/server/endpoint/instance.go

    	ListenerIP    string
    	IstioVersion  string
    	Namespace     string
    	DisableALPN   bool
    }
    
    // Instance of an endpoint that serves the Echo application on a single port/protocol.
    type Instance interface {
    	io.Closer
    	Start(onReady OnReadyFunc) error
    	GetConfig() Config
    }
    
    // New creates a new endpoint Instance.
    func New(cfg Config) (Instance, error) {
    	if cfg.Port != nil {
    		switch cfg.Port.Protocol {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 16:20:31 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  9. internal/http/request-recorder.go

    	io.Reader
    	// Response body should be logged
    	LogBody bool
    
    	// internal recording buffer
    	buf bytes.Buffer
    	// total bytes read including header size
    	bytesRead int
    }
    
    // Close is a no operation closer
    func (r *RequestRecorder) Close() error {
    	// no-op
    	return nil
    }
    
    // Read reads from the internal reader and counts/save the body in the memory
    func (r *RequestRecorder) Read(p []byte) (n int, err error) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Apr 12 21:37:19 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  10. cmd/bitrot.go

    func closeBitrotReaders(rs []io.ReaderAt) {
    	for _, r := range rs {
    		if r != nil {
    			if br, ok := r.(io.Closer); ok {
    				br.Close()
    			}
    		}
    	}
    }
    
    // Close all the writers.
    func closeBitrotWriters(ws []io.Writer) {
    	for _, w := range ws {
    		if w != nil {
    			if bw, ok := w.(io.Closer); ok {
    				bw.Close()
    			}
    		}
    	}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jan 30 20:43:25 UTC 2024
    - 7.6K bytes
    - Viewed (0)
Back to top