Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 169 for bargs (2.07 sec)

  1. tensorflow/compiler/mlir/lite/transforms/while_loop_outline.cc

              args.push_back(cast);
            }
          }
        }
        args.append(new_args.begin(), new_args.end());
      } else {
        args.append(yield_op->operand_begin(), yield_op->operand_end());
      }
      b.create<func::ReturnOp>(yield_op->getLoc(), args);
      yield_op->erase();
      SymbolTable(region.getParentOfType<ModuleOp>()).insert(outlined_func);
      outlined_func.setPrivate();
      return outlined_func;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  2. cmd/endpoint-ellipses_test.go

    		t.Run("", func(t *testing.T) {
    			argPatterns := make([]ellipses.ArgPattern, len(testCase.args))
    			for i, arg := range testCase.args {
    				patterns, err := ellipses.FindEllipsesPatterns(arg)
    				if err != nil {
    					t.Fatalf("Unexpected failure %s", err)
    				}
    				argPatterns[i] = patterns
    			}
    
    			gotIndexes, err := getSetIndexes(testCase.args, testCase.totalSizes, testCase.envOverride, argPatterns)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/block.go

    //
    // }
    func (b *Block) removePhiArg(phi *Value, i int) {
    	n := len(b.Preds)
    	if numPhiArgs := len(phi.Args); numPhiArgs-1 != n {
    		b.Fatalf("inconsistent state for %v, num predecessors: %d, num phi args: %d", phi, n, numPhiArgs)
    	}
    	phi.Args[i].Uses--
    	phi.Args[i] = phi.Args[n]
    	phi.Args[n] = nil
    	phi.Args = phi.Args[:n]
    	phielimValue(phi)
    }
    
    // LackingPos indicates whether b is a block whose position should be inherited
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/route/route_internal_test.go

    		},
    		{
    			"source namespace any",
    			args{
    				match:          &networking.HTTPMatchRequest{},
    				proxyNamespace: "bar",
    			},
    			true,
    		},
    	}
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    			if got := sourceMatchHTTP(tt.args.match, tt.args.proxyLabels, tt.args.gatewayNames, tt.args.proxyNamespace); got != tt.want {
    				t.Errorf("sourceMatchHTTP() = %v, want %v", got, tt.want)
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat May 11 02:47:57 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  5. platforms/jvm/plugins-application/src/integTest/groovy/org/gradle/integtests/ApplicationIntegrationSpec.groovy

        def canUseEnvironmentVariableToPassMultipleOptionsToJvmWhenRunningScript() {
            file('src/main/java/org/gradle/test/Main.java') << '''
    package org.gradle.test;
    
    class Main {
        public static void main(String[] args) {
            if (!"value".equals(System.getProperty("testValue"))) {
                throw new RuntimeException("Expected system property not specified");
            }
            if (!"some value".equals(System.getProperty("testValue2"))) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 22:15:44 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  6. tensorflow/c/eager/BUILD

            "@com_google_absl//absl/container:flat_hash_set",
        ],
    )
    
    tf_cuda_cc_test(
        name = "gradients_test",
        size = "small",
        srcs = [
            "gradients_test.cc",
        ],
        args = ["--heap_check="],
        tags = tf_cuda_tests_tags() + ["nomac"],
        deps = [
            ":abstract_context",
            ":abstract_tensor_handle",
            ":c_api_experimental",
            ":c_api_test_util",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 11 23:52:39 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/testplugin/plugin_test.go

    			strings.HasPrefix(e, "LD_LIBRARY_PATH=") {
    			s += " "
    			s += escape(e)
    		}
    	}
    	for _, a := range cmd.Args {
    		s += " "
    		s += escape(a)
    	}
    	s += " )"
    	return s
    }
    
    func run(t *testing.T, bin string, args ...string) string {
    	cmd := exec.Command(bin, args...)
    	cmdLine := asCommandLine(".", cmd)
    	prettyPrintf("%s\n", cmdLine)
    	cmd.Stderr = new(strings.Builder)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  8. operator/cmd/mesh/manifest_shared_test.go

    	var args string
    	if command == "install" {
    		args = "install"
    	} else {
    		args = "manifest " + command
    	}
    	for _, f := range filenames {
    		args += " -f " + f
    	}
    	if flags != "" {
    		args += " " + flags
    	}
    	if fileSelect != nil {
    		filters := []string{}
    		filters = append(filters, fileSelect...)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 20 22:39:28 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/analysis/unitchecker/unitchecker.go

    	analyzers = analysisflags.Parse(analyzers, true)
    
    	args := flag.Args()
    	if len(args) == 0 {
    		flag.Usage()
    	}
    	if args[0] == "help" {
    		analysisflags.Help(progname, analyzers, args[1:])
    		os.Exit(0)
    	}
    	if len(args) != 1 || !strings.HasSuffix(args[0], ".cfg") {
    		log.Fatalf(`invoking "go tool vet" directly is unsupported; use "go vet"`)
    	}
    	Run(args[0], analyzers)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/debug_test.go

    	file             string
    	function         string
    }
    
    func newDelve(t testing.TB, tag, executable string, args ...string) dbgr {
    	cmd := testenv.Command(t, "dlv", "exec", executable)
    	cmd.Env = replaceEnv(cmd.Env, "TERM", "dumb")
    	if len(args) > 0 {
    		cmd.Args = append(cmd.Args, "--")
    		cmd.Args = append(cmd.Args, args...)
    	}
    	s := &delveState{tagg: tag, cmd: cmd}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:11:47 UTC 2024
    - 28.6K bytes
    - Viewed (0)
Back to top