Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,487 for unimplement (0.26 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/TestNGExecutionResult.groovy

        }
    
        boolean testClassExists(String testClass) {
            throw new UnsupportedOperationException("Unsupported. Implement if you need it.")
        }
    
        boolean testClassDoesNotExist(String testClass) {
            throw new UnsupportedOperationException("Unsupported. Implement if you need it.")
        }
    
        TestClassExecutionResult testClass(String testClass) {
            parseResults()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  2. test/fixedbugs/bug248.dir/bug2.go

    var i0 I0 = t0(0) // ok
    var i1 I1 = t1(0) // ok
    
    var i2 I0 = t1(0) // ERROR "does not implement|incompatible"
    var i3 I1 = t0(0) // ERROR "does not implement|incompatible"
    
    var p0i p0.I = t0(0) // ok
    var p1i p1.I = t1(0) // ok
    
    var p0i1 p0.I = t1(0) // ERROR "does not implement|incompatible"
    var p0i2 p1.I = t0(0) // ERROR "does not implement|incompatible"
    
    func foobar() {
    	// check that cannot assign one to the other,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 19 06:26:35 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/artifacts/FileCollectionDependency.java

        /**
         * {@inheritDoc}
         *
         * @deprecated This class will no longer implement {@link SelfResolvingDependency} in Gradle 9.0.
         */
        @Override
        @Deprecated
        TaskDependency getBuildDependencies();
    
        /**
         * {@inheritDoc}
         *
         * @deprecated This class will no longer implement {@link SelfResolvingDependency} in Gradle 9.0. Use {@link #getFiles()} instead.
         */
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 11:17:19 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  4. pkg/kube/krt/static.go

    		return &o
    	}
    	return nil
    }
    
    // nolint: unused // (not true, its to implement an interface)
    func (s *staticList[T]) name() string {
    	return "staticList"
    }
    
    // nolint: unused // (not true, its to implement an interface)
    func (s *staticList[T]) uid() collectionUID {
    	return s.id
    }
    
    // nolint: unused // (not true, its to implement an interface)
    func (s *staticList[T]) dump() {
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  5. pkg/kubelet/prober/prober.go

    	return eic.run()
    }
    
    func (eic *execInContainer) Output() ([]byte, error) {
    	return nil, fmt.Errorf("unimplemented")
    }
    
    func (eic *execInContainer) SetDir(dir string) {
    	// unimplemented
    }
    
    func (eic *execInContainer) SetStdin(in io.Reader) {
    	// unimplemented
    }
    
    func (eic *execInContainer) SetStdout(out io.Writer) {
    	eic.writer = out
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 10:50:13 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/filesystem/plugins/windows/windows_filesystem.cc

    namespace tf_random_access_file {
    
    // TODO(b/139060984): Implement later
    
    }  // namespace tf_random_access_file
    
    // SECTION 2. Implementation for `TF_WritableFile`
    // ----------------------------------------------------------------------------
    namespace tf_writable_file {
    
    // TODO(b/139060984): Implement later
    
    }  // namespace tf_writable_file
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 20 06:38:26 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/lift_variables_test_pass.h

      Status Create(const tensorflow::GraphDef& graph) override {
        return tensorflow::errors::Unimplemented("not available");
      }
      Status Extend(const tensorflow::GraphDef& graph) override {
        return tensorflow::errors::Unimplemented("not available");
      }
    
      Status Close() override {
        return tensorflow::errors::Unimplemented("not available");
      }
    
      Status ListDevices(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 21 15:49:06 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  8. pkg/test/framework/components/namespace/static.go

    }
    
    func (s Static) Prefix() string {
    	return string(s)
    }
    
    func (s Static) Labels() (map[string]string, error) {
    	panic("implement me")
    }
    
    func (s Static) SetLabel(key, value string) error {
    	panic("implement me")
    }
    
    func (s Static) RemoveLabel(key string) error {
    	panic("implement me")
    }
    
    func (s Static) IsAmbient() bool {
    	return strings.Contains(string(s), "ambient")
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 26 21:45:22 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  9. internal/etag/reader.go

    type UUIDHash struct {
    	uuid []byte
    }
    
    // Write -  implement hash.Hash Write
    func (u UUIDHash) Write(p []byte) (n int, err error) {
    	return len(p), nil
    }
    
    // Sum -  implement md5.Sum
    func (u UUIDHash) Sum(b []byte) []byte {
    	return u.uuid
    }
    
    // Reset -  implement hash.Hash Reset
    func (u UUIDHash) Reset() {
    	return
    }
    
    // Size -  implement hash.Hash Size
    func (u UUIDHash) Size() int {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  10. tensorflow/c/kernels_experimental.h

    #ifdef __cplusplus
    extern "C" {
    #endif
    
    typedef struct TF_VariableInputLockHolder TF_VariableInputLockHolder;
    
    // Expose higher level Assignment operation for Pluggable vendors to implement
    // in the plugin for Training. The API takes in the context with indices for
    // the input and value tensors. It also accepts the copy callback provided by
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 07 14:44:39 UTC 2023
    - 9.4K bytes
    - Viewed (0)
Back to top