Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 880 for bargs (0.25 sec)

  1. src/main/java/jcifs/smb1/smb1/TestLocking.java

                    t.numThreads = Integer.parseInt(args[ai]);
                } else if (args[ai].equals("-i")) {
                    ai++;
                    t.numIter = Integer.parseInt(args[ai]);
                } else if (args[ai].equals("-d")) {
                    ai++;
                    t.delay = Long.parseLong(args[ai]);
                } else {
                    t.url = args[ai];
                }
            }
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 3.4K bytes
    - Viewed (0)
  2. tools/docker-builder/builder/crane.go

    		cfg := cfgFile.Config
    		for k, v := range args.Env {
    			cfg.Env = append(cfg.Env, fmt.Sprintf("%v=%v", k, v))
    		}
    		if args.User != "" {
    			cfg.User = args.User
    		}
    		if len(args.Entrypoint) > 0 {
    			cfg.Entrypoint = args.Entrypoint
    			cfg.Cmd = nil
    		}
    		if len(args.Cmd) > 0 {
    			cfg.Cmd = args.Cmd
    			cfg.Entrypoint = nil
    		}
    		if args.WorkDir != "" {
    			cfg.WorkingDir = args.WorkDir
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 01:07:39 UTC 2023
    - 9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewriteLOONG64.go

    	v_0 := v.Args[0]
    	// match: (Addr {sym} base)
    	// result: (MOVVaddr {sym} base)
    	for {
    		sym := auxToSym(v.Aux)
    		base := v_0
    		v.reset(OpLOONG64MOVVaddr)
    		v.Aux = symToAux(sym)
    		v.AddArg(base)
    		return true
    	}
    }
    func rewriteValueLOONG64_OpAtomicCompareAndSwap32(v *Value) bool {
    	v_3 := v.Args[3]
    	v_2 := v.Args[2]
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	b := v.Block
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:26:25 UTC 2023
    - 195.8K bytes
    - Viewed (0)
  4. guava-gwt/test-super/com/google/common/collect/testing/super/com/google/common/collect/testing/testers/Platform.java

          builder.append(args[i++]);
          templateStart = placeholderStart + 2;
        }
        builder.append(template.substring(templateStart));
    
        // if we run out of placeholders, append the extra args in square braces
        if (i < args.length) {
          builder.append(" [");
          builder.append(args[i++]);
          while (i < args.length) {
            builder.append(", ");
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Oct 04 15:31:40 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  5. src/net/interface_linux_test.go

    	}
    	ti.setupCmds = append(ti.setupCmds, &exec.Cmd{
    		Path: xname,
    		Args: []string{"ip", "link", "add", ti.name, "type", "dummy"},
    	})
    	ti.setupCmds = append(ti.setupCmds, &exec.Cmd{
    		Path: xname,
    		Args: []string{"ip", "address", "add", ti.local, "peer", ti.remote, "dev", ti.name},
    	})
    	ti.teardownCmds = append(ti.teardownCmds, &exec.Cmd{
    		Path: xname,
    		Args: []string{"ip", "address", "del", ti.local, "peer", ti.remote, "dev", ti.name},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 06 00:05:32 UTC 2018
    - 3.7K bytes
    - Viewed (0)
  6. src/go/internal/srcimporter/srcimporter.go

    	}
    	args := []string{goCmd, "tool", "cgo", "-objdir", tmpdir}
    	if bp.Goroot {
    		switch bp.ImportPath {
    		case "runtime/cgo":
    			args = append(args, "-import_runtime_cgo=false", "-import_syscall=false")
    		case "runtime/race":
    			args = append(args, "-import_syscall=false")
    		}
    	}
    	args = append(args, "--")
    	args = append(args, strings.Fields(os.Getenv("CGO_CPPFLAGS"))...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 23 18:54:32 UTC 2022
    - 8.2K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/build.gradle

                    cppCompiler.args '-pthread'
                    linker.args '-pthread'
    
                    if (toolChain instanceof Gcc || toolChain instanceof Clang) {
                        // Use C++03 with the old ABIs, as this is what the googletest binaries were built with
                        cppCompiler.args '-std=c++03', '-D_GLIBCXX_USE_CXX11_ABI=0'
                        linker.args '-std=c++03'
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  10. src/cmd/go/internal/run/run.go

    func shouldUseOutsideModuleMode(args []string) bool {
    	// NOTE: "@" not allowed in import paths, but it is allowed in non-canonical
    	// versions.
    	return len(args) > 0 &&
    		!strings.HasSuffix(args[0], ".go") &&
    		!strings.HasPrefix(args[0], "-") &&
    		strings.Contains(args[0], "@") &&
    		!build.IsLocalImport(args[0]) &&
    		!filepath.IsAbs(args[0])
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 19:09:38 UTC 2023
    - 6.9K bytes
    - Viewed (0)
Back to top