Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for mage (0.05 sec)

  1. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    	pod, status := makeBasePodAndStatus()
    	pod.Spec.InitContainers = []v1.Container{
    		{
    			Name:  "init1",
    			Image: "bar-image",
    		},
    		{
    			Name:  "init2",
    			Image: "bar-image",
    		},
    		{
    			Name:  "init3",
    			Image: "bar-image",
    		},
    	}
    	// Replace the original statuses of the containers with those for the init
    	// containers.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.31.md

    - Added support for building Windows kube-proxy container image.
      A container image for kube-proxy on Windows can now be built with the command
      `make release-images KUBE_BUILD_WINDOWS=y`.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  3. cmd/kubelet/app/server.go

    			}
    
    			if cleanFlagSet.Changed("pod-infra-container-image") {
    				klog.InfoS("--pod-infra-container-image will not be pruned by the image garbage collector in kubelet and should also be set in the remote runtime")
    				_ = cmd.Flags().MarkDeprecated("pod-infra-container-image", "--pod-infra-container-image will be removed in 1.30. Image garbage collector will get sandbox image information from CRI.")
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  4. cluster/gce/windows/k8s-node-setup.psm1

      Try {
        $version = Get_WindowsVersion | Out-String
        $hotfixes = "$(Get-Hotfix | Out-String)"
        $image = "$(Get-InstanceMetadata 'image' | Out-String)"
        Log-Output "Windows version:`n$version"
        Log-Output "Installed hotfixes:`n$hotfixes"
        Log-Output "GCE Windows image:`n$image"
      } Catch { }
    }
    
    # Configures Window Defender preferences
    function Configure-WindowsDefender {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  5. cmd/storage-datatypes_gen_test.go

    	v := BaseOptions{}
    	b.ReportAllocs()
    	b.ResetTimer()
    	for i := 0; i < b.N; i++ {
    		v.MarshalMsg(nil)
    	}
    }
    
    func BenchmarkAppendMsgBaseOptions(b *testing.B) {
    	v := BaseOptions{}
    	bts := make([]byte, 0, v.Msgsize())
    	bts, _ = v.MarshalMsg(bts[0:0])
    	b.SetBytes(int64(len(bts)))
    	b.ReportAllocs()
    	b.ResetTimer()
    	for i := 0; i < b.N; i++ {
    		bts, _ = v.MarshalMsg(bts[0:0])
    	}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 62.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    		currentResourceVersion := "42"
    		switch {
    		// request made by getCurrentResourceVersionFromStorage by checking Limit
    		case key == cacher.resourcePrefix:
    			podList := listObj.(*example.PodList)
    			podList.ResourceVersion = currentResourceVersion
    			return nil
    		// request made by storage.GetList with revision from original request or
    		// returned by getCurrentResourceVersionFromStorage
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  7. cmd/erasure-healing_test.go

    				t.Fatal(err)
    			}
    			bucket := "bucket"
    			object := "object"
    
    			data := make([]byte, test.dataSize)
    			_, err = rand.Read(data)
    			if err != nil {
    				t.Fatal(err)
    			}
    			var opts ObjectOptions
    
    			err = obj.MakeBucket(ctx, bucket, MakeBucketOptions{})
    			if err != nil {
    				t.Fatalf("Failed to make a bucket - %v", err)
    			}
    
    			_, err = obj.PutObject(ctx, bucket, object,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 49K bytes
    - Viewed (0)
  8. tests/integration/ambient/baseline_test.go

    				}
    				return nil
    			}
    
    			shouldBalance := dst.Config().HasServiceAddressedWaypointProxy()
    			// Istio client will not reuse connections for HTTP/1.1
    			opt.HTTP.HTTP2 = true
    			// Make sure we make multiple calls
    			opt.Count = 10
    			c := singleHost
    			if shouldBalance {
    				c = multipleHost
    			}
    			opt.Check = check.And(check.OK(), c)
    			opt.NewConnectionPerRequest = false
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  9. guava/src/com/google/common/util/concurrent/AbstractFuture.java

         */
        Waiter(boolean unused) {}
    
        Waiter() {
          // avoid volatile write, write is made visible by subsequent CAS on waiters field
          ATOMIC_HELPER.putThread(this, Thread.currentThread());
        }
    
        // non-volatile write to the next field. Should be made visible by subsequent CAS on waiters
        // field.
        void setNext(@CheckForNull Waiter next) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
  10. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

         */
        Waiter(boolean unused) {}
    
        Waiter() {
          // avoid volatile write, write is made visible by subsequent CAS on waiters field
          ATOMIC_HELPER.putThread(this, Thread.currentThread());
        }
    
        // non-volatile write to the next field. Should be made visible by subsequent CAS on waiters
        // field.
        void setNext(@CheckForNull Waiter next) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
Back to top