Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 90 for gold (0.05 sec)

  1. pkg/kubelet/util/manager/watch_based_manager.go

    	// However, simple benchmarks show that memory overhead in that case is
    	// decrease from ~600B to ~300B per object. So we are not optimizing it
    	// until we will see a good reason for that.
    	store := cache.NewStore(cache.MetaNamespaceKeyFunc)
    	return &cacheStore{store, sync.Mutex{}, false}
    }
    
    func (c *objectCache) newReflectorLocked(namespace, name string) *objectCacheItem {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  2. cni/pkg/plugin/plugin.go

    	podRetrievalMaxRetries = 30
    	podRetrievalInterval   = 1 * time.Second
    )
    
    const (
    	ISTIOINIT  = "istio-init"
    	ISTIOPROXY = "istio-proxy"
    )
    
    // Kubernetes a K8s specific struct to hold config
    type Kubernetes struct {
    	Kubeconfig        string   `json:"kubeconfig"`
    	ExcludeNamespaces []string `json:"exclude_namespaces"`
    }
    
    // Config is whatever you expect your configuration json to be. This is whatever
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:35 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/cmd/phases/init/certs.go

    	// Defaulted config we will use to get SAN certs
    	defaultConfig := &kubeadmapiv1.InitConfiguration{
    		LocalAPIEndpoint: kubeadmapiv1.APIEndpoint{
    			// GetAPIServerAltNames errors without an AdvertiseAddress; this is as good as any.
    			AdvertiseAddress: "127.0.0.1",
    		},
    	}
    
    	defaultInternalConfig := &kubeadmapi.InitConfiguration{}
    
    	kubeadmscheme.Scheme.Default(defaultConfig)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 06:35:45 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      let summary = "Move transposes pass.";
      let constructor = "TF::CreateMoveTransposesPass()";
      let options = [
        Option<"fold_transpose_in_ops_", "fold-transpose-in-ops", "bool", /*default=*/"true",
               "Whether to fold transposes in ops which can support folding.">,
        Option<"direction_", "direction", "enum MoveTransposeDirection",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/qos_container_manager_linux.go

    		usage, err := m.cgroupManager.MemoryUsage(config.Name)
    		if err != nil {
    			klog.V(2).InfoS("Failed to get resource stats", "err", err)
    			return
    		}
    
    		// Because there is no good way to determine of the original Update()
    		// on the memory resource was successful, we determine failure of the
    		// first attempt by checking if the usage is above the limit we attempt
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 20:42:59 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. cni/pkg/nodeagent/informers.go

    			// Unlike the other cases, we actually want to use the "old" event for terminated job pods
    			// - kubernetes will (weirdly) issue a new status to the pod with no IP on termination, meaning
    			// our check of `pod.status` will fail for (some) termination events.
    			//
    			// We will get subsequent events that append a new status with the IP put back, but it's simpler
    			// and safer to just check the old pod status for the IP.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:35 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  7. build/dependencies.yaml

      # backwards-compatible with the original tooling.
      #
      # In instances where the file format may change across versions, this meta
      # dependency check exists to ensure we're pinned to a known good version.
      #
      # ref: https://github.com/kubernetes/kubernetes/pull/98845
      - name: "zeitgeist"
        version: "v0.5.3"
        refPaths:
        - path: hack/verify-external-dependencies-version.sh
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  8. src/os/exec.go

    	// operating on the wrong process.
    	//
    	// Release and Wait both drop the Process' persistent reference, but
    	// other concurrent references may delay actually closing the handle
    	// because they hold a transient reference.
    	//
    	// Regardless, we want new method calls to immediately treat the handle
    	// as unavailable after Release or Wait to avoid extending this delay.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  9. cmd/bucket-handlers_test.go

    			accessKey:          credentials.AccessKey,
    			secretKey:          credentials.SecretKey,
    			expectedRespStatus: http.StatusOK,
    			shouldPass:         true,
    		},
    		// Test case - 8.
    		// Good case without delimiter.
    		{
    			bucket:             bucketName,
    			prefix:             "",
    			keyMarker:          "",
    			uploadIDMarker:     "",
    			delimiter:          "",
    			maxUploads:         "100",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 39.8K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/liveness/plive.go

    		base.Fatalf("weird aux: %s", v.LongString())
    		return nil, e
    	}
    }
    
    type livenessFuncCache struct {
    	be          []blockEffects
    	livenessMap Map
    }
    
    // Constructs a new liveness structure used to hold the global state of the
    // liveness computation. The cfg argument is a slice of *BasicBlocks and the
    // vars argument is a slice of *Nodes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
Back to top