Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for tentatives (0.16 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/ErrorHandlingModuleComponentRepository.java

            private static final Logger LOGGER = Logging.getLogger(ErrorHandlingModuleComponentRepositoryAccess.class);
            private final static String MAX_TENTATIVES_BEFORE_DISABLING = "org.gradle.internal.repository.max.tentatives";
            private final static String INITIAL_BACKOFF_MS = "org.gradle.internal.repository.initial.backoff";
    
            private final ModuleComponentRepositoryAccess<ModuleComponentGraphResolveState> delegate;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/AbstractIntegrationSpec.groovy

            m2.assertNoLeftoverState()
    
            m2.isolateMavenLocalRepo(executer)
            executer.beforeExecute {
                withArgument("-Dorg.gradle.internal.repository.max.tentatives=$maxHttpRetries")
                if (maxUploadAttempts != null) {
                    withArgument("-Dorg.gradle.internal.network.retry.max.attempts=$maxUploadAttempts")
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:07:53 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  3. src/internal/coverage/cfile/hooks.go

    // out the meta-data file, and register emitCounterData as an exit
    // hook.
    //
    // If 'istest' is true (indicating that the program in question is a
    // Go test binary), then we tentatively queue up both emitMetaData and
    // emitCounterData as exit hooks. In the normal case (e.g. regular "go
    // test -cover" run) the testmain.go boilerplate will run at the end
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 02:32:19 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  4. src/compress/gzip/gunzip.go

    // The Reader will return an [ErrChecksum] when [Reader.Read]
    // reaches the end of the uncompressed data if it does not
    // have the expected length or checksum. Clients should treat data
    // returned by [Reader.Read] as tentative until they receive the [io.EOF]
    // marking the end of the data.
    type Reader struct {
    	Header       // valid after NewReader or Reader.Reset
    	r            flate.Reader
    	decompressor io.ReadCloser
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 23:20:03 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modget/get.go

    		}
    		if m.Path == "" {
    			// There is no viable candidate for the missing package.
    			// Leave it unresolved.
    			continue
    		}
    		tentative = append(tentative, m)
    	}
    	base.ExitIfErrors()
    
    	changed = r.updateBuildList(ctx, tentative)
    	return changed
    }
    
    // disambiguate eliminates candidates from cs that conflict with other module
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  6. src/go/types/check.go

    // gotypesalias controls the use of Alias types.
    // As of Apr 16 2024 they are used by default.
    // To disable their use, set GODEBUG to gotypesalias=0.
    // This GODEBUG flag will be removed in the near future (tentatively Go 1.24).
    var gotypesalias = godebug.New("gotypesalias")
    
    // _aliasAny changes the behavior of [Scope.Lookup] for "any" in the
    // [Universe] scope.
    //
    // This is necessary because while Alias creation is controlled by
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  7. src/net/dial.go

    	if deadline.IsZero() {
    		return deadline, nil
    	}
    	timeRemaining := deadline.Sub(now)
    	if timeRemaining <= 0 {
    		return time.Time{}, errTimeout
    	}
    	// Tentatively allocate equal time to each remaining address.
    	timeout := timeRemaining / time.Duration(addrsRemaining)
    	// If the time per address is too short, steal from the end of the list.
    	const saneMinimum = 2 * time.Second
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/arm/asm5.go

    		}
    
    		pc += int32(m)
    	}
    }
    
    // checkpool flushes the literal pool when the first reference to
    // it threatens to go out of range of a 12-bit PC-relative offset.
    //
    // nextpc is the tentative next PC at which the pool could be emitted.
    // checkpool should be called *before* emitting the instruction that
    // would cause the PC to reach nextpc.
    // If nextpc is too far from the first pool reference, checkpool will
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.18.md

    - Kubeadm: apply further improvements to the tentative support for concurrent etcd member join. Fixes a bug where multiple members can receive the same hostname. Increase the etcd client dial timeout and retry timeout for add/remove/... operations. ([#87505](https://github.com/kubernetes/kubernetes/pull/87505),...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 16 17:18:28 UTC 2021
    - 373.2K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.17.md

    - Kubeadm: apply further improvements to the tentative support for concurrent etcd member join. Fixes a bug where multiple members can receive the same hostname. Increase the etcd client dial timeout and retry timeout for add/remove/... operations. ([#87505](https://github.com/kubernetes/kubernetes/pull/87505),...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 28 10:44:33 UTC 2021
    - 346.2K bytes
    - Viewed (0)
Back to top