Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,533 for happen (0.4 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/verification/serializer/DependencyVerificationsXmlReaderTest.groovy

                </ignored-keys>
             </artifact>
             <artifact name="foo-1.0.pom">
                <ignored-keys>
                   <ignored-key id="123"/>
                   <ignored-key id="456" reason="bad things happen"/>
                </ignored-keys>
             </artifact>
          </component>
       </components>
    </verification-metadata>"""
    
            then:
            def component = verifier.verificationMetadata[0]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 18 10:13:31 UTC 2023
    - 15.8K bytes
    - Viewed (0)
  2. src/crypto/internal/nistec/generate.go

    	buf := append(out[:0], 4)
    	buf = append(buf, x.Bytes()...)
    	buf = append(buf, y.Bytes()...)
    	return buf
    }
    
    // BytesX returns the encoding of the x-coordinate of p, as specified in SEC 1,
    // Version 2.0, Section 2.3.5, or an error if p is the point at infinity.
    func (p *{{.P}}Point) BytesX() ([]byte, error) {
    	// This function is outlined to make the allocations inline in the caller
    	// rather than happen on the heap.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  3. cni/pkg/nodeagent/informers_test.go

    	assertPodAnnotated(t, client, pod)
    
    	// Assert expected calls actually made
    	fs.AssertExpectations(t)
    
    	// unlabelling the namespace should cause only one RemovePodFromMesh to happen
    	fs.On("RemovePodFromMesh",
    		ctx,
    		mock.Anything,
    	).Once().Return(nil)
    
    	// unlabel the namespace
    	labelsPatch := []byte(fmt.Sprintf(`{"metadata":{"labels":{"%s":null}}}`,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 05:10:23 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top