Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 90 for clobber (0.12 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top