Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for new_target (0.31 sec)

  1. 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)
  2. platforms/core-execution/execution-e2e-tests/src/integTest/groovy/org/gradle/integtests/StaleOutputHistoryLossIntegrationTest.groovy

                customCopy {
                    targetDir = file('newTarget')
                }
            """
            succeeds taskPath
    
            then:
            executedAndNotSkipped(taskPath)
            targetFile1.assertDoesNotExist()
            targetFile2.assertDoesNotExist()
            file('newTarget/source1.txt').assertIsFile()
            file('newTarget/source2.txt').assertIsFile()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 10:15:40 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/assignments.go

    			check.use(rhs)
    		}
    		return
    	}
    
    	if x == nil {
    		var target *target
    		// avoid calling ExprString if not needed
    		if T != nil {
    			if _, ok := under(T).(*Signature); ok {
    				target = newTarget(T, ExprString(lhs))
    			}
    		}
    		x = new(operand)
    		check.expr(target, x, rhs)
    	}
    
    	if T == nil && context == "assignment" {
    		context = "assignment to _ identifier"
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 23 21:21:43 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  4. src/go/types/assignments.go

    			check.use(rhs)
    		}
    		return
    	}
    
    	if x == nil {
    		var target *target
    		// avoid calling ExprString if not needed
    		if T != nil {
    			if _, ok := under(T).(*Signature); ok {
    				target = newTarget(T, ExprString(lhs))
    			}
    		}
    		x = new(operand)
    		check.expr(target, x, rhs)
    	}
    
    	if T == nil && context == "assignment" {
    		context = "assignment to _ identifier"
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  5. src/go/types/expr.go

    // variable of an assignment, or of a function result variable.
    type target struct {
    	sig  *Signature
    	desc string
    }
    
    // newTarget creates a new target for the given type and description.
    // The result is nil if typ is not a signature.
    func newTarget(typ Type, desc string) *target {
    	if typ != nil {
    		if sig, _ := under(typ).(*Signature); sig != nil {
    			return &target{sig, desc}
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/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
    - 29.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/expr.go

    // variable of an assignment, or of a function result variable.
    type target struct {
    	sig  *Signature
    	desc string
    }
    
    // newTarget creates a new target for the given type and description.
    // The result is nil if typ is not a signature.
    func newTarget(typ Type, desc string) *target {
    	if typ != nil {
    		if sig, _ := under(typ).(*Signature); sig != nil {
    			return &target{sig, desc}
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  8. 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)
Back to top