Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 444 for sometimes (0.12 sec)

  1. guava/src/com/google/common/util/concurrent/NullnessCasts.java

        return t;
      }
    
      /**
       * Returns {@code null} cast to any type.
       *
       * <p>This method is intended to help with usages of type parameters that have {@linkplain
       * ParametricNullness parametric nullness}. Sometimes, code may receive a null {@code T} but store
       * a "null sentinel" to take its place. When the time comes to convert it back to a {@code T} to
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 10 20:36:34 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  2. src/cmd/fix/main_test.go

    	}
    
    	for _, tt := range testCases {
    		tt := tt
    		t.Run(tt.Name, func(t *testing.T) {
    			if tt.Version == "" {
    				if testing.Verbose() {
    					// Don't run in parallel: cmd/fix sometimes writes directly to stderr,
    					// and since -v prints which test is currently running we want that
    					// information to accurately correlate with the stderr output.
    				} else {
    					t.Parallel()
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 05:31:47 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  3. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/SwiftLibraryInitIntegrationTest.groovy

    @RequiresInstalledToolChain(ToolChainRequirement.SWIFTC)
    @Requires(UnitTestPreconditions.NotMacOsM1) // M1 Macs need modern Xcode to compile aarch64 binaries
    @DoesNotSupportNonAsciiPaths(reason = "Swift sometimes fails when executed from non-ASCII directory")
    class SwiftLibraryInitIntegrationTest extends AbstractInitIntegrationSpec {
    
        public static final String SAMPLE_LIBRARY_CLASS = "Hello.swift"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 20:10:55 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  4. pilot/pkg/model/policyattachment.go

    	if !isGatewayAPI {
    		// if targetRef is specified, ignore the policy altogether
    		if len(targetRefs) > 0 {
    			return false
    		}
    		return p.isSelected(policy)
    	}
    
    	// gateway with no targetRefs: (sometimes) fallback to selector
    	if len(targetRefs) == 0 {
    		// gateways require the feature flag for selector-based policy
    		// waypoints never use selector
    		if p.IsWaypoint || !features.EnableSelectorBasedK8sGatewayPolicy {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  5. build-logic/performance-testing/src/main/kotlin/gradlebuild/performance/tasks/BuildCommitDistribution.kt

            copyToFinalDestination(checkoutDir)
    
            println("Building the commit distribution in $checkoutDir succeeded, now the baseline is ${commitBaseline.get()}")
        }
    
        /**
         * Sometimes, the nightly might be cleaned up before GA comes out. If this happens, we fall back to latest RC version or nightly version.
         */
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 08:07:16 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  6. src/main/java/jcifs/internal/smb2/ServerMessageBlock2Response.java

         */
        @Override
        public boolean verifySignature ( byte[] buffer, int i, int size ) {
            // observed too that signatures on error responses are sometimes wrong??
            // Looks like the failure case also is just reflecting back the signature we sent
    
            // with SMB3's negotiation validation it's no longer possible to ignore this (on the validation response)
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Aug 05 09:45:59 UTC 2018
    - 7.4K bytes
    - Viewed (0)
  7. src/runtime/mem_linux.go

    	// this call can fail with EAGAIN because it's best-effort.
    	// Also, when it returns an error, it's only for the last
    	// huge page in the region requested.
    	//
    	// It can also sometimes return EINVAL if the corresponding
    	// region hasn't been backed by physical memory. This is
    	// difficult to guarantee in general, and it also means
    	// there's no way to distinguish whether this syscall is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 5K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/package-info.java

     *   <dt>{@link BiMap}
     *   <dd>An extension of {@link java.util.Map} that guarantees the uniqueness of its values as well
     *       as that of its keys. This is sometimes called an "invertible map," since the restriction on
     *       values enables it to support an {@linkplain BiMap#inverse inverse view} -- which is another
     *       instance of {@code BiMap}.
     *   <dt>{@link Table}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jul 06 16:29:45 UTC 2023
    - 5K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/package-info.java

     *   <dt>{@link BiMap}
     *   <dd>An extension of {@link java.util.Map} that guarantees the uniqueness of its values as well
     *       as that of its keys. This is sometimes called an "invertible map," since the restriction on
     *       values enables it to support an {@linkplain BiMap#inverse inverse view} -- which is another
     *       instance of {@code BiMap}.
     *   <dt>{@link Table}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jul 06 16:29:45 UTC 2023
    - 5K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/EnumBiMap.java

       * them under J2CL—or, as an unfortunate side effect, under GWT. We do still give the fields
       * themselves their proper values under GWT, since GWT's EnumMap does need the Class instance.
       *
       * Note that sometimes these fields *do* have correct values under J2CL: They will if the caller
       * calls `create(Foo.class)`, rather than `create(map)`. That's fine; we just shouldn't rely on
       * it.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Aug 24 01:40:03 UTC 2023
    - 6.3K bytes
    - Viewed (0)
Back to top