Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 55 for earlib (0.18 sec)

  1. internal/bucket/lifecycle/lifecycle_test.go

    		NumVersions: 4,
    	}
    
    	event := lc.eval(opts, time.Time{})
    	if event.Action != TransitionAction {
    		t.Fatalf("Expected %v action but got %v", TransitionAction, event.Action)
    	}
    	// The earlier upcoming lifecycle event must be picked, i.e rule with id "Transition-10"
    	if exp := ExpectedExpiryTime(opts.ModTime, 10); exp != event.Due {
    		t.Fatalf("Expected due %v but got %v, ruleID=%v", exp, event.Due, event.RuleID)
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 01:12:48 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    ** Report issues caused by third-party plugins to the plugin maintainers, and update the plugins once they get fixed.
    
    * For some kinds of configuration inputs, it is possible to use the opt-out options that make Gradle fall back to the earlier behavior, omitting the inputs from detection.
    This temporary workaround is aimed to mitigate performance issues coming from out-of-date plugins.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/DefaultModelRegistryTest.groovy

                return [role, { subject, dep -> subject.value = dep.value }, "input value"]
            }
        }
    
        def "can add action for #targetRole mutation when in earlier #fromState state"() {
            def action = Stub(Action)
    
            given:
            registry.registerInstance("thing", "value")
                .registerInstance("another", "value")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 56K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/debug.go

    			}
    		}
    		// Check for an early out; this should always hit for the update
    		// if there are no cycles.
    		if len(preds) == 0 {
    			blockChanged = false
    
    			reset(locs.startState)
    			if state.loggingLevel > 2 {
    				state.logf("Early out, no predecessors changed since last check\n")
    			}
    			if previousBlock != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/util/concurrent/Futures.java

      //    (hypothetical) unsafe read by our caller. Note: adding 'volatile' does not fix this issue,
      //    it would just add an edge such that if done() observed non-null, then it would also
      //    definitely observe all earlier writes, but we still have no guarantee that done() would see
      //    the initial write (just stronger guarantees if it does).
      //
      // See: http://cs.oswego.edu/pipermail/concurrency-interest/2015-January/013800.html
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    			// ensure that watchcache is synchronized up to ResourceVersion X (using Get/List requests
    			// with NotOlderThan semantic), the further requests (even specifying earlier resource
    			// version) will also return the result synchronized to at least ResourceVersion X.
    			// By parallelizing test cases we ensure that the order in which test cases are defined
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  7. cmd/kubelet/app/server.go

    		}
    		if utilfeature.DefaultFeatureGate.Enabled(features.NodeSwap) {
    			if !isCgroup2UnifiedMode() && s.MemorySwap.SwapBehavior == kubelettypes.LimitedSwap {
    				// This feature is not supported for cgroupv1 so we are failing early.
    				return fmt.Errorf("swap feature is enabled and LimitedSwap but it is only supported with cgroupv2")
    			}
    			if !s.FailSwapOn && s.MemorySwap.SwapBehavior == "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modload/buildlist.go

    			if _, ok := rs.rootSelected(mPath); !ok {
    				// Module m is supposed to be listed explicitly, but isn't.
    				//
    				// Note that this condition is also detected (and logged with more
    				// detail) earlier during package loading, so it shouldn't actually be
    				// possible at this point — this is just a defense in depth.
    				return rs, errGoModDirty
    			}
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  9. pilot/pkg/security/authn/policy_applier_test.go

    						Mtls: &v1beta1.PeerAuthentication_MutualTLS{
    							Mode: v1beta1.PeerAuthentication_MutualTLS_DISABLE,
    						},
    					},
    				},
    				{
    					Meta: config.Meta{
    						Name:              "earlier",
    						Namespace:         "my-ns",
    						CreationTimestamp: now.Add(time.Second * -1),
    					},
    					Spec: &v1beta1.PeerAuthentication{
    						Selector: &type_beta.WorkloadSelector{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 01 07:32:22 UTC 2023
    - 60.2K bytes
    - Viewed (0)
  10. okhttp/src/test/java/okhttp3/EventListenerTest.kt

        enableTlsWithTunnel()
        server.protocols = Arrays.asList(Protocol.HTTP_2, Protocol.HTTP_1_1)
        timeToFirstByte()
      }
    
      /**
       * Test to confirm that events are reported at the time they occur and no earlier and no later.
       * This inserts a bunch of synthetic 250 ms delays into both client and server and confirms that
       * the same delays make it back into the events.
       *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 56.9K bytes
    - Viewed (0)
Back to top