Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 558 for zout (0.39 sec)

  1. src/crypto/internal/nistec/p256_asm_arm64.s

    	STx(y3out)
    	RET
    /* ---------------------------------------*/
    #undef y2in
    #undef x3out
    #undef y3out
    #undef z3out
    #define y2in(off) (off + 32)(b_ptr)
    #define x3out(off) (off)(b_ptr)
    #define y3out(off) (off + 32)(b_ptr)
    #define z3out(off) (off + 64)(b_ptr)
    // func p256PointAddAsm(res, in1, in2 *P256Point) int
    TEXT ·p256PointAddAsm(SB),0,$392-32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  2. pilot/pkg/security/authz/builder/testdata/http/single-policy-out.yaml

    Kuat <******@****.***> 1697560546 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 17 16:35:46 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  3. src/crypto/internal/mlkem768/mlkem768.go

    	J := sha3.NewShake256()
    	J.Write(z)
    	J.Write(c[:])
    	Kout := make([]byte, SharedKeySize)
    	J.Read(Kout)
    	var cc [CiphertextSize]byte
    	c1 := pkeEncrypt(&cc, &dk.encryptionKey, (*[32]byte)(m), r)
    
    	subtle.ConstantTimeCopy(subtle.ConstantTimeCompare(c[:], c1), Kout, Kprime)
    	return Kout
    }
    
    // parseDK parses a decryption key from its encoded form.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 28.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/resource_operation_safety_analysis_test.cc

      FunctionDefLibrary flib_def;
      FunctionDef func = FunctionDefHelper::Create(
          /*function_name=*/name, /*in_def=*/{}, /*out_def=*/{"out: float"},
          /*attr_def*/
          {}, /*node_def=*/{FunctionDefHelper::Const("one", 1.0f)},
          /*ret_def=*/{{"out", "out:output:0"}});
      *flib_def.add_function() = std::move(func);
      return flib_def;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 28 16:53:59 UTC 2020
    - 18.7K bytes
    - Viewed (0)
  5. src/net/http/response_test.go

    		}
    		rbody := resp.Body
    		resp.Body = nil
    		diff(t, fmt.Sprintf("#%d Response", i), resp, &tt.Resp)
    		var bout strings.Builder
    		if rbody != nil {
    			_, err = io.Copy(&bout, rbody)
    			if err != nil {
    				t.Errorf("#%d: %v", i, err)
    				continue
    			}
    			rbody.Close()
    		}
    		body := bout.String()
    		if body != tt.Body {
    			t.Errorf("#%d: Body = %q want %q", i, body, tt.Body)
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 19:01:29 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/cc/report_test.cc

        func.func @main(%arg0: tensor<1x2xf32>) -> tensor<1x3xf32> {
          %0 = stablehlo.constant dense<3.000000e+0> : tensor<2x3xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 10:10:34 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/runtime/scheme_test.go

    				}
    				if !reflect.DeepEqual(out, test.out) {
    					t.Fatalf("unexpected out: %s", cmp.Diff(out, test.out))
    				}
    				unsafe, err := test.scheme.UnsafeConvertToVersion(test.in, test.gv)
    				if err != nil {
    					t.Fatalf("unexpected error: %v", err)
    				}
    				if !reflect.DeepEqual(unsafe, test.out) {
    					t.Fatalf("unexpected unsafe: %s", cmp.Diff(unsafe, test.out))
    				}
    				if unsafe != test.in {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 38.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/PPC64Ops.go

    		{name: "ADDE", argLength: 3, reg: gp2xer1xer, asm: "ADDE", typ: "(UInt64, UInt64)", commutative: true}, // arg0 + arg1 + CA (arg2) -> out, CA
    		{name: "ADDZE", argLength: 2, reg: gp1xer1xer, asm: "ADDZE", typ: "(UInt64, UInt64)"},                  // arg0 + CA (arg1) -> out, CA
    		{name: "SUBE", argLength: 3, reg: gp2xer1xer, asm: "SUBE", typ: "(UInt64, UInt64)"},                    // arg0 - arg1 - CA (arg2) -> out, CA
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/internal/mlir_bridge_pass_util_test.cc

    FunctionDef PassThroughResource() {
      return FunctionDefHelper::Define(
          /*function_name=*/"PassThroughResource",
          /*arg_def=*/{"in: resource"},
          /*ret_def=*/{"out: resource"},
          /*attr_def=*/{},
          /*node_def=*/
          {{{"out"}, "Identity", {"in"}, {{"T", DataType::DT_RESOURCE}}}});
    }
    
    TEST(IsSupportedByNonReplicatedBridge, NonReplicatedGraph) {
      const FunctionDef& fd = PassThroughResource();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 19:51:50 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  10. pilot/pkg/security/authz/builder/testdata/http/allow-full-rule-out.yaml

    Jackie Elliott <******@****.***> 1713578333 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 20 01:58:53 UTC 2024
    - 32.6K bytes
    - Viewed (0)
Back to top