Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 119 of 119 for UNIMPLEMENTED (1.17 sec)

  1. src/cmd/internal/testdir/testdir_test.go

    		if err != nil {
    			t.Fatal(err)
    		}
    		return filename
    	}
    
    	long := filepath.Join(t.gorootTestDir, t.goFileName())
    	switch action {
    	default:
    		t.Fatalf("unimplemented action %q", action)
    		panic("unreachable")
    
    	case "asmcheck":
    		// Compile Go file and match the generated assembly
    		// against a set of regexps in comments.
    		ops := t.wantedAsmOpcodes(long)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  2. src/crypto/x509/x509.go

    // ErrUnsupportedAlgorithm results from attempting to perform an operation that
    // involves algorithms that are not currently implemented.
    var ErrUnsupportedAlgorithm = errors.New("x509: cannot verify signature: algorithm unimplemented")
    
    // An InsecureAlgorithmError indicates that the [SignatureAlgorithm] used to
    // generate the signature is not secure, and the signature has been rejected.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  3. tensorflow/c/c_api_test.cc

      EXPECT_EQ(TF_OUT_OF_RANGE,
                static_cast<TF_Code>(tensorflow::error::OUT_OF_RANGE));
      EXPECT_EQ(TF_UNIMPLEMENTED,
                static_cast<TF_Code>(tensorflow::error::UNIMPLEMENTED));
      EXPECT_EQ(TF_INTERNAL, static_cast<TF_Code>(tensorflow::error::INTERNAL));
      EXPECT_EQ(TF_UNAVAILABLE,
                static_cast<TF_Code>(tensorflow::error::UNAVAILABLE));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 96.9K bytes
    - Viewed (0)
  4. src/runtime/pprof/pprof_test.go

    		count := uintptr(sample.Value[0])
    		f(count, sample.Location, sample.Label)
    	}
    	return p
    }
    
    func cpuProfilingBroken() bool {
    	switch runtime.GOOS {
    	case "plan9":
    		// Profiling unimplemented.
    		return true
    	case "aix":
    		// See https://golang.org/issue/45170.
    		return true
    	case "ios", "dragonfly", "netbsd", "illumos", "solaris":
    		// See https://golang.org/issue/13841.
    		return true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. RELEASE.md

        *   (since v2.7) Run `tf.scatter_nd` and other related scatter functions,
            such as `tf.tensor_scatter_nd_update`, on CPU (with significant
            performance penalty).
        *   Add determinism-unimplemented exception-throwing to the following ops.
            When op-determinism is expected (i.e. after
            `tf.config.experimental.enable_op_determinism` has been called), an
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssagen/ssa.go

    		case ir.PAUTO:
    			// processed at each use, to prevent Addr coming
    			// before the decl.
    		default:
    			s.Fatalf("local variable with class %v unimplemented", n.Class)
    		}
    	}
    
    	s.f.OwnAux = ssa.OwnAuxCall(fn.LSym, params)
    
    	// Populate SSAable arguments.
    	for _, n := range fn.Dcl {
    		if n.Class == ir.PPARAM {
    			if s.canSSA(n) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    will return an error when trying to lookup the gradient of this op,
    because no gradient must ever be registered for this function.  This
    op exists to prevent subtle bugs from silently returning unimplemented
    gradients in some corner cases.
      }];
    
      let arguments = (ins
        Arg<TF_Tensor, [{any tensor.}]>:$input,
    
        DefaultValuedOptionalAttr<StrAttr, "\"\"">:$message
      );
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
Back to top