Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 70 for UNIMPLEMENTED (0.19 sec)

  1. pilot/pkg/security/authz/model/generator.go

    	return nil, fmt.Errorf("unimplemented")
    }
    
    func (envoyFilterGenerator) extendedPrincipal(_ string, _ []string, _ bool) (*rbacpb.Principal, error) {
    	return nil, fmt.Errorf("unimplemented")
    }
    
    type srcIPGenerator struct{}
    
    func (srcIPGenerator) permission(_, _ string, _ bool) (*rbacpb.Permission, error) {
    	return nil, fmt.Errorf("unimplemented")
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 18:02:42 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/filesystem/modular_filesystem.cc

    Status ModularFileSystem::NewRandomAccessFile(
        const std::string& fname, TransactionToken* token,
        std::unique_ptr<RandomAccessFile>* result) {
      if (ops_->new_random_access_file == nullptr)
        return errors::Unimplemented(tensorflow::strings::StrCat(
            "Filesystem for ", fname, " does not support NewRandomAccessFile()"));
    
      UniquePtrTo_TF_Status plugin_status(TF_NewStatus(), TF_DeleteStatus);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 23.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/c/c_api_unified_experimental_mlir.cc

                                         size_t length) {
      return Unimplemented("SetAttrString has not been implemented yet.");
    }
    Status MlirAbstractOp::SetAttrInt(const char* attr_name, int64_t value) {
      return Unimplemented("SetAttrInt has not been implemented yet.");
    }
    Status MlirAbstractOp::SetAttrFloat(const char* attr_name, float value) {
      return Unimplemented("SetAttrFloat has not been implemented yet.");
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/api/meta/help_test.go

    	metav1.TypeMeta
    	metav1.ListMeta
    	Items []Foo
    }
    
    func (s *FooList) DeepCopyObject() runtime.Object { panic("unimplemented") }
    
    type SampleList struct {
    	metav1.TypeMeta
    	metav1.ListMeta
    	Items []Sample
    }
    
    func (s *SampleList) DeepCopyObject() runtime.Object { panic("unimplemented") }
    
    type RawExtensionList struct {
    	metav1.TypeMeta
    	metav1.ListMeta
    
    	Items []runtime.RawExtension
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 29 13:40:46 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  5. tensorflow/c/eager/c_api_unified_experimental_graph.cc

        return absl::OkStatus();
      }
    
      Status RegisterFunction(AbstractFunction* func) override {
        return errors::Unimplemented(
            "Registering graph functions has not been implemented yet.");
      }
    
      Status RemoveFunction(const string& func) override {
        return errors::Unimplemented(
            "GraphContext::RemoveFunction has not been implemented yet.");
      }
      // For LLVM style RTTI.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 20:00:09 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/utils/export_utils.cc

          continue;
        }
        if (mlir::isa<mlir::AffineMapAttr>(attr)) {
          // AffineMapAttr is not implemented.
          return errors::Unimplemented("AffineMap attribute (needed for '",
                                       name_strref, "') unimplemented");
        }
        TF_RETURN_IF_ERROR(
            llvm::TypeSwitch<mlir::Attribute, Status>(attr)
                .Case<mlir::BoolAttr, mlir::IntegerAttr, mlir::FloatAttr,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  7. src/cmd/link/internal/s390x/asm.go

    		ldr.Errorf(s, "unimplemented S390x relocation: %v", r.Type()-objabi.ElfRelocOffset)
    		return false
    
    	case objabi.ElfRelocOffset + objabi.RelocType(elf.R_390_GLOB_DAT):
    		ldr.Errorf(s, "unimplemented S390x relocation: %v", r.Type()-objabi.ElfRelocOffset)
    		return false
    
    	case objabi.ElfRelocOffset + objabi.RelocType(elf.R_390_JMP_SLOT):
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 05:58:20 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  8. tensorflow/c/eager/gradients.cc

      return tensorflow::errors::Unimplemented(
          "SetAttrFunction has not been implemented yet.");
    }
    Status SetAttrFunctionName(AbstractOperation* op_, const char* attr_name,
                               const char* value, size_t length,
                               ForwardOperation* forward_op_) {
      return tensorflow::errors::Unimplemented(
          "SetAttrFunctionName has not been implemented "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 15 09:49:45 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  9. src/runtime/sys_linux_mips64x.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: Tue Oct 18 20:57:24 UTC 2022
    - 12K bytes
    - Viewed (0)
  10. security/pkg/nodeagent/sds/sdsservice.go

    func (s *sdsservice) DeltaSecrets(stream sds.SecretDiscoveryService_DeltaSecretsServer) error {
    	return status.Error(codes.Unimplemented, "DeltaSecrets not implemented")
    }
    
    func (s *sdsservice) FetchSecrets(ctx context.Context, discReq *discovery.DiscoveryRequest) (*discovery.DiscoveryResponse, error) {
    	return nil, status.Error(codes.Unimplemented, "FetchSecrets not implemented")
    }
    
    func (s *sdsservice) Close() {
    	close(s.stop)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat May 25 00:20:04 UTC 2024
    - 10.9K bytes
    - Viewed (0)
Back to top