Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 40 for Profile (0.35 sec)

  1. src/crypto/x509/x509.go

    // It provides a certificate verifier, complete with a chain builder.
    //
    // The package targets the X.509 technical profile defined by the IETF (RFC
    // 2459/3280/5280), and as further restricted by the CA/Browser Forum Baseline
    // Requirements. There is minimal support for features outside of these
    // profiles, as the primary goal of the package is to provide compatibility
    // with the publicly trusted TLS certificate ecosystem and its policies and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  2. src/runtime/malloc.go

    	fullSize := span.elemsize
    	if rate := MemProfileRate; rate > 0 {
    		// Note cache c only valid while m acquired; see #47302
    		//
    		// N.B. Use the full size because that matches how the GC
    		// will update the mem profile on the "free" side.
    		if rate != 1 && fullSize < c.nextSample {
    			c.nextSample -= fullSize
    		} else {
    			profilealloc(mp, x, fullSize)
    		}
    	}
    	mp.mallocing = 0
    	releasem(mp)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  3. cmd/peer-rest-server.go

    		for _, p := range profiles {
    			if p == k {
    				v.Stop()
    				delete(globalProfiler, k)
    			}
    		}
    	}
    
    	for _, profiler := range profiles {
    		prof, err := startProfiler(profiler)
    		if err != nil {
    			s.writeErrorResponse(w, err)
    			return
    		}
    		globalProfiler[profiler] = prof
    	}
    }
    
    // DownloadProfilingDataHandler - returns profiled data.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  4. tensorflow/BUILD

            "//tensorflow/core/platform:stringpiece",
            "//tensorflow/core/platform:types",
            "//tensorflow/core/profiler/internal:print_model_analysis",
            "//tensorflow/core/profiler/lib:traceme",
            "//tensorflow/core/profiler/rpc/client:profiler_client_impl",
            "//tensorflow/core/profiler/rpc:profiler_server_impl",
            "//tensorflow/core/util:managed_stack_trace",
            "//tensorflow/core:all_kernels",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/BUILD

        "//tensorflow/core/kernels/data:optional_ops",
        "//tensorflow/core/kernels/data:prefetch_dataset_op",
        "//tensorflow/core/kernels/data:options_dataset_op",
        "//tensorflow/core/profiler/lib:traceme",
        "//tensorflow/core/tfrt/common:async_value_tensor",
        "@local_xla//xla/stream_executor/integrations:tf_allocator_adapter",
        "@local_xla//xla/stream_executor/platform",
    ]
    
    cc_library(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 00:41:19 UTC 2024
    - 61.5K bytes
    - Viewed (0)
  6. src/runtime/mgcmark.go

    )
    
    // gcDrainMarkWorkerIdle is a wrapper for gcDrain that exists to better account
    // mark time in profiles.
    func gcDrainMarkWorkerIdle(gcw *gcWork) {
    	gcDrain(gcw, gcDrainIdle|gcDrainUntilPreempt|gcDrainFlushBgCredit)
    }
    
    // gcDrainMarkWorkerDedicated is a wrapper for gcDrain that exists to better account
    // mark time in profiles.
    func gcDrainMarkWorkerDedicated(gcw *gcWork, untilPreempt bool) {
    	flags := gcDrainFlushBgCredit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  7. src/cmd/internal/testdir/testdir_test.go

    			t.Skipf("skipping: GOROOT/test not present")
    		}
    	}
    
    	for _, dir := range dirs {
    		for _, goFile := range goFiles(t, dir) {
    			test := test{testCommon: common, dir: dir, goFile: goFile}
    			t.Run(path.Join(dir, goFile), func(t *testing.T) {
    				t.Parallel()
    				test.T = t
    				testError := test.run()
    				wantError := test.expectFail() && !*force
    				if testError != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

      // reserves stack space for another AssertHelper.
      struct AssertHelperData {
        AssertHelperData(TestPartResult::Type t,
                         const char* srcfile,
                         int line_num,
                         const char* msg)
            : type(t), file(srcfile), line(line_num), message(msg) { }
    
        TestPartResult::Type const type;
        const char* const file;
        int const line;
        std::string const message;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  9. gradle/verification-metadata.xml

                <trusting group="net.rubygrapefruit"/>
                <trusting group="org.gradle"/>
                <trusting group="org.gradle.exemplar"/>
                <trusting group="org.gradle.profiler"/>
                <trusting group="^com[.]gradle($|([.].*))" regex="true"/>
                <trusting group="^org[.]gradle($|([.].*))" regex="true"/>
             </trusted-key>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 22:30:36 UTC 2024
    - 90.1K bytes
    - Viewed (0)
  10. src/runtime/traceback.go

    //
    // If this frame did a normal call, then frame.pc is a return PC, so this will
    // return frame.pc-1, which points into the CALL instruction. If the frame was
    // interrupted by a signal (e.g., profiler, segv, etc) then frame.pc is for the
    // trapped instruction, so this returns frame.pc. See issue #34123. Finally,
    // frame.pc can be at function entry when the frame is initialized without
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
Back to top