Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 7,511 for implementMe (0.19 sec)

  1. internal/http/response-recorder.go

    		StartTime:      time.Now().UTC(),
    	}
    }
    
    // ErrNotImplemented when a functionality is not implemented
    var ErrNotImplemented = errors.New("not implemented")
    
    // ReadFrom implements support for calling internal io.ReaderFrom implementations
    // returns an error if the underlying ResponseWriter does not implement io.ReaderFrom
    func (lrw *ResponseRecorder) ReadFrom(r io.Reader) (int64, error) {
    	if lrw.ReaderFrom != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Dec 02 00:13:19 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/binding/StructBindings.java

     * <p>
     * When a struct type node is projected as one of its views, each method in the view must be implemented. These bindings
     * contain the information about how each view method should be implemented by the view proxy.
     * There are three ways a method can be implemented like:
     * </p>
     *
     * <ul>
     *     <li>non-abstract methods on the public view are implemented by the view itself (see {@link DirectMethodBinding})</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/protocol/ConnectionVersion4.java

     * <li>Implementations must be thread-safe.
     * <li>Implementations should implement {@link InternalInvalidatableVirtualFileSystemConnection}. This is used by all consumer versions from 6.1.
     * <li>Implementations should implement {@link org.gradle.tooling.internal.protocol.test.InternalTestExecutionConnection}. This is used by all consumer versions from 2.6-rc-1.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  4. src/crypto/aes/modes_test.go

    	b := cipher.Block(&testBlock{})
    	if _, ok := b.(gcmAble); !ok {
    		t.Fatalf("testBlock does not implement the gcmAble interface")
    	}
    	aead, err := cipher.NewGCM(b)
    	if err != nil {
    		t.Fatalf("%v", err)
    	}
    	if _, ok := aead.(testInterface); !ok {
    		t.Fatalf("cipher.NewGCM did not use gcmAble interface")
    	}
    }
    
    // testBlockMode implements the cipher.BlockMode interface.
    type testBlockMode struct{}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 14 15:32:26 UTC 2018
    - 3.5K bytes
    - Viewed (0)
  5. guava/src/com/google/common/graph/AbstractValueGraph.java

    import java.util.Set;
    import javax.annotation.CheckForNull;
    
    /**
     * This class provides a skeletal implementation of {@link ValueGraph}. It is recommended to extend
     * this class rather than implement {@link ValueGraph} directly.
     *
     * <p>The methods implemented in this class should not be overridden unless the subclass admits a
     * more efficient implementation.
     *
     * @author James Sexton
     * @param <N> Node parameter type
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 17 13:59:28 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  6. pkg/volume/util/hostutil/fake_hostutil.go

    }
    
    // GetOwner returns the integer ID for the user and group of the given path
    // Not implemented for testing
    func (hu *FakeHostUtil) GetOwner(pathname string) (int64, int64, error) {
    	return -1, -1, errors.New("GetOwner not implemented")
    }
    
    // GetSELinuxSupport tests if pathname is on a mount that supports SELinux.
    // Not implemented for testing
    func (hu *FakeHostUtil) GetSELinuxSupport(pathname string) (bool, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 13:32:38 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  7. src/math/stubs.go

    	panic("not implemented")
    }
    
    const haveArchCos = false
    
    func archCos(x float64) float64 {
    	panic("not implemented")
    }
    
    const haveArchCosh = false
    
    func archCosh(x float64) float64 {
    	panic("not implemented")
    }
    
    const haveArchErf = false
    
    func archErf(x float64) float64 {
    	panic("not implemented")
    }
    
    const haveArchErfc = false
    
    func archErfc(x float64) float64 {
    	panic("not implemented")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 2.6K bytes
    - Viewed (0)
  8. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testng/TestNGMultiVersionTest.groovy

                // TODO implement this if needed
                throw new UnsupportedOperationException()
            }
    
            @Override
            String getExcludeCategoryOrTagConfigurationElement() {
                // TODO implement this if needed
                throw new UnsupportedOperationException()
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  9. pkg/hbone/util.go

    	buf1 := bufferPoolCopy.Get().([]byte)
    	// nolint: staticcheck
    	defer bufferPoolCopy.Put(buf1)
    	bufCap := cap(buf1)
    	buf := buf1[0:bufCap:bufCap]
    
    	// For netstack: src is a gonet.Conn, doesn't implement WriterTo. Dst is a net.TcpConn - and implements ReadFrom.
    	// CopyBuffered is the actual implementation of Copy and CopyBuffer.
    	// if buf is nil, one is allocated.
    	// Duplicated from io
    
    	// This will prevent stats from working.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  10. cluster/skeleton/util.sh

    function kube-down {
    	echo "Skeleton Provider: kube-down not implemented" 1>&2
    }
    
    # Execute prior to running tests to build a release if required for env
    function test-build-release {
    	echo "Skeleton Provider: test-build-release not implemented" 1>&2
    }
    
    # Execute prior to running tests to initialize required structure
    function test-setup {
    	echo "Skeleton Provider: test-setup not implemented" 1>&2
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Oct 13 00:54:20 UTC 2018
    - 2.4K bytes
    - Viewed (0)
Back to top