Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,365 for happen (0.11 sec)

  1. guava/src/com/google/common/base/Suppliers.java

       * cached value, which will be recalculated when {@code get()} is called on the reserialized
       * instance. The actual memoization does not happen when the underlying delegate throws an
       * exception.
       *
       * <p>When the underlying delegate throws an exception then this memoizing supplier will keep
       * delegating calls until it returns valid data.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  2. pkg/controller/volume/persistentvolume/delete_test.go

    	"k8s.io/klog/v2/ktesting"
    	pvtesting "k8s.io/kubernetes/pkg/controller/volume/persistentvolume/testing"
    	"k8s.io/kubernetes/pkg/features"
    )
    
    // Test single call to syncVolume, expecting recycling to happen.
    // 1. Fill in the controller with initial data
    // 2. Call the syncVolume *once*.
    // 3. Compare resulting volumes with expected volumes.
    func TestDeleteSync(t *testing.T) {
    	const gceDriver = "pd.csi.storage.gke.io"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/cacher/caching_object.go

    	if cache, ok := o.serializations.Load().(serializationsCache); ok && len(cache) == 0 {
    		return
    	}
    	// We don't expect cache invalidation to happen - so we want
    	// to log the stacktrace to allow debugging if that will happen.
    	// OTOH, we don't want to spam logs with it.
    	// So we try to log it at most once per second.
    	if shouldLogCacheInvalidation(time.Now()) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 05 18:03:48 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  4. src/runtime/chan.go

    	// Instead of individual buffer entries, the race detector uses the
    	// c.buf as the only buffer entry.  This simplification prevents us from
    	// following the memory model's happens-before rules (rules that are
    	// implemented in racereleaseacquire).  Instead, we accumulate happens-before
    	// information in the synchronization object associated with c.buf.
    	if c.elemsize == 0 {
    		if sg == nil {
    			raceacquire(qp)
    			racerelease(qp)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:50 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  5. src/runtime/time.go

    	async := debug.asynctimerchan.Load() != 0
    	if !async && t.isChan {
    		// For a timer channel, we want to make sure that no stale sends
    		// happen after a t.stop or t.modify, but we cannot hold t.mu
    		// during the actual send (which f does) due to lock ordering.
    		// It can happen that we are holding t's lock above, we decide
    		// it's time to send a time value (by calling f), grab the parameters,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 14:36:24 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  6. pilot/pkg/xds/endpoints/endpoint_builder.go

    	// The protobuf message which contains LbEndpoint slice.
    	llbEndpoints endpoint.LocalityLbEndpoints
    }
    
    func (e *LocalityEndpoints) append(ep *model.IstioEndpoint, le *endpoint.LbEndpoint) {
    	e.istioEndpoints = append(e.istioEndpoints, ep)
    	e.llbEndpoints.LbEndpoints = append(e.llbEndpoints.LbEndpoints, le)
    }
    
    func (e *LocalityEndpoints) refreshWeight() {
    	var weight *wrapperspb.UInt32Value
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 28 02:18:19 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  7. src/cmd/fix/typecheck.go

    		case ')':
    			nparen--
    			if nparen < 0 {
    				// probably can't happen
    				return nil
    			}
    		case ',':
    			if nparen == 0 {
    				if i < j {
    					out = append(out, s[i:j])
    				}
    				i = j + 1
    			}
    		}
    	}
    	if nparen != 0 {
    		// probably can't happen
    		return nil
    	}
    	if i < len(s) {
    		out = append(out, s[i:])
    	}
    	return out
    }
    
    // join is the inverse of split.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 16 22:02:42 UTC 2022
    - 20.1K bytes
    - Viewed (0)
  8. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishResolvedVersionsJavaIntegTest.groovy

        // for a first level dependency? However it may be that you implicitly get a
        // substitution rule (via a plugin for example) that you are not aware of.
        // Ideally we should warn when such things happen (linting).
        def "substituted dependencies are also substituted in the generated POM file"() {
            javaLibrary(mavenRepo.module("org", "foo", "1.0")).withModuleMetadata().publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 27 18:52:27 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  9. cmd/metrics-v3-types.go

    		labels := make([]string, 0, len(metric.VariableLabels)*2)
    		for k, v := range metric.VariableLabels {
    			if newLabel, ok := renameLabels[k]; ok {
    				labels = append(labels, newLabel, v)
    			} else {
    				labels = append(labels, k, v)
    			}
    		}
    		labels = append(labels, extraLabels...)
    		// If valid non zero value set the metrics
    		if metric.Value > 0 {
    			m.Set(name, metric.Value, labels...)
    		}
    	}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 07:41:18 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  10. src/time/example_test.go

    	t, err := time.Parse(time.UnixDate, "Wed Feb 25 11:06:39 PST 2015")
    	if err != nil { // Always check errors even if they should not happen.
    		panic(err)
    	}
    
    	tz, err := time.LoadLocation("Asia/Shanghai")
    	if err != nil { // Always check errors even if they should not happen.
    		panic(err)
    	}
    
    	// time.Time's Stringer method is useful without any format.
    	fmt.Println("default format:", t)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 13 01:05:00 UTC 2024
    - 22.4K bytes
    - Viewed (0)
Back to top