Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for UNIMPLEMENTED (0.14 sec)

  1. tensorflow/c/c_api.cc

    TF_WhileParams TF_NewWhile(TF_Graph* g, TF_Output* inputs, int ninputs,
                               TF_Status* status) {
    #if defined(IS_MOBILE_PLATFORM) || defined(IS_SLIM_BUILD)
      status->status = tensorflow::errors::Unimplemented(
          "Creating while loops is not supported on mobile. File a bug at "
          "https://github.com/tensorflow/tensorflow/issues if this feature is "
          "important to you");
      return EmptyWhileParams();
    #else
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

     private:
      bool IsUnique(llvm::StringRef name) override {
        return !flib_.Contains(std::string(name));
      }
    
      std::string GetName(OpOrVal op_or_val) override {
        DCHECK(false) << "Unimplemented";
        return "";
      }
    
      const FunctionLibraryDefinition& flib_;
    };
    
    // Stateful helper class to import a TensorFlow model into an MLIR Module.
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  3. src/crypto/x509/verify_test.go

    	}
    }
    
    func expectHashError(t *testing.T, err error) {
    	if err == nil {
    		t.Fatalf("no error resulted from invalid hash")
    	}
    	if expected := "algorithm unimplemented"; !strings.Contains(err.Error(), expected) {
    		t.Fatalf("error resulting from invalid hash didn't contain '%s', rather it was: %v", expected, err)
    	}
    }
    
    func expectNameConstraintsError(t *testing.T, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  4. src/crypto/x509/x509_test.go

    				IsCA:                  true,
    				PublicKeyAlgorithm:    UnknownPublicKeyAlgorithm,
    				PublicKey:             goodKey.Public(),
    			},
    			err: "x509: cannot verify signature: algorithm unimplemented",
    		},
    		{
    			name: "wrong key",
    			issuer: &Certificate{
    				Version:               3,
    				BasicConstraintsValid: true,
    				IsCA:                  true,
    				PublicKeyAlgorithm:    ECDSA,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  5. src/net/http/server.go

    				// Respond as per RFC 7230 Section 3.3.1 which says,
    				//      A server that receives a request message with a
    				//      transfer coding it does not understand SHOULD
    				//      respond with 501 (Unimplemented).
    				code := StatusNotImplemented
    
    				// We purposefully aren't echoing back the transfer-encoding's value,
    				// so as to mitigate the risk of cross side scripting by an attacker.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
Back to top