Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 332 for effort (0.11 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/model/ModelContainer.java

     */
    public interface ModelContainer<T> {
    
        /**
         * Runs the given function to calculate a value from the public mutable model. Applies best effort synchronization to prevent concurrent access to a particular project from multiple threads.
         * However, it is currently easy for state to leak from one project to another so this is not a strong guarantee.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:24 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. src/archive/tar/stat_unix.go

    // The downside is that renaming uname or gname by the OS never takes effect.
    var userMap, groupMap sync.Map // map[int]string
    
    func statUnix(fi fs.FileInfo, h *Header, doNameLookups bool) error {
    	sys, ok := fi.Sys().(*syscall.Stat_t)
    	if !ok {
    		return nil
    	}
    	h.Uid = int(sys.Uid)
    	h.Gid = int(sys.Gid)
    	if doNameLookups {
    		// Best effort at populating Uname and Gname.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 16:01:50 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/install_modcacherw_issue64282.txt

    # Regression test for https://go.dev/issue/64282.
    #
    # 'go install' and 'go run' with pkg@version arguments should make
    # a best effort to parse flags relevant to downloading modules
    # (currently only -modcacherw) before actually downloading the module
    # to identify which toolchain version to use.
    #
    # However, the best-effort flag parsing should not interfere with
    # actual flag parsing if we don't switch toolchains. In particular,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 29 17:53:43 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. pkg/kubelet/images/puller.go

    		}
    		startTime := time.Now()
    		imageRef, err := pip.imageService.PullImage(ctx, spec, pullSecrets, podSandboxConfig)
    		var size uint64
    		if err == nil && imageRef != "" {
    			// Getting the image size with best effort, ignoring the error.
    			size, _ = pip.imageService.GetImageSize(ctx, spec)
    		}
    		pullChan <- pullResult{
    			imageRef:     imageRef,
    			imageSize:    size,
    			err:          err,
    			pullDuration: time.Since(startTime),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 08 00:30:31 UTC 2024
    - 4K bytes
    - Viewed (0)
  5. platforms/core-runtime/messaging/src/integTest/groovy/org/gradle/internal/serialize/ExceptionPlaceholderIntegrationTest.groovy

            when:
            fails 'test'
    
            then:
            outputContains "Issue1618Test > thisTestShouldBeMarkedAsFailed FAILED"
        }
    
        @Issue("https://github.com/gradle/gradle/issues/9487")
        def "best effort to capture multi-cause exceptions"() {
            given:
            buildFile << """
                apply plugin: 'java-library'
    
                ${mavenCentralRepository()}
    
                dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 06:58:24 UTC 2024
    - 8K bytes
    - Viewed (0)
  6. platforms/ide/problems-api/src/main/java/org/gradle/internal/problems/failure/StackTraceClassifier.java

    import javax.annotation.Nullable;
    
    /**
     * Classifies stack frames by their {@link StackTraceRelevance relevance}.
     * <p>
     * Classifiers are meant to be heuristic, determining the relevance on the best-effort basis.
     */
    public interface StackTraceClassifier {
    
        StackTraceClassifier USER_CODE = new StackTraceClassifier() {
            @Override
            public StackTraceRelevance classify(StackTraceElement frame) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 23:52:10 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  7. guava-testlib/src/com/google/common/util/concurrent/testing/TestingExecutors.java

       * UnsupportedOperationException.
       *
       * <p>The implementation deviates from the {@code ExecutorService} specification with regards to
       * the {@code shutdownNow} method. First, "best-effort" with regards to canceling running tasks is
       * implemented as "no-effort". No interrupts or other attempts are made to stop threads executing
       * tasks. Second, the returned list will always be empty, as any submitted task is considered to
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 17:12:37 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  8. pkg/proxy/conntrack/conntrack.go

    		// TODO: Better handling for deletion failure. When failure occur, stale udp connection may not get flushed.
    		// These stale udp connection will keep black hole traffic. Making this a best effort operation for now, since it
    		// is expensive to baby-sit all udp connections to kubernetes services.
    		return fmt.Errorf("error deleting connection tracking state for UDP service IP: %s, error: %v", ip, err)
    	}
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 15 18:09:05 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  9. api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelProblem.java

         * <code>groupId:artifactId:version</code> the returned identifier need not be complete. The identifier is derived
         * from the information that is available at the point the problem occurs and as such merely serves as a best effort
         * to provide information to the user to track the problem back to its origin.
         *
         * @return The identifier of the model from which the problem originated or an empty string if unknown, never
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. architecture/standards/0003-avoid-introducing-Groovy-types-to-public-api.md

    This required the Kotlin DSL to add special integration to work with Groovy closures.
    This has also forced plugins written in languages other than Groovy to use Groovy types for some APIs.
    
    When the Kotlin DSL was introduced, we made an effort to add non-Groovy equivalents for all APIs.
    This has been mostly done, but there remain a few holdouts (fixing these is out of scope).
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Mar 10 20:38:06 UTC 2024
    - 1.8K bytes
    - Viewed (0)
Back to top