Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for newTarget (0.09 sec)

  1. src/go/types/decl.go

    			// error reported before by arityMatch
    			obj.typ = Typ[Invalid]
    		}
    		return
    	}
    
    	if lhs == nil || len(lhs) == 1 {
    		assert(lhs == nil || lhs[0] == obj)
    		var x operand
    		check.expr(newTarget(obj.typ, obj.name), &x, init)
    		check.initVar(obj, &x, "variable declaration")
    		return
    	}
    
    	if debug {
    		// obj must be one of lhs
    		found := false
    		for _, lhs := range lhs {
    			if obj == lhs {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/it/admin/SchedulerTests.java

            return requestBody;
        }
    
        @Override
        protected Map<String, Object> getUpdateMap() {
            final Map<String, Object> updateMap = new HashMap<>();
            updateMap.put("target", "new_target");
            return updateMap;
        }
    
        @Test
        void crudTest() {
            testCreate();
            testRead();
            testUpdate();
            testDelete();
        }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.4K bytes
    - Viewed (0)
Back to top