Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 67 of 67 for reuse (0.05 sec)

  1. src/runtime/malloc.go

    //
    //	1. Stack frame allocation can avoid zeroing altogether.
    //
    //	2. It exhibits better temporal locality, since the program is
    //	   probably about to write to the memory.
    //
    //	3. We don't zero pages that never get reused.
    
    // Virtual memory layout
    //
    // The heap consists of a set of arenas, which are 64MB on 64-bit and
    // 4MB on 32-bit (heapArenaBytes). Each arena's start address is also
    // aligned to the arena size.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/init.go

    						base.ShortPath(filepath.Dir(gomod)), err)
    				}
    			}
    			errs = append(errs, err)
    			continue
    		}
    		if inWorkspaceMode() && !strings.HasPrefix(cfg.CmdName, "work ") {
    			// Refuse to use workspace if its go version is too old.
    			// Disable this check if we are a workspace command like work use or work sync,
    			// which will fix the problem.
    			mv := gover.FromGoMod(f)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  3. cmd/xl-storage.go

    	// null version and therefore don't require the free-version to track
    	// anything
    	if fi.VersionID == "" && !fi.IsRestoreObjReq() && !fi.Healing() {
    		// Note: Restore object request reuses PutObject/Multipart
    		// upload to copy back its data from the remote tier. This
    		// doesn't replace the existing version, so we don't need to add
    		// a free-version.
    		xlMeta.AddFreeVersion(fi)
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

    //
    // instead of a more opaque
    //
    //   Value of: IsEven(Fib(5))
    //     Actual: false
    //   Expected: true
    //
    // in case IsEven is a simple Boolean predicate.
    //
    // If you expect your predicate to be reused and want to support informative
    // messages in EXPECT_FALSE and ASSERT_FALSE (negative assertions show up
    // about half as often as positive ones in our tests), supply messages for
    // both success and failure cases:
    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

    //
    // instead of a more opaque
    //
    //   Value of: IsEven(Fib(5))
    //     Actual: false
    //   Expected: true
    //
    // in case IsEven is a simple Boolean predicate.
    //
    // If you expect your predicate to be reused and want to support informative
    // messages in EXPECT_FALSE and ASSERT_FALSE (negative assertions show up
    // about half as often as positive ones in our tests), supply messages for
    // both success and failure cases:
    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  6. pkg/kubelet/pod_workers.go

    		// needing to purge the history:
    		//
    		// 1. The pod is no longer desired (the local version is orphaned)
    		// 2. The pod received a kill update and then a subsequent create, which means
    		//    the UID was reused in the source config (vanishingly rare for API servers,
    		//    common for static pods that have specified a fixed UID)
    		//
    		// In the former case we wish to bound the amount of information we store for
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  7. pkg/controller/volume/persistentvolume/pv_controller.go

    		MountOptions:                  storageClass.MountOptions,
    		PVName:                        pvName,
    		PVC:                           claim,
    		Parameters:                    storageClass.Parameters,
    	}
    
    	// Refuse to provision if the plugin doesn't support mount options, creation
    	// of PV would be rejected by validation anyway
    	if !plugin.SupportsMountOption() && len(options.MountOptions) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
Back to top