Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 134 for defs (0.12 sec)

  1. tensorflow/compiler/aot/tests/BUILD

        visibility = ["//visibility:public"],
    )
    
    py_strict_binary(
        name = "make_test_graphs",
        testonly = 1,
        srcs = ["make_test_graphs.py"],
        python_version = "PY3",
        srcs_version = "PY3",
        deps = [
            "//tensorflow/core:protos_all_py",
            "//tensorflow/python/client:session",
            "//tensorflow/python/framework:constant_op",
            "//tensorflow/python/framework:dtypes",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/transaction/CompileTransaction.java

    import static org.gradle.api.internal.tasks.compile.incremental.compilerapi.deps.GeneratedResource.Location.CLASS_OUTPUT;
    import static org.gradle.api.internal.tasks.compile.incremental.compilerapi.deps.GeneratedResource.Location.NATIVE_HEADER_OUTPUT;
    import static org.gradle.api.internal.tasks.compile.incremental.compilerapi.deps.GeneratedResource.Location.SOURCE_OUTPUT;
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  3. cmd/dependencyverifier/dependencyverifier.go

    	)
    	modMap := make(map[module][]module)
    	for _, line := range strings.Split(modStr, "\n") {
    		if len(line) == 0 {
    			continue
    		}
    		deps := strings.Split(line, " ")
    		if len(deps) == 2 {
    			first := parseModule(deps[0])
    			second := parseModule(deps[1])
    			if first.version == "" || first.version == "v0.0.0" {
    				if !mainModules[first] {
    					mainModules[first] = true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 07 01:48:30 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/build.go

    		a1 := b.AutoAction(ModeInstall, depMode, p)
    		if load.InstallTargetDir(p) == load.ToTool {
    			a.Deps = append(a.Deps, a1.Deps...)
    			a1.Deps = append(a1.Deps, a)
    			tools = append(tools, a1)
    			continue
    		}
    		a.Deps = append(a.Deps, a1)
    	}
    	if len(tools) > 0 {
    		a = &Action{
    			Mode: "go install (tools)",
    			Deps: tools,
    		}
    	}
    
    	if cfg.BuildBuildmode == "shared" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 17:22:59 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  5. cni/pkg/nodeagent/net_test.go

    	ztunnelServer := &fakeZtunnel{}
    
    	fakeIPSetDeps := ipset.FakeNLDeps()
    	set := ipset.IPSet{V4Name: "foo-v4", Prefix: "foo", Deps: fakeIPSetDeps}
    	netServer := newNetServer(ztunnelServer, podNsMap, iptablesConfigurator, NewPodNetnsProcFinder(fakeFs()), set)
    
    	netServer.netnsRunner = func(fdable NetnsFd, toRun func() error) error {
    		return toRun()
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 05:10:23 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  6. src/text/template/multi_test.go

    	}
    	if _, err := t1.Parse(`{{define "test"}}foo{{end}}`); err != nil {
    		t.Fatalf("parsing test: %s", err)
    	}
    }
    
    func TestEmptyTemplate(t *testing.T) {
    	cases := []struct {
    		defn []string
    		in   string
    		want string
    	}{
    		{[]string{"x", "y"}, "", "y"},
    		{[]string{""}, "once", ""},
    		{[]string{"", ""}, "twice", ""},
    		{[]string{"{{.}}", "{{.}}"}, "twice", "twice"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 08 10:48:29 UTC 2022
    - 11.7K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/deps/ClassSetAnalysis.java

    package org.gradle.api.internal.tasks.compile.incremental.deps;
    
    import it.unimi.dsi.fastutil.ints.IntOpenHashSet;
    import it.unimi.dsi.fastutil.ints.IntSet;
    import org.gradle.api.internal.tasks.compile.incremental.compilerapi.CompilerApiData;
    import org.gradle.api.internal.tasks.compile.incremental.compilerapi.deps.DependentsSet;
    import org.gradle.api.internal.tasks.compile.incremental.compilerapi.deps.GeneratedResource;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/ComponentReplacementIntegrationTest.groovy

        void declaredDependencies(String... deps) {
            publishedMavenModules(deps)
            def content = ''
            deps.each {
                content += "dependencies.conf '${new TestDependency(it).notation}'\n"
            }
            buildFile << """
                $content
            """
        }
    
        void declaredReplacements(String... reps) {
            def content = ''
            reps.each {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  9. tensorflow/c/eager/immediate_execution_context.h

      virtual bool IsCustomDevice(const string& device_name) = 0;
    
      // Register a custom device. It will return error is the device name is
      // already registered.
      // TODO(tfrt-devs): Remove this method. Let caller register it directly into
      // CustomDeviceOpHandler.
      virtual Status RegisterCustomDevice(const string& name,
                                          std::unique_ptr<CustomDevice> device) = 0;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 06 08:34:00 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/incremental/transaction/CompileTransactionTest.groovy

            isEmptyDirectory(destinationDir)
        }
    
        def "if something get stashed workResult passed to execution will mark 'did work'"() {
            def destinationDir = spec.getDestinationDir()
            new File(destinationDir, "file.txt").createNewFile()
            def pattern = new PatternSet().include("**/*.txt")
    
            when:
            def workResult = newCompileTransaction(pattern).execute {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 18K bytes
    - Viewed (0)
Back to top