Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for BN_new (0.09 sec)

  1. src/crypto/internal/boring/ecdsa.go

    		return nil, nil, nil, fail("EC_KEY_get0_private_key")
    	}
    	bx := C._goboringcrypto_BN_new()
    	if bx == nil {
    		return nil, nil, nil, fail("BN_new")
    	}
    	defer C._goboringcrypto_BN_free(bx)
    	by := C._goboringcrypto_BN_new()
    	if by == nil {
    		return nil, nil, nil, fail("BN_new")
    	}
    	defer C._goboringcrypto_BN_free(by)
    	if C._goboringcrypto_EC_POINT_get_affine_coordinates_GFp(group, pt, bx, by, nil) == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 17:51:31 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/decompose_resource_ops.td

         (CreateTFReadVariableOp $src_op, $grad, $ms_resource),
         (TF_AddV2Op:$ms_new
           (TF_MulOp
             (TF_MulOp $grad, $grad),
             (TF_SubOp $one, $rho)
           ),
           (TF_MulOp
              (CreateTFReadVariableOp $src_op, $grad, $ms_resource),
              $rho
           )
         ),
         (TF_AssignVariableOp $ms_resource, $ms_new, (CreateConstBoolAttrFalse)),
         // mg = grad * (one - rho) + mg * rho;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 19:47:48 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/decompose_resource_ops.mlir

        // CHECK: [[MG_NEW:%.*]] = "tf.AddV2"([[SUB_GRAD]], [[MG_RHO]])
        // CHECK: "tf.AssignVariableOp"([[MG_HANDLE]], [[MG_NEW]])
    
        // CHECK: [[MOM:%.*]] = "tf.ReadVariableOp"([[MOM_HANDLE]])
        // CHECK: [[MOM_MOM:%.*]] = "tf.Mul"([[MOMENTUM]], [[MOM]])
        // CHECK: [[LR_GRAD:%.*]] = "tf.Mul"([[LR]], [[GRAD]])
    
        // CHECK: [[MG_MG:%.*]] = "tf.Square"([[MG_NEW]])
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 19:47:48 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  4. test/typeparam/list2.go

    		i++
    	}
    }
    
    func TestExtending() {
    	l1 := _New[int]()
    	l2 := _New[int]()
    
    	l1.PushBack(1)
    	l1.PushBack(2)
    	l1.PushBack(3)
    
    	l2.PushBack(4)
    	l2.PushBack(5)
    
    	l3 := _New[int]()
    	l3.PushBackList(l1)
    	checkList(l3, []interface{}{1, 2, 3})
    	l3.PushBackList(l2)
    	checkList(l3, []interface{}{1, 2, 3, 4, 5})
    
    	l3 = _New[int]()
    	l3.PushFrontList(l2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  5. test/typeparam/orderedmap.go

    	left, right *node[K, V]
    }
    
    // _New returns a new map. It takes a comparison function that compares two
    // keys and returns < 0 if the first is less, == 0 if they are equal,
    // > 0 if the first is greater.
    func _New[K, V any](compare func(K, K) int) *_Map[K, V] {
    	return &_Map[K, V]{compare: compare}
    }
    
    // _NewOrdered returns a new map whose key is an ordered type.
    // This is like _New, but does not require providing a compare function.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 7.1K bytes
    - Viewed (0)
  6. test/typeparam/graph.go

    	Edges() []_Edge
    }
    
    // _EdgeC is the constraints on an edge in a graph, given the _Node type.
    type _EdgeC[_Node any] interface {
    	comparable
    	Nodes() (a, b _Node)
    }
    
    // _New creates a new _Graph from a collection of Nodes.
    func _New[_Node _NodeC[_Edge], _Edge _EdgeC[_Node]](nodes []_Node) *_Graph[_Node, _Edge] {
    	return &_Graph[_Node, _Edge]{nodes: nodes}
    }
    
    // nodePath holds the path to a node during ShortestPath.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/internal/classpath/CallInterceptionClosureInstrumentingClassVisitor.java

                            Object[] locals = new Object[]{clazz.className.replaceAll("\\.", "/")};
                            // Must use an F_NEW frame, as we may encounter class versions <= V1_5, see ASM MethodWriter
                            mv.visitFrame(Opcodes.F_NEW, 1, locals, 1, new Object[]{"java/lang/Throwable"});
    
                            // finally block inlined before rethrowing a caught exception:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 20 01:16:36 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/it/admin/RoleTests.java

            final String keyProp = NAME_PREFIX + id;
            requestBody.put(KEY_PROPERTY, keyProp);
            return requestBody;
        }
    
        private static final String NEW_SUFFIX = "_new";
    
        @Override
        protected Map<String, Object> getUpdateMap() {
            final Map<String, Object> requestBody = new HashMap<>();
            requestBody.put(KEY_PROPERTY, NAME_PREFIX + NEW_SUFFIX);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/universe.go

    type builtinId int
    
    const (
    	// universe scope
    	_Append builtinId = iota
    	_Cap
    	_Clear
    	_Close
    	_Complex
    	_Copy
    	_Delete
    	_Imag
    	_Len
    	_Make
    	_Max
    	_Min
    	_New
    	_Panic
    	_Print
    	_Println
    	_Real
    	_Recover
    
    	// package unsafe
    	_Add
    	_Alignof
    	_Offsetof
    	_Sizeof
    	_Slice
    	_SliceData
    	_String
    	_StringData
    
    	// testing support
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  10. src/go/types/universe.go

    type builtinId int
    
    const (
    	// universe scope
    	_Append builtinId = iota
    	_Cap
    	_Clear
    	_Close
    	_Complex
    	_Copy
    	_Delete
    	_Imag
    	_Len
    	_Make
    	_Max
    	_Min
    	_New
    	_Panic
    	_Print
    	_Println
    	_Real
    	_Recover
    
    	// package unsafe
    	_Add
    	_Alignof
    	_Offsetof
    	_Sizeof
    	_Slice
    	_SliceData
    	_String
    	_StringData
    
    	// testing support
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.3K bytes
    - Viewed (0)
Back to top