Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 590 for args_ (0.07 sec)

  1. platforms/jvm/language-java/src/integTest/groovy/org/gradle/integtests/ExecIntegrationTest.groovy

                    def testFile = file("${'$'}buildDir/${'$'}name")
                    classpath(sourceSets.main.output.classesDirs)
                    mainClass = 'org.gradle.TestMain'
                    args projectDir, testFile
                    doLast {
                        assert testFile.exists()
                    }
                    assert delegate instanceof ExtensionAware
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 20:01:36 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  2. pkg/apis/core/v1/helper/helpers_test.go

    		}
    	}
    }
    
    func TestMatchTopologySelectorTerms(t *testing.T) {
    	type args struct {
    		topologySelectorTerms []v1.TopologySelectorTerm
    		labels                labels.Set
    	}
    
    	tests := []struct {
    		name string
    		args args
    		want bool
    	}{
    		{
    			name: "nil term list",
    			args: args{
    				topologySelectorTerms: nil,
    				labels:                nil,
    			},
    			want: true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 23:03:54 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/testcshared/cshared_test.go

    		"-o", libgoname,
    		filepath.Join(".", "libgo", "libgo.go")}
    	if GOOS == "windows" && strings.HasSuffix(args[6], ".a") {
    		args[6] = strings.TrimSuffix(args[6], ".a") + ".dll"
    	}
    	cmd = exec.Command(args[0], args[1:]...)
    	out, err = cmd.CombinedOutput()
    	if err != nil {
    		return fmt.Errorf("command failed: %v\n%v\n%s\n", args, err, out)
    	}
    	if GOOS == "windows" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 13:19:50 UTC 2023
    - 21K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/xla_compile_on_demand_op.cc

        std::vector<XlaCompiler::Argument>* args) {
      variables->clear();
      args->clear();
      TF_RETURN_IF_ERROR(GetVariableInfosFromInputs(ctx.resource_manager(),
                                                    ctx.device(), inputs,
                                                    variable_indices, variables));
      TF_RETURN_IF_ERROR(LockVariables(absl::MakeSpan(*variables)));
      TF_ASSIGN_OR_RETURN(*args,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 29 08:39:39 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/configuration/internal/DefaultListenerBuildOperationDecorator.java

                final String methodName = method.getName();
                if (methodName.equals("toString") && (args == null || args.length == 0)) {
                    return "BuildOperationEmittingBuildListenerInvocationHandler{delegate: " + delegate + "}";
                } else if (methodName.equals("hashCode") && (args == null || args.length == 0)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  6. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/parsing/BasicParsingTest.kt

                            name = f
                            args = [
                                FunctionArgument.Positional [indexes: 2..3, line/column: 1/3..1/4, file: test] (
                                    expr = IntLiteral [indexes: 2..3, line/column: 1/3..1/4, file: test] (1)
                                )
                            ]
                        )
                        args = [
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 22:06:18 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  7. security/pkg/k8s/configutil_test.go

    		}
    	}
    
    	return nil
    }
    
    func Test_insertData(t *testing.T) {
    	type args struct {
    		cm   *v1.ConfigMap
    		data map[string]string
    	}
    	tests := []struct {
    		name       string
    		args       args
    		want       bool
    		expectedCM *v1.ConfigMap
    	}{
    		{
    			name: "unchanged",
    			args: args{
    				cm:   createConfigMap(namespaceName, configMapName, map[string]string{"foo": "bar"}),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 08 21:58:25 UTC 2024
    - 13K bytes
    - Viewed (0)
  8. src/net/http/cgi/host_test.go

    	cwd, _ := os.Getwd()
    	h := &Handler{
    		Path: os.Args[0],
    		Root: "/test.cgi",
    		Dir:  cwd,
    	}
    	expectedMap := map[string]string{
    		"cwd": cwd,
    	}
    	runCgiTest(t, h, "GET /test.cgi HTTP/1.0\nHost: example.com\n\n", expectedMap)
    
    	cwd, _ = os.Getwd()
    	cwd, _ = filepath.Split(os.Args[0])
    	h = &Handler{
    		Path: os.Args[0],
    		Root: "/test.cgi",
    	}
    	expectedMap = map[string]string{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 18:29:59 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  9. tools/docker-builder/main.go

    		// The crane builder is much faster but less tested.
    		// Neither builder is doing standard logic; see each builder for details.
    		if args.Builder == CraneBuilder {
    			return RunCrane(ctx, args)
    		}
    
    		return RunDocker(args)
    	},
    }
    
    func ValidateArgs(a Args) error {
    	if len(a.Targets) == 0 {
    		return fmt.Errorf("no targets specified")
    	}
    	if a.Push && a.Save {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 13:23:41 UTC 2023
    - 10K bytes
    - Viewed (0)
  10. src/go/build/read.go

    func parseGoEmbed(args string, pos token.Position) ([]fileEmbed, error) {
    	trimBytes := func(n int) {
    		pos.Offset += n
    		pos.Column += utf8.RuneCountInString(args[:n])
    		args = args[n:]
    	}
    	trimSpace := func() {
    		trim := strings.TrimLeftFunc(args, unicode.IsSpace)
    		trimBytes(len(args) - len(trim))
    	}
    
    	var list []fileEmbed
    	for trimSpace(); args != ""; trimSpace() {
    		var path string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 14.1K bytes
    - Viewed (0)
Back to top