Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 143 for x_name (0.91 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      const auto verify_size = [&](const size_t x, const char* x_name) {
        if (x == 0 || x == window_dimensions.size()) {
          return true;
        } else {
          llvm::errs()
              << "Window has different number of window dimensions than of "
              << x_name
              << "\nNumber of window dimensions: " << window_dimensions.size()
              << "\nNumber of " << x_name << ": " << x << "\n";
          return false;
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/encapsulate_xla_computations_pass.cc

        bool b_is_resource = (b->output_type(0) == DT_RESOURCE);
        // Uses the name as a tiebreaker so the output is deterministic.
        StringPiece a_name(a->name());
        StringPiece b_name(b->name());
        return std::tie(a_is_resource, a_name) < std::tie(b_is_resource, b_name);
      });
    
      // Sorts the retvals by name so the order is deterministic.
      std::sort(retvals.begin(), retvals.end(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/generator/BazelFileContentGenerator.groovy

        },
        outputs = {"out": "%{name}.java"},
        implementation = _impl,
    )
    
    def junit_tests(name, srcs, **kwargs):
        s_name = name.replace("-", "_") + "TestSuite"
        _GenSuite(
            name = s_name,
            srcs = srcs,
            outname = s_name,
        )
        java_test(
            name = name,
            test_class = s_name,
            srcs = srcs + [":" + s_name],
            **kwargs
        )
        '''
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  4. platforms/core-configuration/declarative-dsl-tooling-models/src/main/kotlin/org/gradle/declarative/dsl/schema/FqName.kt

     * limitations under the License.
     */
    
    package org.gradle.declarative.dsl.schema
    
    import java.io.Serializable
    
    
    interface FqName : Serializable {
        val packageName: String
        val simpleName: String
        val qualifiedName: String
    
        companion object Empty : FqName {
            override val packageName: String
                get() = ""
            override val simpleName: String
                get() = ""
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:08:01 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  5. src/cmd/cgo/internal/testcarchive/carchive_test.go

    func checkArchive(t *testing.T, arname string) {
    	t.Helper()
    
    	switch GOOS {
    	case "aix", "darwin", "ios", "windows":
    		// We don't have any checks for non-ELF libraries yet.
    		if _, err := os.Stat(arname); err != nil {
    			t.Errorf("archive %s does not exist: %v", arname, err)
    		}
    	default:
    		checkELFArchive(t, arname)
    	}
    }
    
    // checkELFArchive checks an ELF archive.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 00:43:51 UTC 2023
    - 34.8K bytes
    - Viewed (0)
  6. src/net/hosts.go

    	hosts.Lock()
    	defer hosts.Unlock()
    	readHosts()
    	if len(hosts.byName) != 0 {
    		if hasUpperCase(host) {
    			lowerHost := []byte(host)
    			lowerASCIIBytes(lowerHost)
    			host = string(lowerHost)
    		}
    		if byName, ok := hosts.byName[absDomainName(host)]; ok {
    			ipsCp := make([]string, len(byName.addrs))
    			copy(ipsCp, byName.addrs)
    			return ipsCp, byName.canonicalName
    		}
    	}
    	return nil, ""
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 04 07:21:38 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  7. docs/metrics/prometheus/grafana/replication/minio-replication-cluster.json

              "uid": "grafana"
            },
            "enable": true,
            "hide": true,
            "iconColor": "rgba(0, 211, 255, 1)",
            "name": "Annotations & Alerts",
            "type": "dashboard"
          }
        ]
      },
     "__inputs": [
        { 
          "name": "DS_PROMETHEUS",
          "label": "Prometheus",
          "description": "",
          "type": "datasource",
          "pluginId": "prometheus",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 28 17:15:39 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  8. .teamcity/src/main/kotlin/projects/PerformanceTestProject.kt

    import model.Stage
    
    abstract class PerformanceTestProject(model: CIBuildModel, val spec: PerformanceTestProjectSpec, val performanceTests: List<PerformanceTest>) : Project({
        this.id(spec.asConfigurationId(model))
        this.name = spec.asName()
    }) {
        init {
            performanceTests.forEach(this::buildType)
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 05 00:08:14 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/syntax/printer.go

    	case nil:
    		// we should not reach here but don't crash
    
    	// expressions and types
    	case *BadExpr:
    		p.print(_Name, "<bad expr>")
    
    	case *Name:
    		p.print(_Name, n.Value) // _Name requires actual value following immediately
    
    	case *BasicLit:
    		p.print(_Name, n.Value) // _Name requires actual value following immediately
    
    	case *FuncLit:
    		p.print(n.Type, blank)
    		if n.Body != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 24 07:17:27 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/DefaultImmutableModuleIdentifierFactory.java

        @Override
        public ModuleIdentifier module(String group, String name) {
            Map<String, ModuleIdentifier> byName = groupIdToModules.get(group);
            if (byName == null) {
                byName = groupIdToModules.computeIfAbsent(group, k -> new ConcurrentHashMap<>());
            }
            ModuleIdentifier moduleIdentifier = byName.get(name);
            if (moduleIdentifier == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 2.5K bytes
    - Viewed (0)
Back to top