Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,150 for Drop (0.04 sec)

  1. pkg/registry/discovery/endpointslice/strategy.go

    }
    
    // AllowUnconditionalUpdate is the default update policy for EndpointSlice objects.
    func (endpointSliceStrategy) AllowUnconditionalUpdate() bool {
    	return true
    }
    
    // dropDisabledConditionsOnCreate will drop any fields that are disabled.
    func dropDisabledFieldsOnCreate(endpointSlice *discovery.EndpointSlice) {
    	dropHints := !utilfeature.DefaultFeatureGate.Enabled(features.TopologyAwareHints)
    
    	if dropHints {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 02 10:00:01 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  2. plugin/pkg/admission/security/podsecurity/testdata/pod_restricted.yaml

          readOnlyRootFilesystem: true
          runAsGroup: 1001
          runAsUser: 1001
          runAsNonRoot: true
          capabilities:
            add:
            - NET_BIND_SERVICE
            drop:
            - ALL
        terminationMessagePath: /dev/termination-log
        terminationMessagePolicy: File
        volumeMounts:
        - mountPath: /kube-dns-config
          name: kube-dns-config
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 04 16:26:30 UTC 2021
    - 18.3K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/profile/prune.go

    	}
    }
    
    // RemoveUninteresting prunes and elides profiles using built-in
    // tables of uninteresting function names.
    func (p *Profile) RemoveUninteresting() error {
    	var keep, drop *regexp.Regexp
    	var err error
    
    	if p.DropFrames != "" {
    		if drop, err = regexp.Compile("^(" + p.DropFrames + ")$"); err != nil {
    			return fmt.Errorf("failed to compile regexp %s: %v", p.DropFrames, err)
    		}
    		if p.KeepFrames != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  4. pkg/kube/inject/testdata/inject/enable-core-dump-annotation.yaml.injected

                memory: 1Gi
              requests:
                cpu: 100m
                memory: 128Mi
            securityContext:
              allowPrivilegeEscalation: false
              capabilities:
                drop:
                - ALL
              privileged: false
              readOnlyRootFilesystem: false
              runAsGroup: 1337
              runAsNonRoot: true
              runAsUser: 1337
            startupProbe:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/json/json.go

    	kjson "sigs.k8s.io/json"
    )
    
    // NewEncoder delegates to json.NewEncoder
    // It is only here so this package can be a drop-in for common encoding/json uses
    func NewEncoder(w io.Writer) *json.Encoder {
    	return json.NewEncoder(w)
    }
    
    // Marshal delegates to json.Marshal
    // It is only here so this package can be a drop-in for common encoding/json uses
    func Marshal(v interface{}) ([]byte, error) {
    	return json.Marshal(v)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 20 16:49:23 UTC 2021
    - 3.4K bytes
    - Viewed (0)
  6. pkg/api/persistentvolumeclaim/util.go

    	// Drop the contents of the volumeAttributesClassName if the VolumeAttributesClass
    	// feature gate is disabled.
    	if !utilfeature.DefaultFeatureGate.Enabled(features.VolumeAttributesClass) {
    		if oldPVCSpec == nil || oldPVCSpec.VolumeAttributesClassName == nil {
    			pvcSpec.VolumeAttributesClassName = nil
    		}
    	}
    
    	// Drop the contents of the dataSourceRef field if the AnyVolumeDataSource
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:18:56 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  7. releasenotes/notes/agent-metrics.yaml

    kind: feature
    area: telemetry
    issue:
    - 22825
    releaseNotes:
    - |
      **Added** Prometheus metrics to istio-agent.
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 11 21:20:58 UTC 2020
    - 300 bytes
    - Viewed (0)
  8. releasenotes/notes/new_lb_algorithm_default.yaml

        likely to overburden endpoints. A number of experiments (by both the Istio and
        Envoy teams) have shown that `LEAST_REQUEST` outperforms `ROUND_ROBIN` in virtually all
        cases, with little/no downsides. It's generally considered a drop-in replacement for
        ROUND_ROBIN.
        
        `ROUND_ROBIN` will continue to be supported if explicitly specified. To restore
        `ROUND_ROBIN` as the default, set the istiod environment variable
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 09 20:55:01 UTC 2022
    - 856 bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/convert_test.go

    		n := rand.Intn(x.NumField())
    		if name := x.Type().Field(n).Name; name == "Example" || name == "ExternalDocs" {
    			// we drop these intentionally
    			continue
    		}
    		f.Fuzz(x.Field(n).Addr().Interface())
    
    		// it roundtrips or NewStructural errors out. We should never drop anything
    		orig, err := NewStructural(origSchema)
    		if err != nil {
    			continue
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 23 02:09:41 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  10. hack/testdata/pod-restricted-runtime-default.yaml

        command: ["/bin/sh", "-c", "sleep 100"]
        securityContext:
            runAsUser: 1000
            runAsGroup: 1000
            runAsNonRoot: true
            allowPrivilegeEscalation: false
            capabilities:
              drop: 
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 24 11:16:49 UTC 2023
    - 437 bytes
    - Viewed (0)
Back to top