Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 161 for Dumps (0.03 sec)

  1. pkg/test/framework/components/echo/kube/testdata/proxyless-custom-image.yaml

        spec:
          imagePullSecrets:
          - name: myregistrykey
          containers:
          - name: istio-proxy
            image: auto
            imagePullPolicy: Always
            securityContext: # to allow core dumps
              readOnlyRootFilesystem: false
          - name: app
            image: testing.hub/app:latest
            imagePullPolicy: Always
            args:
              - --metrics=15014
              - --cluster=cluster-0
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 04:28:06 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/timeout/IntegrationTestTimeoutInterceptor.groovy

            try {
                super.intercept(invocation)
            } catch (SpockTimeoutError e) {
                String threadDumpFile = getThreadDump()
                throw new SpockAssertionError("Timeout, see thread dumps at $threadDumpFile", e)
            } catch (Throwable t) {
                throw t
            }
        }
    
        void intercept(Action<Void> action) {
            MethodInfo methodInfo = new MethodInfo()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.5K bytes
    - Viewed (1)
  3. platforms/jvm/jacoco/src/main/java/org/gradle/testing/jacoco/plugins/JacocoTaskExtension.java

         * Path to dump all class files the agent sees are dumped to. Defaults to no dumps.
         *
         * @since 3.4
         */
        @Nullable
        @Optional
        @LocalState
        public File getClassDumpDir() {
            return classDumpDir;
        }
    
        /**
         * Sets path to dump all class files the agent sees are dumped to. Defaults to no dumps.
         *
         * @since 3.4
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  4. pkg/test/framework/components/echo/kube/testdata/multiversion.yaml

        spec:
          imagePullSecrets:
          - name: myregistrykey
          containers:
          - name: istio-proxy
            image: auto
            imagePullPolicy: Always
            securityContext: # to allow core dumps
              readOnlyRootFilesystem: false
          - name: app
            image: testing.hub/app:latest
            imagePullPolicy: Always
            args:
              - --metrics=15014
              - --cluster=cluster-0
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 04:28:06 UTC 2023
    - 4K bytes
    - Viewed (0)
  5. src/internal/trace/testdata/cmd/gotraceeventstats/main.go

    		fmt.Fprintf(flag.CommandLine.Output(), "\n")
    		fmt.Fprintf(flag.CommandLine.Output(), "Supported modes:")
    		fmt.Fprintf(flag.CommandLine.Output(), "\n")
    		fmt.Fprintf(flag.CommandLine.Output(), "* size  - dumps size stats\n")
    		fmt.Fprintf(flag.CommandLine.Output(), "\n")
    		flag.PrintDefaults()
    	}
    	log.SetFlags(0)
    }
    
    func main() {
    	log.SetPrefix("")
    	flag.Parse()
    
    	if flag.NArg() != 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:31:29 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/debug/debug_options.proto

    syntax = "proto2";
    
    package tensorflow.converter;
    
    // Additional parameters that control the debug behavior of the Converter.
    //
    // Next ID: 9
    message DebugOptions {
      // If not empty, dumps MLIR to the specified directory. The initial state of
      // the MLIR after import will be dumped at the beginning of each pass manager
      // run. Additionally, MLIR will be dumped before and after each pass
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 10 02:44:52 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/flatbuffer_to_string.cc

    See the License for the specific language governing permissions and
    limitations under the License.
    ==============================================================================*/
    
    // Dumps a TFLite flatbuffer to a textual output format.
    // This tool is intended to be used to simplify unit testing/debugging.
    
    #include <stddef.h>
    #include <stdint.h>
    
    #include <fstream>
    #include <iostream>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 15:52:23 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  8. src/net/http/doc.go

    	GODEBUG=http2client=0  # disable HTTP/2 client support
    	GODEBUG=http2server=0  # disable HTTP/2 server support
    	GODEBUG=http2debug=1   # enable verbose HTTP/2 debug logs
    	GODEBUG=http2debug=2   # ... even more verbose, with frame dumps
    
    Please report any issues before disabling HTTP/2 support: https://golang.org/s/http2bug
    
    The http package's [Transport] and [Server] both automatically enable
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/profile/profile.go

    		i := 0
    		for unit := range values {
    			units[i] = unit
    			i++
    		}
    		sort.Strings(units)
    		unitsIgnored[key] = units
    	}
    
    	return numLabelUnits, unitsIgnored
    }
    
    // String dumps a text representation of a profile. Intended mainly
    // for debugging purposes.
    func (p *Profile) String() string {
    	ss := make([]string, 0, len(p.Comments)+len(p.Sample)+len(p.Mapping)+len(p.Location))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  10. pkg/test/kube/dump.go

    			}
    
    			findDumps := fmt.Sprintf("find %s -name core.*", coredumpDir)
    			stdout, _, err := c.PodExec(pod.Name, pod.Namespace, container.Name, findDumps)
    			if err != nil {
    				scopes.Framework.Warnf("Unable to get core dumps for cluster/pod: %s/%s/%s: %v",
    					c.Name(), pod.Namespace, pod.Name, err)
    				continue
    			}
    			for _, cd := range strings.Split(stdout, "\n") {
    				if strings.TrimSpace(cd) == "" {
    					continue
    				}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 22.2K bytes
    - Viewed (0)
Back to top