Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 1,441 for told (0.1 sec)

  1. tensorflow/c/experimental/gradients/math_grad.cc

      }
      ~MatMulGradientFunction() override {
        for (auto input : forward_inputs_) {
          if (input) {
            input->Unref();
          }
        }
      }
    
     private:
      // TODO(b/174778737): Only hold needed inputs.
      vector<AbstractTensorHandle*> forward_inputs_;
      AttrBuilder forward_attrs_;
    };
    
    class NegGradientFunction : public GradientFunction {
     public:
      Status Compute(AbstractContext* ctx,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 28 13:53:47 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/samples/templates/build-src-plugin-java-module-transform/buildSrc/src/main/java/org/gradle/sample/transform/javamodules/ModuleInfo.java

    package org.gradle.sample.transform.javamodules;
    
    import java.io.Serializable;
    import java.util.ArrayList;
    import java.util.List;
    
    /**
     * Data class to hold the information that should be added as module-info.class to an existing Jar file.
     */
    public class ModuleInfo implements Serializable {
        private String moduleName;
        private String moduleVersion;
        private List<String> exports = new ArrayList<>();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. platforms/software/testing-base/src/main/resources/org/gradle/api/internal/tasks/testing/report/style.css

    .infoBox {
        width: 110px;
        padding-top: 15px;
        padding-bottom: 15px;
        text-align: center;
    }
    
    .infoBox p {
        margin: 0;
    }
    
    .counter, .percent {
        font-size: 120%;
        font-weight: bold;
        margin-bottom: 8px;
    }
    
    #duration {
        width: 125px;
    }
    
    #successRate, .summaryGroup {
        border: solid 2px #d0d0d0;
        -moz-border-radius: 10px;
        border-radius: 10px;
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  4. pkg/api/testing/compat/compatibility_tester.go

    	}
    
    	// Get the indexed value if an index is specified
    	if index >= 0 {
    		valueSlice, ok := value.([]interface{})
    		if !ok {
    			return nil, false, fmt.Errorf("key %s did not hold a slice", key)
    		}
    		if index >= len(valueSlice) {
    			return nil, false, fmt.Errorf("index %d out of bounds for slice at key: %v", index, key)
    		}
    		value = valueSlice[index]
    	}
    
    	if len(keys) == 1 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jul 20 22:26:16 UTC 2019
    - 3.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/api/v1/cluster_tf.cc

      // Explicitly check that the TensorFlow dialect can constant fold ops.
      // Constant folding is essential for the bridge. Without this check, the
      // bridge may fail with an error that is difficult to understand and not
      // actionable.
      if (!mlir::TF::TensorFlowDialect::HasConstantFoldHook()) {
        return tensorflow::errors::Internal(
            "TensorFlow dialect missing constant fold hook in TFXLA bridge phase "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 22:25:18 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  6. pkg/art/art.go

    )
    
    //go:embed istio-ascii.txt
    var istioASCIIArt string
    
    func IstioArt() string {
    	return istioASCIIArt
    }
    
    func IstioColoredArt() string {
    	return color.New(color.FgHiBlue).Add(color.Bold).Sprintf(istioASCIIArt)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 29 16:30:44 UTC 2024
    - 859 bytes
    - Viewed (0)
  7. src/hash/fnv/fnv_test.go

    func TestGolden128(t *testing.T) {
    	testGolden(t, New128(), golden128)
    }
    
    func TestGolden128a(t *testing.T) {
    	testGolden(t, New128a(), golden128a)
    }
    
    func testGolden(t *testing.T, hash hash.Hash, gold []golden) {
    	for _, g := range gold {
    		hash.Reset()
    		done, error := hash.Write([]byte(g.in))
    		if error != nil {
    			t.Fatalf("write error: %s", error)
    		}
    		if done != len(g.in) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 01 21:04:12 UTC 2017
    - 7.3K bytes
    - Viewed (0)
  8. common-protos/k8s.io/apimachinery/pkg/runtime/generated.proto

    syntax = "proto2";
    
    package k8s.io.apimachinery.pkg.runtime;
    
    // Package-wide variables from generator "generated".
    option go_package = "k8s.io/apimachinery/pkg/runtime";
    
    // RawExtension is used to hold extensions in external versions.
    //
    // To use this, make a field which has RawExtension as its type in your external, versioned
    // struct, and Object in your internal struct. You also need to register your
    // various plugin types.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/runtime/generated.proto

    syntax = "proto2";
    
    package k8s.io.apimachinery.pkg.runtime;
    
    // Package-wide variables from generator "generated".
    option go_package = "k8s.io/apimachinery/pkg/runtime";
    
    // RawExtension is used to hold extensions in external versions.
    //
    // To use this, make a field which has RawExtension as its type in your external, versioned
    // struct, and Object in your internal struct. You also need to register your
    // various plugin types.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  10. src/runtime/cgo/handle.go

    // through C and back to Go, and Go code can use the Handle to
    // retrieve the original Go value.
    //
    // The underlying type of Handle is guaranteed to fit in an integer type
    // that is large enough to hold the bit pattern of any pointer. The zero
    // value of a Handle is not valid, and thus is safe to use as a sentinel
    // in C APIs.
    //
    // For instance, on the Go side:
    //
    //	package main
    //
    //	/*
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 16:59:11 UTC 2023
    - 3.6K bytes
    - Viewed (0)
Back to top