Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 287 for dropg (0.04 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/configurationcache/ConfigurationCacheProblemsFixture.groovy

                def problem = matcher.group(1)
                problems.add(problem)
                summary = summary.drop(1)
                if (summary.first.matches(docPattern)) {
                    // Documentation for the current problem, skip
                    // TODO - fail when there is no documentation for a problem
                    summary = summary.drop(1)
                }
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  2. manifests/charts/istio-control/istio-discovery/files/injection-template.yaml

          capabilities:
        {{- if not (or .Values.pilot.cni.enabled .Values.istio_cni.enabled) }}
            add:
            - NET_ADMIN
            - NET_RAW
        {{- end }}
            drop:
            - ALL
        {{- if not (or .Values.pilot.cni.enabled .Values.istio_cni.enabled) }}
          readOnlyRootFilesystem: false
          runAsGroup: 0
          runAsNonRoot: false
          runAsUser: 0
        {{- else }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 21:01:52 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  3. src/encoding/gob/decode.go

    func (d *decBuffer) Read(p []byte) (int, error) {
    	n := copy(p, d.data[d.offset:])
    	if n == 0 && len(p) != 0 {
    		return 0, io.EOF
    	}
    	d.offset += n
    	return n, nil
    }
    
    func (d *decBuffer) Drop(n int) {
    	if n > d.Len() {
    		panic("drop")
    	}
    	d.offset += n
    }
    
    func (d *decBuffer) ReadByte() (byte, error) {
    	if d.offset >= len(d.data) {
    		return 0, io.EOF
    	}
    	c := d.data[d.offset]
    	d.offset++
    	return c, nil
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:10:23 UTC 2023
    - 40.1K bytes
    - Viewed (0)
  4. pkg/apis/core/v1/conversion.go

    	if err := autoConvert_core_PodTemplateSpec_To_v1_PodTemplateSpec(in, out, s); err != nil {
    		return err
    	}
    
    	// drop init container annotations so they don't take effect on legacy kubelets.
    	// remove this once the oldest supported kubelet no longer honors the annotations over the field.
    	out.Annotations = dropInitContainerAnnotations(out.Annotations)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 19 22:30:55 UTC 2024
    - 19K bytes
    - Viewed (0)
  5. manifests/charts/istiod-remote/files/injection-template.yaml

          capabilities:
        {{- if not (or .Values.pilot.cni.enabled .Values.istio_cni.enabled) }}
            add:
            - NET_ADMIN
            - NET_RAW
        {{- end }}
            drop:
            - ALL
        {{- if not (or .Values.pilot.cni.enabled .Values.istio_cni.enabled) }}
          readOnlyRootFilesystem: false
          runAsGroup: 0
          runAsNonRoot: false
          runAsUser: 0
        {{- else }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 21:01:52 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r65/ToolingApiShutdownCrossVersionSpec.groovy

            build.forTasks('hang').withCancellationToken(cancellation.token()).run(resultHandler)
            sync.waitForAllPendingCalls(resultHandler)
            cancellation.cancel()
            Thread.sleep(200) // The daemon seems to drop messages arriving the same time
            connector.disconnect()
            resultHandler.finished()
    
            then:
            resultHandler.assertFailedWith(BuildCancelledException)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/registry/customresourcedefinition/strategy.go

    func CustomResourceDefinitionToSelectableFields(obj *apiextensions.CustomResourceDefinition) fields.Set {
    	return generic.ObjectMetaFieldsSet(&obj.ObjectMeta, true)
    }
    
    // dropDisabledFields drops disabled fields that are not used if their associated feature gates
    // are not enabled.
    func dropDisabledFields(newCRD *apiextensions.CustomResourceDefinition, oldCRD *apiextensions.CustomResourceDefinition) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/FirReferenceResolveHelper.kt

                    // E.g., coreR.string.hello
                    //   -> string.hello (drop the first segment)
                    //   test.pkg.R.string.hello
                    //   -> string.hello (take last two segments, where the size is determined by the size of qualified access minus 1)
                    val fixedQualifiedAccessSegments = qualifiedAccessSegments.drop(1)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 20:18:28 UTC 2024
    - 37K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/v1.29.0/apps.v1beta2.ReplicaSet.yaml

                requestsKey: "0"
            restartPolicy: restartPolicyValue
            securityContext:
              allowPrivilegeEscalation: true
              capabilities:
                add:
                - addValue
                drop:
                - dropValue
              privileged: true
              procMount: procMountValue
              readOnlyRootFilesystem: true
              runAsGroup: 8
              runAsNonRoot: true
              runAsUser: 4
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 34.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.PodTemplate.yaml

              requestsKey: "0"
          restartPolicy: restartPolicyValue
          securityContext:
            allowPrivilegeEscalation: true
            capabilities:
              add:
              - addValue
              drop:
              - dropValue
            privileged: true
            procMount: procMountValue
            readOnlyRootFilesystem: true
            runAsGroup: 8
            runAsNonRoot: true
            runAsUser: 4
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 31.5K bytes
    - Viewed (0)
Back to top