Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for wrt (0.08 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. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolutionstrategy/DefaultCapabilitiesResolution.java

                        // because it's a capability conflict resolution, there is only one candidate per module identifier
                        // so we can be lenient wrt the version number used in the descriptor, which helps whenever the user
                        // used the convenience "notation" method
                        ModuleComponentIdentifier candMCI = (ModuleComponentIdentifier) candidate.getId();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 16:36:23 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  9. pkg/kubelet/images/image_manager.go

    		// of using dockerref.WithTag(named, ...) because that would cause the
    		// image to be fully qualified as docker.io/$name if it's a short name
    		// (e.g. just busybox). We don't want that to happen to keep the CRI
    		// agnostic wrt image names and default hostnames.
    		image = image + ":" + tag
    	}
    	return image, nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 08 00:30:31 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  10. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/ExceptionPlaceholder.java

            } catch (Throwable ignored) {
    // TODO:ADAM - switch the logging back on. Need to make sending messages from daemon to client async wrt log event generation
    //                LOGGER.debug("Ignoring failure to extract throwable stack trace.", ignored);
                stackTrace = Collections.emptyList();
            }
    
            try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 16.6K bytes
    - Viewed (0)
Back to top