Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 42 for dV (0.06 sec)

  1. tensorflow/cc/framework/gradients_test.cc

        TF_ASSERT_OK(scope.status());
        CHECK_NOTNULL(z.node());
    
        if (expected) {
          // Construct backward graph.
          auto dv = Const(scope, {{1.0, 1.0}, {1.0, 1.0}});
          auto dt = MatMul(scope, dv, u, MatMul::TransposeB(true));
          auto du = MatMul(scope, t, dv, MatMul::TransposeA(true));
    
          auto dz = Const(scope, {{1.0, 1.0}, {1.0, 1.0}});
          auto dx = MatMul(scope, dz, y, MatMul::TransposeB(true));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 15 15:13:38 UTC 2023
    - 25K bytes
    - Viewed (0)
  2. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/api/internal/artifacts/ResolveArtifactsBuildOperationType.java

        public interface Details {
    
            /**
             * This method is not called on the Develocity side, at least in DV plugin >= 3.0.
             *
             * @return An empty string.
             *
             * @deprecated This method will be removed in Gradle 9.0
             */
            @Deprecated
            String getConfigurationPath();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 17 03:59:40 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/conversion/converter.go

    	}
    	if fn, ok := c.generatedConversionFuncs.untyped[pair]; ok {
    		return fn(src, dest, scope)
    	}
    
    	dv, err := EnforcePtr(dest)
    	if err != nil {
    		return err
    	}
    	sv, err := EnforcePtr(src)
    	if err != nil {
    		return err
    	}
    	return fmt.Errorf("converting (%s) to (%s): unknown conversion", sv.Type(), dv.Type())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 25 16:23:43 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  4. platforms/enterprise/enterprise-plugin-performance/src/testFixtures/groovy/org/gradle/performance/AbstractBuildScanPluginPerformanceTest.groovy

    import static org.gradle.performance.fixture.BaselineVersionResolver.toBaselineVersions
    
    class AbstractBuildScanPluginPerformanceTest extends AbstractPerformanceTest {
    
        /**
         * System property that points to a directory with DV plugin information
         * such files containing build commit ID and plugin version.
         */
        private static final INFO_DIR_SYSTEM_PROP = "org.gradle.performance.develocity.plugin.infoDir"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:24:56 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  5. platforms/core-execution/build-cache/src/main/java/org/gradle/caching/internal/controller/service/OpFiringLocalBuildCacheServiceHandle.java

                this.key = key;
                // We need to calculate the size eagerly here, since the file will already be gone
                // (aka in the local cache), when the DV plugin queries the value.
                this.archiveSize = file.length();
            }
    
            @Override
            public String getCacheKey() {
                return key.getHashCode();
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 15 16:21:33 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  6. docs/language_names.yml

    bo: བོད་ཡིག
    br: brezhoneg
    bs: bosanski jezik
    ca: Català
    ce: нохчийн мотт
    ch: Chamoru
    co: corsu
    cr: ᓀᐦᐃᔭᐍᐏᐣ
    cs: čeština
    cu: ѩзыкъ словѣньскъ
    cv: чӑваш чӗлхи
    cy: Cymraeg
    da: dansk
    de: Deutsch
    dv: Dhivehi
    dz: རྫོང་ཁ
    ee: Eʋegbe
    el: Ελληνικά
    en: English
    eo: Esperanto
    es: español
    et: eesti
    eu: euskara
    fa: فارسی
    ff: Fulfulde
    fi: suomi
    fj: Vakaviti
    fo: føroyskt
    fr: français
    fy: Frysk
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jan 22 19:42:53 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  7. src/internal/profile/graph.go

    // there isn't such an edge one is created.
    func (n *Node) AddToEdgeDiv(to *Node, dv, v int64, residual, inline bool) {
    	if e := n.Out.FindTo(to); e != nil {
    		e.WeightDiv += dv
    		e.Weight += v
    		if residual {
    			e.Residual = true
    		}
    		if !inline {
    			e.Inline = false
    		}
    		return
    	}
    
    	info := &Edge{Src: n, Dest: to, WeightDiv: dv, Weight: v, Residual: residual, Inline: inline}
    	n.Out.Add(info)
    	to.In.Add(info)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 20:59:15 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  8. operator/pkg/compare/compare.go

    		default: // target path type does not match
    			return fmt.Errorf("targetPath '%v' does not exist in obj: "+
    				"'%v' type is not map[string]interface{}", targetPath, nname)
    		}
    	}
    
    	for dk, dv := range cur {
    		switch vnode := dv.(type) {
    		case string:
    			vo := make(map[string]any)
    			if err := yaml.Unmarshal([]byte(vnode), &vo); err != nil {
    				continue
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 01:29:35 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  9. migrator/migrator.go

    			case schema.Time:
    				if !strings.EqualFold(strings.TrimSuffix(dv, "()"), strings.TrimSuffix(field.DefaultValue, "()")) {
    					alterColumn = true
    				}
    			case schema.Bool:
    				v1, _ := strconv.ParseBool(dv)
    				v2, _ := strconv.ParseBool(field.DefaultValue)
    				alterColumn = v1 != v2
    			default:
    				alterColumn = dv != field.DefaultValue
    			}
    		}
    	}
    
    	// check comment
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Apr 26 07:15:49 UTC 2024
    - 29K bytes
    - Viewed (0)
  10. cmd/storage-datatypes.go

    type RenameDataHandlerParams struct {
    	DiskID    string        `msg:"id"`
    	SrcVolume string        `msg:"sv"`
    	SrcPath   string        `msg:"sp"`
    	DstVolume string        `msg:"dv"`
    	DstPath   string        `msg:"dp"`
    	FI        FileInfo      `msg:"fi"`
    	Opts      RenameOptions `msg:"ro"`
    }
    
    // RenameDataInlineHandlerParams are parameters for RenameDataHandler with a buffer for inline data.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 15.7K bytes
    - Viewed (0)
Back to top