Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 22 for BN_new (0.12 sec)

  1. tests/upsert_test.go

    	} else if len(langs3) != 3 {
    		t.Errorf("should only find only 3 languages, but got %+v", langs3)
    	}
    
    	for idx, lang := range langs {
    		lang.Name = lang.Name + "_new"
    		langs[idx] = lang
    	}
    
    	if err := DB.Clauses(clause.OnConflict{
    		Columns:   []clause.Column{{Name: "code"}},
    		DoUpdates: clause.AssignmentColumns([]string{"name"}),
    	}).Create(&langs).Error; err != nil {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Sep 05 07:39:19 UTC 2022
    - 11.4K bytes
    - Viewed (0)
  2. src/go/types/builtins.go

    	var args []*operand // not valid for _Make, _New, _Offsetof, _Trace
    	var nargs int
    	switch id {
    	default:
    		// check all arguments
    		args = check.exprList(argList)
    		nargs = len(args)
    		for _, a := range args {
    			if a.mode == invalid {
    				return
    			}
    		}
    		// first argument is always in x
    		if nargs > 0 {
    			*x = *args[0]
    		}
    	case _Make, _New, _Offsetof, _Trace:
    		// arguments require special handling
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/initialization/MixInLegacyTypesClassLoader.java

                methodVisitor.visitJumpInsn(Opcodes.IFNULL, lookup);
                methodVisitor.visitInsn(Opcodes.ARETURN);
    
                methodVisitor.visitLabel(lookup);
                methodVisitor.visitFrame(Opcodes.F_NEW, 1, new Object[]{className}, 1, new Object[]{META_CLASS_TYPE.getInternalName()});
                methodVisitor.visitVarInsn(Opcodes.ALOAD, 0); // for storing to field
    
                // GroovySystem.getMetaClassRegistry()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 17K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/model/NamedObjectInstantiator.java

                //
                publicMethod("load", RETURN_OBJECT_FROM_STRING, methodVisitor -> new MethodVisitorScope(methodVisitor) {{
                    // Call return new <implClass>(param1)
                    _NEW(implementationType);
                    _DUP();
                    _ALOAD(1);
                    _INVOKESPECIAL(implementationType, CONSTRUCTOR_NAME, RETURN_VOID_FROM_STRING);
                    _ARETURN();
                }});
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/builtins.go

    	var args []*operand // not valid for _Make, _New, _Offsetof, _Trace
    	var nargs int
    	switch id {
    	default:
    		// check all arguments
    		args = check.exprList(argList)
    		nargs = len(args)
    		for _, a := range args {
    			if a.mode == invalid {
    				return
    			}
    		}
    		// first argument is always in x
    		if nargs > 0 {
    			*x = *args[0]
    		}
    	case _Make, _New, _Offsetof, _Trace:
    		// arguments require special handling
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  6. subprojects/diagnostics/src/main/resources/org/gradle/api/tasks/diagnostics/htmldependencyreport/jquery.jstree.js

    		remove_css : function(rule_name, sheet) {
    			return $.vakata.css.get_css(rule_name, true, sheet);
    		},
    		add_sheet : function(opts) {
    			var tmp = false, is_new = true;
    			if(opts.str) {
    				if(opts.title) { tmp = $("style[id='" + opts.title + "-stylesheet']")[0]; }
    				if(tmp) { is_new = false; }
    				else {
    					tmp = document.createElement("style");
    					tmp.setAttribute('type',"text/css");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 09:03:42 UTC 2021
    - 49.5K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-asm/src/main/java/org/gradle/model/internal/asm/MethodVisitorScope.java

        }
    
        public void _ACONST_NULL() {
            super.visitInsn(ACONST_NULL);
        }
    
        public void _LDC(Object value) {
            super.visitLdcInsn(value);
        }
    
        public void _NEW(Type type) {
            super.visitTypeInsn(NEW, type.getInternalName());
        }
    
        public void _CHECKCAST(Type type) {
            _CHECKCAST(type.getInternalName());
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 15:31:29 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AsmBackedClassGenerator.java

                    if (extensible) {
                        // GENERATE new MixInExtensibleDynamicObject(this, getClass().getSuperClass(), super.getAsDynamicObject(), this.services())
                        _NEW(EXTENSIBLE_DYNAMIC_OBJECT_HELPER_TYPE);
                        _DUP();
    
                        _ALOAD(0);
                        _ALOAD(0);
                        _INVOKEVIRTUAL(generatedType, "getClass", RETURN_CLASS);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 100.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/cross_project_publications.adoc

    ====
    
    [NOTE]
    ====
    Choosing the right attributes to set is the hardest thing in this process, because they carry the semantics of the variant.
    Therefore, before adding _new attributes_, you should always ask yourself if there isn't an attribute which carries the semantics you need.
    If there isn't, then you may add a new attribute.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 18K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/profile/legacy_profile.go

    	// TC malloc.
    	`tcmalloc::.*`,
    	`tc_calloc`,
    	`tc_cfree`,
    	`tc_malloc`,
    	`tc_free`,
    	`tc_memalign`,
    	`tc_posix_memalign`,
    	`tc_pvalloc`,
    	`tc_valloc`,
    	`tc_realloc`,
    	`tc_new`,
    	`tc_delete`,
    	`tc_newarray`,
    	`tc_deletearray`,
    	`tc_new_nothrow`,
    	`tc_newarray_nothrow`,
    
    	// Memory-allocation routines on OS X.
    	`malloc_zone_malloc`,
    	`malloc_zone_calloc`,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 32.8K bytes
    - Viewed (0)
Back to top