Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for sensible (0.17 sec)

  1. tensorflow/cc/gradients/math_grad.cc

                            ZerosLike(scope, x));
        auto gy_1 = Mul(scope, Mul(scope, grad, z), log_x);
        return BinaryGradCommon(scope, op, grad_outputs, gx_1, gy_1);
      } else {
        // There's no sensible real value to return if x < 0, so return 0
        auto log_x = Where3(scope, Greater(scope, x, zero), Log(scope, x),
                            ZerosLike(scope, x));
        auto gy_1 = Mul(scope, Mul(scope, grad, z), log_x);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 25 18:20:20 UTC 2023
    - 50.7K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    For example, the Java plugin adds a `jar` task for packaging a project's compiled classes and resources in a JAR.
    Many of these plugins provide sensible conventions for the names of archives and the copy specifications used.
    We recommend you use these tasks wherever you can rather than overriding them with your own.
    
    [[sec:archive_naming]]
    === Naming archives
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  3. guava/src/com/google/common/cache/CacheBuilder.java

       * in the class javadoc.
       *
       * <p>If you can represent the duration as a {@link java.time.Duration} (which should be preferred
       * when feasible), use {@link #expireAfterWrite(Duration)} instead.
       *
       * @param duration the length of time after an entry is created that it should be automatically
       *     removed
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  4. src/encoding/xml/marshal_test.go

    // Unless explicitly stated as such (or *Plain), all of the
    // tests below are two-way tests. When introducing new tests,
    // please try to make them two-way as well to ensure that
    // marshaling and unmarshaling are as symmetrical as feasible.
    var marshalTests = []struct {
    	Value          any
    	ExpectXML      string
    	MarshalOnly    bool
    	MarshalError   string
    	UnmarshalOnly  bool
    	UnmarshalError string
    }{
    	// Test nil marshals to nothing
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/buildlist.go

    		// (https://golang.org/ref/mod#lazy-loading) only if the module graph is
    		// pruned.
    		//
    		// In unpruned modules,we load the module graph much more aggressively (in
    		// order to detect inconsistencies that wouldn't be feasible to spot-check),
    		// so it wouldn't be useful to log when that occurs (because it happens in
    		// normal operation all the time).
    		readModGraphDebugOnce.Do(func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  6. src/runtime/map.go

    		offi := (i + it.offset) & (abi.MapBucketCount - 1)
    		if isEmpty(b.tophash[offi]) || b.tophash[offi] == evacuatedEmpty {
    			// TODO: emptyRest is hard to use here, as we start iterating
    			// in the middle of a bucket. It's feasible, just tricky.
    			continue
    		}
    		k := add(unsafe.Pointer(b), dataOffset+uintptr(offi)*uintptr(t.KeySize))
    		if t.IndirectKey() {
    			k = *((*unsafe.Pointer)(k))
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  7. pilot/pkg/model/push_context_test.go

    			AuthenticationPolicies{}, NetworkManager{}, sidecarIndex{}, Telemetries{}, ProxyConfigs{}, ConsolidatedDestRule{},
    			ClusterLocalHosts{}),
    		// These are not feasible/worth comparing
    		cmpopts.IgnoreTypes(sync.RWMutex{}, localServiceDiscovery{}, FakeStore{}, atomic.Bool{}, sync.Mutex{}),
    		cmpopts.IgnoreUnexported(IstioEndpoint{}),
    		cmpopts.IgnoreInterfaces(struct{ mesh.Holder }{}),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/gateway/conversion.go

    // * 1 IP address. This is managed, with IP explicit
    // * Nothing. This is managed, with IP auto assigned
    //
    // Not supported:
    // Multiple hostname/IP - It is feasible but preference is to create multiple Gateways. This would also break the 1:1 mapping of GW:Service
    // Mixed hostname and IP - doesn't make sense; user should define the IP in service
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    If a task in your build relied on the previous behavior, you can instead use the entire
    `SourceSetOutput` as an input, which contains all classes and resources.
    
    If that is not feasible, you can restore the previous behavior by adding more task dependencies to `classesDirs`:
    ```groovy
    java {
        sourceSets {
            main {
                output.classesDirs.builtBy(output)
            }
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
Back to top