Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 137 for UNIMPLEMENTED (0.18 sec)

  1. src/cmd/vendor/golang.org/x/text/cases/cases.go

    var (
    	// NoLower disables the lowercasing of non-leading letters for a title
    	// caser.
    	NoLower Option = noLower
    
    	// Compact omits mappings in case folding for characters that would grow the
    	// input. (Unimplemented.)
    	Compact Option = compact
    )
    
    // TODO: option to preserve a normal form, if applicable?
    
    type options struct {
    	noLower bool
    	simple  bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/text/unicode/bidi/bidi.go

    // // LevelFunc sets a function that associates nesting levels with the given text.
    // // The levels function will be called with monotonically increasing values for p.
    // func LevelFunc(levels func(p int) int) Option {
    // 	panic("unimplemented")
    // }
    
    // DefaultDirection sets the default direction for a Paragraph. The direction is
    // overridden if the text contains directional characters.
    func DefaultDirection(d Direction) Option {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 15 19:02:39 UTC 2021
    - 10.3K bytes
    - Viewed (0)
  3. src/runtime/sys_linux_loong64.s

    TEXT runtime·access(SB),$0-20
    	MOVV	R0, 2(R0) // unimplemented, only needed for android; declared in stubs_linux.go
    	MOVW	R0, ret+16(FP) // for vet
    	RET
    
    TEXT runtime·connect(SB),$0-28
    	MOVV	R0, 2(R0) // unimplemented, only needed for android; declared in stubs_linux.go
    	MOVW	R0, ret+24(FP) // for vet
    	RET
    
    TEXT runtime·socket(SB),$0-20
    	MOVV	R0, 2(R0) // unimplemented, only needed for android; declared in stubs_linux.go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 20:58:13 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/response_test.go

    	gvk schema.GroupVersionKind
    	obj runtime.Object
    }
    
    // DeepCopyObject implements runtime.Object interface.
    func (m *mockCacheableObject) DeepCopyObject() runtime.Object {
    	panic("DeepCopy unimplemented for mockCacheableObject")
    }
    
    // GetObjectKind implements runtime.Object interface.
    func (m *mockCacheableObject) GetObjectKind() schema.ObjectKind {
    	return m
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 18 09:07:03 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/variable_info_util.cc

          // locks we have already acquired will be released when the VariableInfo
          // objects are destroyed.
          // TODO(b/128495870) Add support for passing aliased resource variables.
          return errors::Unimplemented("Duplicate variable passed to XLA cluster");
        }
        if (variables[i]->read_only()) {
          VLOG(4) << "Acquiring reader lock for variable "
                  << reinterpret_cast<void*>(variable);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 7K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/device_executable_persistor_test.cc

                                             DefaultXlaOptions().device_type);
    
      MockXlaCompilerClient mock_client;
      EXPECT_CALL(mock_client, SerializeExecutable(_))
          .WillOnce(Return(errors::Unimplemented("Unimplemented.")));
      EXPECT_CALL(mock_client, BuildSerializedExecutable(_, _))
          .WillOnce(Return(serialized_xla_executable_));
    
      TF_ASSERT_OK_AND_ASSIGN(auto executable, BuildSampleExecutable());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  7. src/net/fd_windows.go

    		0, rsan, rsan, &lrsa, &llen, &rrsa, &rlen)
    	lsa, _ := lrsa.Sockaddr()
    	rsa, _ := rrsa.Sockaddr()
    
    	netfd.setAddr(netfd.addrFunc()(lsa), netfd.addrFunc()(rsa))
    	return netfd, nil
    }
    
    // Unimplemented functions.
    
    func (fd *netFD) dup() (*os.File, error) {
    	// TODO: Implement this, perhaps using internal/poll.DupCloseOnExec.
    	return nil, syscall.EWINDOWS
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 16:46:10 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  8. src/runtime/sys_linux_ppc64x.s

    TEXT runtime·access(SB),$0-20
    	MOVD	R0, 0(R0) // unimplemented, only needed for android; declared in stubs_linux.go
    	MOVW	R0, ret+16(FP) // for vet
    	RET
    
    TEXT runtime·connect(SB),$0-28
    	MOVD	R0, 0(R0) // unimplemented, only needed for android; declared in stubs_linux.go
    	MOVW	R0, ret+24(FP) // for vet
    	RET
    
    TEXT runtime·socket(SB),$0-20
    	MOVD	R0, 0(R0) // unimplemented, only needed for android; declared in stubs_linux.go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  9. tensorflow/c/experimental/stream_executor/stream_executor.cc

                                      uint64 size) override {
        // TODO(annarev): figure out if we should support memzero/memset
        // functionality by allocating on host and then copying to device.
        return tsl::errors::Unimplemented(
            "SynchronousMemZero is not supported by pluggable device.");
      }
      absl::Status SynchronousMemcpy(DeviceMemoryBase* gpu_dst,
                                     const void* host_src, uint64 size) override {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 14 07:39:19 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/json/json_test.go

    }
    
    func (testEncodableDuplicateTag) DeepCopyObject() runtime.Object {
    	panic("unimplemented")
    }
    
    type testEncodableTagMatchesUntaggedName struct {
    	metav1.TypeMeta `json:",inline"`
    
    	A       int
    	TaggedA int `json:"A"`
    }
    
    func (testEncodableTagMatchesUntaggedName) DeepCopyObject() runtime.Object {
    	panic("unimplemented")
    }
    
    type staticTextMarshaler int
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 04 15:55:02 UTC 2024
    - 40K bytes
    - Viewed (0)
Back to top