Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 275 for bargs (0.04 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/dsl/DefaultRepositoryHandlerTest.groovy

            1 * repo1.content(_) >> { args ->
                args[0].execute(repo1Content)
            }
            1 * repo1Content.includeGroup("foo")
            1 * repo2.content(_) >> { args ->
                args[0].execute(repo2Content)
            }
            1 * repo2Content.excludeGroup("foo")
            1 * repo3.content(_) >> { args ->
                args[0].execute(repo3Content)
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 18:02:33 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  2. src/cmd/go/main.go

    	telemetry.Inc("go/invocations")
    	telemetry.CountFlags("go/flag:", *flag.CommandLine)
    
    	args := flag.Args()
    	if len(args) < 1 {
    		base.Usage()
    	}
    
    	cfg.CmdName = args[0] // for error messages
    	if args[0] == "help" {
    		telemetry.Inc("go/subcommand:" + strings.Join(append([]string{"help"}, args[1:]...), "-"))
    		help.Help(os.Stdout, args[1:])
    		return
    	}
    
    	if cfg.GOROOT == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:09:11 UTC 2024
    - 10K bytes
    - Viewed (0)
  3. cluster/gce/gci/configure.sh

      if [[ "${kube_addon_registry}" != "registry.k8s.io" ]]; then
        find "${dst_dir}" \( -name '*.yaml' -or -name '*.yaml.in' \) -print0 | \
          xargs -0 sed -ri "s@(image:\s.*)registry.k8s.io@\1${kube_addon_registry}@"
        find "${dst_dir}" \( -name '*.manifest' -or -name '*.json' \) -print0 | \
          xargs -0 sed -ri "s@(image\":\s+\")registry.k8s.io@\1${kube_addon_registry}@"
      fi
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 04:14:02 UTC 2024
    - 36.5K bytes
    - Viewed (0)
  4. src/syscall/mksyscall.pl

    				push @args, "uintptr($name)";
    			}
    		} elsif($type eq "int64" && $_32bit ne "") {
    			if(@args % 2 && $arm) {
    				# arm abi specifies 64-bit argument uses
    				# (even, odd) pair
    				push @args, "0"
    			}
    			if($_32bit eq "big-endian") {
    				push @args, "uintptr($name>>32)", "uintptr($name)";
    			} else {
    				push @args, "uintptr($name)", "uintptr($name>>32)";
    			}
    		} else {
    			push @args, "uintptr($name)";
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:15:02 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  5. src/cmd/go/internal/work/gc.go

    			return "", nil, err
    		}
    		args = append(args, "-importcfg", objdir+"importcfg")
    	}
    	if embedcfg != nil {
    		if err := sh.writeFile(objdir+"embedcfg", embedcfg); err != nil {
    			return "", nil, err
    		}
    		args = append(args, "-embedcfg", objdir+"embedcfg")
    	}
    	if ofile == archive {
    		args = append(args, "-pack")
    	}
    	if asmhdr {
    		args = append(args, "-asmhdr", objdir+"go_asm.h")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:37:44 UTC 2024
    - 23K bytes
    - Viewed (0)
  6. internal/event/target/amqp.go

    	if err = ch.ExchangeDeclare(target.args.Exchange, target.args.ExchangeType, target.args.Durable,
    		target.args.AutoDeleted, target.args.Internal, target.args.NoWait, nil); err != nil {
    		return err
    	}
    
    	if err = ch.Publish(target.args.Exchange, target.args.RoutingKey, target.args.Mandatory,
    		target.args.Immediate, amqp091.Publishing{
    			Headers:      headers,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 10K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/device_compiler_test.cc

    std::vector<XlaCompiler::Argument> SampleArgsForAddXY() {
      std::vector<XlaCompiler::Argument> args(2);
      args[0].kind = XlaCompiler::Argument::kParameter;
      args[0].type = DT_INT32;
      args[0].shape = TensorShape({2});
      args[1].kind = XlaCompiler::Argument::kParameter;
      args[1].type = DT_INT32;
      args[1].shape = TensorShape({2});
      return args;
    }
    
    class MockXlaDeviceExecutablePersistor
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  8. src/cmd/asm/internal/lex/input.go

    	var args [][]Token
    	// One macro argument per iteration. Collect them all and check counts afterwards.
    	for argNum := 0; ; argNum++ {
    		tokens, tok := in.collectArgument(macro)
    		args = append(args, tokens)
    		if tok == ')' {
    			break
    		}
    	}
    	// Zero-argument macros are tricky.
    	if len(macro.args) == 0 && len(args) == 1 && args[0] == nil {
    		args = nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 07:48:38 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/value.go

    	if v.Args == nil {
    		v.resetArgs() // use argstorage
    	}
    	v.Args = append(v.Args, w1, w2, w3)
    	w1.Uses++
    	w2.Uses++
    	w3.Uses++
    }
    
    //go:noinline
    func (v *Value) AddArg4(w1, w2, w3, w4 *Value) {
    	v.Args = append(v.Args, w1, w2, w3, w4)
    	w1.Uses++
    	w2.Uses++
    	w3.Uses++
    	w4.Uses++
    }
    
    //go:noinline
    func (v *Value) AddArg5(w1, w2, w3, w4, w5 *Value) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:40:22 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/process/internal/JvmOptions.java

            this(fileCollectionFactory, new DefaultJavaDebugOptions());
        }
    
        /**
         * @return all jvm args including system properties
         */
        public List<String> getAllJvmArgs() {
            List<String> args = new ArrayList<>();
            formatSystemProperties(getMutableSystemProperties(), args);
    
            // We have to add these after the system properties so they can override any system properties
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 14.8K bytes
    - Viewed (0)
Back to top