Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for wrt (0.02 sec)

  1. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/DefaultFailure.java

            return causes;
        }
    
        public static DefaultFailure fromThrowable(Throwable t) {
            StringWriter out = new StringWriter();
            PrintWriter wrt = new PrintWriter(out);
            t.printStackTrace(wrt);
            Throwable cause = t.getCause();
            DefaultFailure causeFailure = cause != null && cause != t ? fromThrowable(cause) : null;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. subprojects/build-events/src/main/java/org/gradle/internal/build/event/types/DefaultFailure.java

        }
    
        public static InternalFailure fromThrowable(Throwable t) {
            StringWriter out = new StringWriter();
            PrintWriter wrt = new PrintWriter(out);
            t.printStackTrace(wrt);
            Throwable cause = t.getCause();
            InternalFailure causeFailure = cause != null && cause != t ? fromThrowable(cause) : null;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 27 13:13:40 UTC 2022
    - 2K bytes
    - Viewed (0)
  3. tensorflow/cc/gradients/linalg_grad.cc

      return std::make_tuple(reduced_subs, reduced_dims,
                             Const(scope, reduced_axes_tensor));
    }
    
    // Returns the gradient wrt input for a unary einsum with reductions.
    //
    //  scope: Scope for grad operations.
    //  output_grad: The gradient wrt the output of a unary einsum operation.
    //  output_subs: The output subscript. (E.g. `ac` for equation `abc->ac`).
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 07 23:11:54 UTC 2022
    - 20.4K bytes
    - Viewed (0)
  4. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/DefaultTestFailure.java

        }
    
        private static String stacktraceOf(Throwable throwable) {
            try {
                StringWriter out = new StringWriter();
                PrintWriter wrt = new PrintWriter(out);
                throwable.printStackTrace(wrt);
                return out.toString();
            } catch (Exception t) {
                return stacktraceOf(t);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rocache/AbstractReadOnlyCacheDependencyResolutionTest.groovy

                        def files = configurations.${config}
                        doLast {
                            outputFile.withWriter { wrt ->
                                files.each { f ->
                                    wrt.println("\${f.name}: \${f.toURI()}")
                                }
                            }
                        }
                    }
                }
            """
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 01:27:55 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/versioning/VersionDetails.java

            return false;
        }
    
        public boolean supportsPluginClasspathInjection() {
            return false;
        }
    
        /**
         * Returns true if this provider correctly implements the protocol contract wrt exceptions thrown on cancel
         */
        public boolean honorsContractOnCancel() {
            return false;
        }
    
        private static class R26VersionDetails extends VersionDetails {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/BuildDefinition.java

        public File getBuildRootDir() {
            return buildRootDir;
        }
    
        /**
         * The identity of the build that caused this build to be included.
         *
         * This is not guaranteed to be the parent build WRT the build path, or Gradle instance.
         *
         * Null if the build is the root build.
         */
        @Nullable
        public PublicBuildPath getFromBuild() {
            return fromBuild;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Aug 19 21:33:07 UTC 2022
    - 5.1K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/unusedresult/unusedresult.go

    	//      ...
    	//    }
    	//
    	//    ignoringTheErrorWouldBeVeryBad() // oops
    	//
    
    	// List standard library functions here.
    	// The context.With{Cancel,Deadline,Timeout} entries are
    	// effectively redundant wrt the lostcancel analyzer.
    	funcs = stringSetFlag{
    		"context.WithCancel":   true,
    		"context.WithDeadline": true,
    		"context.WithTimeout":  true,
    		"context.WithValue":    true,
    		"errors.New":           true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  9. tensorflow/c/experimental/ops/math_ops.h

    Status Sqrt(AbstractContext* ctx, AbstractTensorHandle* const x,
                AbstractTensorHandle** y, const char* name = nullptr,
                const char* raw_device_name = nullptr);
    
    // Computes the gradient for the sqrt of `x` wrt its input.
    Status SqrtGrad(AbstractContext* ctx, AbstractTensorHandle* const y,
                    AbstractTensorHandle* const dy, AbstractTensorHandle** z,
                    const char* name = nullptr,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 10 19:11:36 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/capabilities/CapabilitiesConflictResolutionIntegrationTest.groovy

            }
    
            where:
            rule << [
                "select(candidates.find { it.id.module == 'testB'})",
                "select('org:testB:1.0')",
                "select('org:testB:1.1')", // we are lenient wrt to the version number
            ]
        }
    
        @RequiredFeature(feature = GradleMetadataResolveRunner.GRADLE_METADATA, value = "true")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 07:37:10 UTC 2024
    - 8.4K bytes
    - Viewed (0)
Back to top