Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 101 for fnest (0.24 sec)

  1. src/cmd/compile/internal/ssa/likelyadjust.go

    	defer f.Cache.freeInt8Slice(certain)
    	local := f.Cache.allocInt8Slice(f.NumBlocks()) // for our immediate predecessors.
    	defer f.Cache.freeInt8Slice(local)
    
    	po := f.postorder()
    	nest := f.loopnest()
    	b2l := nest.b2l
    
    	for _, b := range po {
    		switch b.Kind {
    		case BlockExit:
    			// Very unlikely.
    			local[b.ID] = blEXIT
    			certain[b.ID] = blEXIT
    
    			// Ret, it depends.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 21:41:20 UTC 2022
    - 15.4K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/testdata/riscv64error.s

    	SRLI	$1, X5, F1			// ERROR "expected integer register in rd position but got non-integer register F1"
    	SRLI	$1, F1, X5			// ERROR "expected integer register in rs1 position but got non-integer register F1"
    	FNES	F1, (X5)			// ERROR "needs an integer register output"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  3. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildNestingIntegrationTest.groovy

     */
    
    package org.gradle.integtests.composite
    
    import org.gradle.api.Plugin
    import org.gradle.api.Project
    
    class CompositeBuildNestingIntegrationTest extends AbstractCompositeBuildIntegrationTest {
        def "can nest included builds"() {
            given:
            dependency(buildA, "org.test:buildB:1.2")
    
            def buildC = singleProjectBuild("buildC") {
                buildFile << """
                    apply plugin: 'java'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/telemetry/package-lock.json

          "dependencies": {
            "type-fest": "^0.20.2"
          },
          "engines": {
            "node": ">=8"
          },
          "funding": {
            "url": "https://github.com/sponsors/sindresorhus"
          }
        },
        "node_modules/globals/node_modules/type-fest": {
          "version": "0.20.2",
          "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 156K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model/structured_input.py

          tf.TensorSpec([], tf.float32),
          tf.TensorSpec([], tf.float32),
      ]])
      def f0001_list_2_elements(self, l):
        return
    
      # Check index paths for dicts.
      # Keys are linearized in sorted order, matching `tf.nest.flatten`.
      #
      # CHECK:      func {{@[a-zA-Z_0-9]+}}(
      # CHECK-SAME:   %arg0: tensor<1xf32> {tf._user_specified_name = "d", tf_saved_model.index_path = [0, "x"]},
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 28 21:37:05 UTC 2021
    - 5.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model/structured_output.py

      def f0004_list_2_elements(self):
        return [[tf.constant(1.0, shape=[1]), tf.constant(1.0, shape=[2])]]
    
      # Check index paths for dicts.
      # Keys are linearized in sorted order, matching `tf.nest.flatten`.
      # More thorough testing of this is in structured_input.py. The underlying code
      # path for linearization is shared, so no need to replicate that testing here.
      #
      # CHECK:      func {{@[a-zA-Z_0-9]+}}() -> (
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 28 21:37:05 UTC 2021
    - 5.4K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/api/internal/project/DefaultAntBuilderTest.groovy

            task2.target.name == 'target2'
    
            and:
            def task3 = project.tasks.target3
            task3 instanceof AntTarget
            task3.target.name == 'target3'
        }
    
        def "can nest elements"() {
            when:
            ant.otherProp = 'true'
            ant.condition(property: 'prop', value: 'someValue') {
                or {
                    and {
                        isSet(property: 'otherProp')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 11 16:17:40 UTC 2022
    - 7.7K bytes
    - Viewed (0)
  8. src/cmd/internal/pkgpattern/pkgpattern.go

    	return matchPatternInternal(pattern, false)
    }
    
    func matchPatternInternal(pattern string, vendorExclude bool) func(name string) bool {
    	// Convert pattern to regular expression.
    	// The strategy for the trailing /... is to nest it in an explicit ? expression.
    	// The strategy for the vendor exclusion is to change the unmatchable
    	// vendor strings to a disallowed code point (vendorChar) and to use
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 16:43:40 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  9. src/regexp/syntax/simplify.go

    		// Special case: x{1} is just x.
    		if re.Min == 1 && re.Max == 1 {
    			return sub
    		}
    
    		// General case: x{n,m} means n copies of x and m copies of x?
    		// The machine will do less work if we nest the final m copies,
    		// so that x{2,5} = xx(x(x(x)?)?)?
    
    		// Build leading prefix: xx.
    		var prefix *Regexp
    		if re.Min > 0 {
    			prefix = &Regexp{Op: OpConcat}
    			prefix.Sub = prefix.Sub0[:0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 02 00:13:47 UTC 2016
    - 4.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/admission/config.go

    // GetAdmissionPluginConfigurationFor returns a reader that holds the admission plugin configuration.
    func GetAdmissionPluginConfigurationFor(pluginCfg apiserver.AdmissionPluginConfiguration) (io.Reader, error) {
    	// if there is a nest object, return it directly
    	if pluginCfg.Configuration != nil {
    		return bytes.NewBuffer(pluginCfg.Configuration.Raw), nil
    	}
    	// there is nothing nested, so we delegate to path
    	if pluginCfg.Path != "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 15:48:39 UTC 2023
    - 5.8K bytes
    - Viewed (0)
Back to top