Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 2,832 for arguments_ (0.17 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/RuntimeExec2InstrumentationInDynamicGroovyWithIndyIntegrationTest.groovy

                // Typed nulls
                [fromString(), "Runtime.getRuntime().exec(command, null as String[])", "", ""],
                // type-wrapped arguments
                [fromGroovyString(), "Runtime.getRuntime().exec(command as String, null)", "", ""],
                [fromObjectList(), "Runtime.getRuntime().exec(command as String[], null)", "", ""],
                // Null-safe calls
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. src/cmd/go/internal/workcmd/init.go

    current directory, in effect creating a new workspace at the current
    directory.
    
    go work init optionally accepts paths to the workspace modules as
    arguments. If the argument is omitted, an empty workspace with no
    modules will be created.
    
    Each argument path is added to a use directive in the go.work file. The
    current go version will also be listed in the go.work file.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/apis/kubeadm/v1beta3/conversion.go

    func Convert_kubeadm_DNS_To_v1beta3_DNS(in *kubeadm.DNS, out *DNS, s conversion.Scope) error {
    	return autoConvert_kubeadm_DNS_To_v1beta3_DNS(in, out, s)
    }
    
    // convertToArgs takes a argument map and converts it to a slice of arguments.
    // Te resulting argument slice is sorted alpha-numerically.
    func convertToArgs(in map[string]string) []kubeadm.Arg {
    	if in == nil {
    		return nil
    	}
    	args := make([]kubeadm.Arg, 0, len(in))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 13 06:41:07 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/initialization/ParallelismConfigurationCommandLineConverterTest.groovy

            where:
            value << ["foo", "0"]
        }
    
        def "throws exception for invalid max workers argument when converting"() {
            when:
            convert("--max-workers", "-1")
    
            then:
            Throwable t = thrown(CommandLineArgumentException)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 07 06:09:06 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/xla_compile_on_demand_op.cc

        compile_options.use_tuple_arg = false;
        compile_options.always_return_tuple = true;
      }
    
      return compile_options;
    }
    
    // Gets `variables` from `ctx`, locks them and builds XlaCompiler::Arguments
    // using them. Stores the arguments in `args`. `variables` and `args` passed in
    // will be cleared before populating them.
    Status GetAndLockVariablesAndBuildXlaCompilerArguments(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 29 08:39:39 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  6. src/cmd/internal/objabi/flag.go

    }
    
    // expandArgs expands "response files" arguments in the provided slice.
    //
    // A "response file" argument starts with '@' and the rest of that
    // argument is a filename with CR-or-CRLF-separated arguments. Each
    // argument in the named files can also contain response file
    // arguments. See Issue 18468.
    //
    // The returned slice 'out' aliases 'in' iff the input did not contain
    // any response file arguments.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 10 23:08:09 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/get_compiler_ir.cc

      std::vector<XlaCompiler::Argument> args;
      args.reserve(input_arg_size);
    
      for (auto& arg_info : flat_arg_shape_and_dtype) {
        XlaCompiler::Argument arg;
        arg.kind = XlaCompiler::Argument::kParameter;
        arg.type = arg_info.dtype;
        arg.shape = arg_info.shape;
        args.push_back(arg);
      }
    
      // Build Xla Compiler Arguments from concrete_fn.captured_inputs
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 19K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/errorsas/errorsas.go

    			return
    		}
    		if len(call.Args) < 2 {
    			return // not enough arguments, e.g. called with return values of another function
    		}
    		if err := checkAsTarget(pass, call.Args[1]); err != nil {
    			pass.ReportRangef(call, "%v", err)
    		}
    	})
    	return nil, nil
    }
    
    var errorType = types.Universe.Lookup("error").Type()
    
    // checkAsTarget reports an error if the second argument to errors.As is invalid.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 21:52:54 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r10rc1/PassingCommandLineArgumentsCrossVersionSpec.groovy

        def "can configure searchUpwards via build arguments"() {
            given:
            file('build.gradle') << "assert !gradle.startParameter.searchUpwards"
    
            when:
            withConnection {
                it.newBuild().withArguments('-u').run()
            }
    
            then:
            noExceptionThrown()
        }
    
        def "can overwrite task names via build arguments"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  10. src/runtime/asm_ppc64x.h

    // | local variable area |
    // +---------------------+
    // | argument area       |
    // +---------------------+ <- R1+FIXED_FRAME
    // | fixed area          |
    // +---------------------+ <- R1
    //
    // So a function that sets up a stack frame at all uses as least FIXED_FRAME
    // bytes of stack. This mostly affects assembly that calls other functions
    // with arguments (the arguments should be stored at FIXED_FRAME+0(R1),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 22:20:51 UTC 2023
    - 1.9K bytes
    - Viewed (0)
Back to top