Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,776 for deer (0.08 sec)

  1. pkg/apis/apps/v1/conversion.go

    	if err := autoConvert_apps_Deployment_To_v1_Deployment(in, out, s); err != nil {
    		return err
    	}
    
    	out.Annotations = deepCopyStringMap(out.Annotations) // deep copy because we modify it below
    
    	// Copy deprecated rollbackTo field to annotation for roundtrip
    	// TODO: remove this conversion after we delete extensions/v1beta1 and apps/v1beta1 Deployment
    	if in.Spec.RollbackTo != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 23 23:36:24 UTC 2022
    - 6.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/audit/request_test.go

    				}
    			default:
    				// verify that a deep copy of the specified object is made before mutating it.
    				if expected, actual := reflect.ValueOf(test.object), reflect.ValueOf(objectGot); expected.Pointer() == actual.Pointer() {
    					t.Error("expected the returned object to be a deep copy of the input object")
    				}
    
    				if !cmp.Equal(test.expected, objectGot) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 29 00:03:53 UTC 2022
    - 6.2K bytes
    - Viewed (0)
  3. pkg/config/mesh/mesh_test.go

    	}
    	if len(got.DefaultProviders.GetMetrics()) != 0 {
    		t.Errorf("default providers deep merge failed, got %v", got.DefaultProviders.GetMetrics())
    	}
    	if !cmp.Equal(getExtensionProviders(got.ExtensionProviders), []string{"prometheus", "stackdriver", "envoy", "sd"}, protocmp.Transform()) {
    		t.Errorf("extension providers deep merge failed, got %v", getExtensionProviders(got.ExtensionProviders))
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  4. api/maven-api-settings/src/main/mdo/settings.mdo

        ]]>
      </description>
      <defaults>
        <default>
          <key>package</key>
          <value>org.apache.maven.settings</value>
        </default>
      </defaults>
      <classes>
        <class java.clone="deep">
          <name>TrackableBase</name>
          <version>1.0.0+</version>
          <description>
            common base class that contains code to track the source for
            this instance (USER|GLOBAL)
          </description>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Feb 17 18:40:11 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/kube/controller/ambient/testdata/peer-authn-disable-port-mtls-strict.yaml

    John Howard <******@****.***> 1709232034 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 18:40:34 UTC 2024
    - 203 bytes
    - Viewed (0)
  6. cmd/erasure-object.go

    		pool := globalBytePoolCap.Load()
    		bufA := pool.Get()
    		bufB := pool.Get()
    		defer pool.Put(bufA)
    		defer pool.Put(bufB)
    		ra, err := readahead.NewReaderBuffer(data, [][]byte{bufA[:fi.Erasure.BlockSize], bufB[:fi.Erasure.BlockSize]})
    		if err == nil {
    			toEncode = ra
    			defer ra.Close()
    		}
    		bugLogIf(ctx, err)
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  7. src/runtime/trace/annotation.go

    //
    //	ctx, task := trace.NewTask(ctx, "awesomeTask")
    //	trace.WithRegion(ctx, "preparation", prepWork)
    //	// preparation of the task
    //	go func() {  // continue processing the task in a separate goroutine.
    //	    defer task.End()
    //	    trace.WithRegion(ctx, "remainingWork", remainingWork)
    //	}()
    func NewTask(pctx context.Context, taskType string) (ctx context.Context, task *Task) {
    	pid := fromContext(pctx).id
    	id := newID()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 20 00:47:09 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/cacher/cache_watcher.go

    		c.markBookmarkAfterRvSent(event)
    	case <-c.done:
    	}
    }
    
    func (c *cacheWatcher) processInterval(ctx context.Context, cacheInterval *watchCacheInterval, resourceVersion uint64) {
    	defer utilruntime.HandleCrash()
    	defer close(c.result)
    	defer c.Stop()
    
    	// Check how long we are processing initEvents.
    	// As long as these are not processed, we are not processing
    	// any incoming events, so if it takes long, we may actually
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 12:22:41 UTC 2023
    - 18.7K bytes
    - Viewed (0)
  9. tests/fuzz/crd_roundtrip_fuzzer.go

    func roundTrip(codec runtime.Codec, object runtime.Object) {
    	printer := spew.ConfigState{DisableMethods: true}
    
    	// deep copy the original object
    	object = object.DeepCopyObject()
    	name := reflect.TypeOf(object).Elem().Name()
    
    	// encode (serialize) the deep copy using the provided codec
    	data, err := runtime.Encode(codec, object)
    	if err != nil {
    		return
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 01 01:34:15 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/kube/controller/ambient/testdata/peer-authn-strict-and-permissive-port-mtls.yaml

    John Howard <******@****.***> 1709232034 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 18:40:34 UTC 2024
    - 226 bytes
    - Viewed (0)
Back to top