Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 67 for postProcess (0.27 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/validation/validation.go

    			out.Enum[k] = v
    		}
    	}
    
    	if err := convertSliceOfJSONSchemaProps(&in.AllOf, &out.AllOf, postProcess); err != nil {
    		return err
    	}
    	if err := convertSliceOfJSONSchemaProps(&in.OneOf, &out.OneOf, postProcess); err != nil {
    		return err
    	}
    	if err := convertSliceOfJSONSchemaProps(&in.AnyOf, &out.AnyOf, postProcess); err != nil {
    		return err
    	}
    
    	if in.Not != nil {
    		in, out := &in.Not, &out.Not
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 24 18:23:28 UTC 2023
    - 15K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/custom_tasks.adoc

    <5> *Consume Output*: The `postProcess` task depends on the output of the `process` task due to using that task's outputs as its own inputs.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Feb 25 15:21:05 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/driver/driver.go

    	default:
    		err = report.Generate(dst, rpt, o.Obj)
    	}
    	if err != nil {
    		return err
    	}
    	src := dst
    
    	// If necessary, perform any data post-processing.
    	if c.postProcess != nil {
    		dst = new(bytes.Buffer)
    		if err := c.postProcess(src, dst, o.UI); err != nil {
    			return err
    		}
    		src = dst
    	}
    
    	// If no output is specified, use default visualizer.
    	output := cfg.Output
    	if output == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/internal/driver/commands.go

    // during report generation, any postprocessing functions, and whether
    // the command expects a regexp parameter (typically a function name).
    type command struct {
    	format      int           // report format to generate
    	postProcess PostProcessor // postprocessing to run on report
    	visualizer  PostProcessor // display output using some callback
    	hasParam    bool          // collect a parameter from the CLI
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  5. guava-gwt/pom.xml

                won't.
    
                I have one idea for a better approach, but it's painful, and I haven't tested it: We
                could postprocess Collect.gwt.xml to add <skip> lines for all the files that should be
                covered by testModule.gwt.xml. Maybe I'll try it someday.
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 15:00:55 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  6. pkg/kubelet/kuberuntime/kuberuntime_sandbox_test.go

    						WindowsOptions: &v1.WindowsSecurityContextOptions{
    							HostProcess: &falseVar,
    						},
    					},
    				}},
    			},
    			expectedWindowsConfig: nil,
    			expectedError:         fmt.Errorf("pod must not contain both HostProcess and non-HostProcess containers"),
    		},
    		{
    			name: "Pod with HostProcess containers and HostNetwork not set",
    			podSpec: &v1.PodSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  7. pkg/kubelet/container/helpers_test.go

    			podSpec: &v1.PodSpec{
    				HostNetwork: true,
    				Containers: []v1.Container{{
    					Name: containerName,
    					SecurityContext: &v1.SecurityContext{
    						WindowsOptions: &v1.WindowsSecurityContextOptions{
    							HostProcess: &trueVar,
    						},
    					},
    				}},
    			},
    			expectedResult: true,
    		},
    		{
    			name: "pod with hostprocess=false, container with hostprocess=true",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 01:55:46 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  8. pkg/kubelet/kuberuntime/kuberuntime_sandbox.go

    			return nil, fmt.Errorf("pod must not contain both HostProcess and non-HostProcess containers")
    		}
    
    		if !kubecontainer.IsHostNetworkPod(pod) {
    			return nil, fmt.Errorf("hostNetwork is required if Pod contains HostProcess containers")
    		}
    
    		wc.SecurityContext.HostProcess = true
    	}
    
    	sc := pod.Spec.SecurityContext
    	if sc == nil || sc.WindowsOptions == nil {
    		return wc, nil
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/v1.29.0/apps.v1beta2.ReplicaSet.yaml

                type: typeValue
              windowsOptions:
                gmsaCredentialSpec: gmsaCredentialSpecValue
                gmsaCredentialSpecName: gmsaCredentialSpecNameValue
                hostProcess: true
                runAsUserName: runAsUserNameValue
            startupProbe:
              exec:
                command:
                - commandValue
              failureThreshold: 6
              grpc:
                port: 1
    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

              type: typeValue
            windowsOptions:
              gmsaCredentialSpec: gmsaCredentialSpecValue
              gmsaCredentialSpecName: gmsaCredentialSpecNameValue
              hostProcess: true
              runAsUserName: runAsUserNameValue
          startupProbe:
            exec:
              command:
              - commandValue
            failureThreshold: 6
            grpc:
              port: 1
    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