Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 92 for Consistently (0.27 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/id/ConfigurationCacheableIdFactory.java

    import java.util.concurrent.atomic.AtomicLong;
    
    /**
     * Creates unique ids for objects created during configuration.
     * <p>
     * Usage of this factory in object factories ensures that ids are reused consistently when loading from the configuration cache.
     */
    @ThreadSafe
    @ServiceScope(Scope.BuildTree.class)
    public class ConfigurationCacheableIdFactory {
    
        private static final long USED_ASSIGNED_ID_MARKER = -1;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. src/cmd/go/internal/lockedfile/lockedfile_filelock.go

    	// call instead of locking separately, but we have to support separate locking
    	// calls for Linux and Windows anyway, so it's simpler to use that approach
    	// consistently.
    
    	f, err := os.OpenFile(name, flag&^os.O_TRUNC, perm)
    	if err != nil {
    		return nil, err
    	}
    
    	switch flag & (os.O_RDONLY | os.O_WRONLY | os.O_RDWR) {
    	case os.O_WRONLY, os.O_RDWR:
    		err = filelock.Lock(f)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  3. src/syscall/mkpost.go

    		// Replace padding fields inserted by cgo with blank identifiers.
    		re = regexp.MustCompile("Pad_cgo[A-Za-z0-9_]*")
    		s = re.ReplaceAllString(s, "_")
    
    		// We want to keep the X_ fields that are already consistently exported
    		// for the other linux GOARCH settings.
    		// Hide them and restore later.
    		s = strings.Replace(s, "X__val", "MKPOSTFSIDVAL", 1)
    		s = strings.Replace(s, "X__ifi_pad", "MKPOSTIFIPAD", 1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 25 02:59:05 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/process/internal/CancellationBuildOperationIntegrationTest.groovy

                      it.interrupt()
                    }
                  }
                  // We fail this task so the build fails consistently
                  throw new RuntimeException("Interrupting done")
                }
              }
            """
            parallelTaskCount.times { project ->
                settingsFile << """include 'a$project'\n"""
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:46:20 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  5. SECURITY.md

    Every effort will be made to handle the bug in as timely a manner as possible, however it's important that we
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Feb 12 00:51:25 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/InvalidConfigurationResolutionIntegrationTest.groovy

     * instead of merely warning.  We want to ensure that the {@code canBeResolved}, {@code canBeConsumed}, and {@code canBeDeclared}
     * flags are set appropriately and consistently on all configurations prior to their usage towards one of these goals.
     */
    class InvalidConfigurationResolutionIntegrationTest extends AbstractIntegrationSpec {
    
        def setup() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/bootstrap/EntryPoint.java

    import javax.annotation.CheckForNull;
    import java.io.PrintStream;
    
    /**
     * An entry point is the point at which execution will never return from.
     * <p>
     * Its purpose is to consistently apply our completion logic of forcing the JVM
     * to exit at a certain point instead of waiting for all threads to die, and to provide
     * some consistent unhandled exception catching.
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:54:56 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  8. pkg/kube/watcher/configmapwatcher/configmapwatcher_test.go

    					Should(Succeed())
    			}
    
    			if step.expectCalled {
    				g.Eventually(getCalled, time.Second).Should(Equal(true))
    				g.Eventually(getCM, time.Second).Should(Equal(newCM))
    			} else {
    				g.Consistently(getCalled).Should(Equal(false))
    			}
    		})
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  9. src/math/big/doc.go

    result, an operation can reuse the space allocated for the result value,
    and overwrite that value with the new result in the process.)
    
    Notational convention: Incoming method parameters (including the receiver)
    are named consistently in the API to clarify their use. Incoming operands
    are usually named x, y, a, b, and so on, but never z. A parameter specifying
    the result is named z (typically the receiver).
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  10. pkg/config/host/names.go

    // limitations under the License.
    
    package host
    
    import (
    	"sort"
    	"strings"
    )
    
    // Names is a collection of Name; it exists so it's easy to sort hostnames consistently across Istio.
    // In a few locations we care about the order hostnames appear in Envoy config: primarily HTTP routes, but also in
    // gateways, and for SNI. In those locations, we sort hostnames longest to shortest with wildcards last.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 01 19:19:22 UTC 2022
    - 4.3K bytes
    - Viewed (0)
Back to top