Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 61 for args_ (0.04 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheStandardStreamsIntegrationTest.groovy

            """
                tasks.register("run", JavaExec) {
                    classpath = project.layout.files(compileJava)
                    mainClass = "Main"
                    ${formatArgument args["extraArg"], { "args '$it'" }}
    
                    ${formatStreamArgument args, "standardInput"}
                    ${formatStreamArgument args, "standardOutput"}
                    ${formatStreamArgument args, "errorOutput"}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  2. chainable_api.go

    //	db.Distinct("name").Find(&results)
    //	// Select distinct name/age pairs from users
    //	db.Distinct("name", "age").Find(&results)
    func (db *DB) Distinct(args ...interface{}) (tx *DB) {
    	tx = db.getInstance()
    	tx.Statement.Distinct = true
    	if len(args) > 0 {
    		tx = tx.Select(args[0], args[1:]...)
    	}
    	return
    }
    
    // Select specify fields that you want when querying, creating, updating
    //
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 09:47:34 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/JavaRecordCodec.kt

            val fields = clazz.relevantFields
    
            val args = readFields(fields)
            val types = fields.map { it.type }.toTypedArray()
            return try {
                clazz.getConstructor(*types).newInstance(*args.toTypedArray())
            } catch (ex: Exception) {
                throw IllegalStateException("Failed to create instance of ${clazz.name} with args $args", ex)
            }
        }
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/rewrite.go

    		(x.Args[0] == y.Args[0] && x.Args[1] == y.Args[1] ||
    			x.Args[0] == y.Args[1] && x.Args[1] == y.Args[0]) {
    		return true
    	}
    	if x.Op == Op386LEAL1 && y.Op == Op386LEAL1 && y.AuxInt == x.AuxInt+n && x.Aux == y.Aux &&
    		(x.Args[0] == y.Args[0] && x.Args[1] == y.Args[1] ||
    			x.Args[0] == y.Args[1] && x.Args[1] == y.Args[0]) {
    		return true
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssagen/ssa.go

    			ssa.OpLeq32F,
    			ssa.OpLeq64F:
    			args[0], args[1] = args[1], args[0]
    		case ssa.OpSub32F,
    			ssa.OpSub64F:
    			args[1] = s.newValue1(s.ssaOp(ir.ONEG, types.Types[callDef.rtype]), args[1].Type, args[1])
    		}
    
    		// runtime functions take uints for floats and returns uints.
    		// Convert to uints so we use the right calling convention.
    		for i, a := range args {
    			if a.Type.IsFloat() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  6. android/guava-testlib/src/com/google/common/testing/ClassSanityTester.java

        List<Object> equalArgs = Lists.newArrayList(args);
        for (int i = 0; i < args.size(); i++) {
          Parameter param = params.get(i);
          Object arg = args.get(i);
          // Use new fresh value generator because 'args' were populated with new fresh generator each.
          // Two newFreshValueGenerator() instances should normally generate equal value sequence.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

        public GradleExecuter withArguments(String... args) {
            return withArguments(Arrays.asList(args));
        }
    
        @Override
        public GradleExecuter withArguments(List<String> args) {
            this.args.clear();
            this.args.addAll(args);
            return this;
        }
    
        @Override
        public GradleExecuter withArgument(String arg) {
            this.args.add(arg);
            return this;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  8. src/os/exec_windows.go

    func commandLineToArgv(cmd string) []string {
    	var args []string
    	for len(cmd) > 0 {
    		if cmd[0] == ' ' || cmd[0] == '\t' {
    			cmd = cmd[1:]
    			continue
    		}
    		var arg []byte
    		arg, cmd = readNextArg(cmd)
    		args = append(args, string(arg))
    	}
    	return args
    }
    
    func ftToDuration(ft *syscall.Filetime) time.Duration {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 5K bytes
    - Viewed (0)
  9. cmd/logging.go

    	}
    }
    
    func iamLogEvent(ctx context.Context, msg string, args ...interface{}) {
    	logger.Event(ctx, "iam", msg, args...)
    }
    
    func rebalanceLogIf(ctx context.Context, err error, errKind ...interface{}) {
    	logger.LogIf(ctx, "rebalance", err, errKind...)
    }
    
    func rebalanceLogEvent(ctx context.Context, msg string, args ...interface{}) {
    	logger.Event(ctx, "rebalance", msg, args...)
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/func.go

    	v := f.constVal(OpOffPtr, t, c, true)
    	if len(v.Args) == 0 {
    		v.AddArg(sp)
    	}
    	return v
    }
    
    func (f *Func) Frontend() Frontend                                  { return f.fe }
    func (f *Func) Warnl(pos src.XPos, msg string, args ...interface{}) { f.fe.Warnl(pos, msg, args...) }
    func (f *Func) Logf(msg string, args ...interface{})                { f.fe.Logf(msg, args...) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 25.8K bytes
    - Viewed (0)
Back to top