Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 159 for postProcess (0.16 sec)

  1. 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)
  2. 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)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/IvyXmlModuleDescriptorParser.java

            parser.setValidate(validate);
            parser.parse();
    
            DefaultModuleDescriptor moduleDescriptor = parser.getModuleDescriptor();
            postProcess(moduleDescriptor);
    
            return ParseResult.of(parser.getMetaData(), parser.hasGradleMetadataRedirect);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 65K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

          host_graph->get(),
          std::unordered_set<const Node*>{(*host_graph)->sink_node()});
    
      // Postprocess edges between different outside compilations.
      TF_RETURN_IF_ERROR(PostprocessEdgesBetweenOutsideCompilations(
          host_graph->get(), outside_compilation_attr_name));
    
      // Postprocess lifted arg nodes.
      TF_RETURN_IF_ERROR(PostprocessLiftedArgs(host_graph->get(), fld));
    
      if (VLOG_IS_ON(4)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. pkg/securitycontext/util.go

    		if containerSc.WindowsOptions.RunAsUserName != nil {
    			effectiveSc.WindowsOptions.RunAsUserName = containerSc.WindowsOptions.RunAsUserName
    		}
    		if containerSc.WindowsOptions.HostProcess != nil {
    			effectiveSc.WindowsOptions.HostProcess = containerSc.WindowsOptions.HostProcess
    		}
    	}
    
    	if containerSc.Capabilities != nil {
    		effectiveSc.Capabilities = new(v1.Capabilities)
    		*effectiveSc.Capabilities = *containerSc.Capabilities
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 15 07:28:24 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  9. pkg/kubelet/kuberuntime/kuberuntime_container_windows_test.go

    						WindowsOptions: &v1.WindowsSecurityContextOptions{
    							GMSACredentialSpecName: &gmsaCredSpecName,
    							GMSACredentialSpec:     &gmsaCredSpec,
    							RunAsUserName:          &username,
    							HostProcess:            &asHostProcess,
    						},
    					},
    				},
    			},
    		},
    	}
    
    	err = fakeRuntimeSvc.applyPlatformSpecificContainerConfig(containerConfig, &pod.Spec.Containers[0], pod, new(int64), "foo", nil)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/v1.29.0/apps.v1.DaemonSet.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 53.6K bytes
    - Viewed (0)
Back to top