Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 27 of 27 for onStop (0.73 sec)

  1. src/runtime/mgc.go

    	// While we're here, flush the page cache for idle Ps to avoid
    	// having pages get stuck on them. These pages are hidden from
    	// the scavenger, so in small idle heaps a significant amount
    	// of additional memory might be held onto.
    	//
    	// Also, flush the pinner cache, to avoid leaking that memory
    	// indefinitely.
    	forEachP(waitReasonFlushProcCaches, func(pp *p) {
    		pp.mcache.prepareForSweep()
    		if pp.status == _Pidle {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  2. src/cmd/internal/testdir/testdir_test.go

    		}
    	}
    	return nil
    }
    
    func splitOutput(out string, wantAuto bool) []string {
    	// gc error messages continue onto additional lines with leading tabs.
    	// Split the output at the beginning of each line that doesn't begin with a tab.
    	// <autogenerated> lines are impossible to match so those are filtered out.
    	var res []string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  3. src/runtime/map.go

    // it will return a reference to the zero object for the elem type if
    // the key is not in the map.
    // NOTE: The returned pointer may keep the whole map live, so don't
    // hold onto it for very long.
    func mapaccess1(t *maptype, h *hmap, key unsafe.Pointer) unsafe.Pointer {
    	if raceenabled && h != nil {
    		callerpc := getcallerpc()
    		pc := abi.FuncPCABIInternal(mapaccess1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

    'mlir_module' is a serialized MLIR module with a `main` function that contains
    target computation.
    'metadata' is a serialized TPUCompileMetadataProto describing the shapes and
    types of the inputs to the computation, as well as a mapping onto the TPU pod
    topology.
    'producer_name' is a string describing the name of the framework that add support for running this portion of the model on TPUs.
      }];
    
      let arguments = (ins
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    [[sec:unpacking_archives_example]]
    == Unpacking archives
    
    Archives are effectively self-contained file systems, so unpacking them is a case of copying the files from that file system onto the local file system — or even into another archive.
    Gradle enables this by providing some wrapper functions that make archives available as hierarchical collections of files (<<sec:file_trees,file trees>>).
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  6. cluster/gce/windows/k8s-node-setup.psm1

      if (${env:CONTAINER_RUNTIME_ENDPOINT}) {
        & "${env:NODE_DIR}\crictl.exe" config runtime-endpoint `
            ${env:CONTAINER_RUNTIME_ENDPOINT}
      }
    }
    
    # Pulls the infra/pause container image onto the node so that it will be
    # immediately available when the kubelet tries to run pods.
    # TODO(pjh): downloading the container container image may take a few minutes;
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/lib.go

    	// which should be the final remaining step needed for the link.
    	// This will reduce peak RSS for the link (and speed up linking of
    	// large applications), since when the archive command runs we
    	// won't be holding onto all of the linker's live memory.
    	if syscallExecSupported && !ownTmpDir {
    		runAtExitFuncs()
    		ctxt.execArchive(argv)
    		panic("should not get here")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
Back to top