Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 34 of 34 for Intervals (0.12 sec)

  1. src/math/all_test.go

    		}
    	}
    }
    
    func TestIlogb(t *testing.T) {
    	for i := 0; i < len(vf); i++ {
    		a := frexp[i].i - 1 // adjust because fr in the interval [½, 1)
    		if e := Ilogb(vf[i]); a != e {
    			t.Errorf("Ilogb(%g) = %d, want %d", vf[i], e, a)
    		}
    	}
    	for i := 0; i < len(vflogbSC); i++ {
    		if e := Ilogb(vflogbSC[i]); ilogbSC[i] != e {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 07 17:39:26 UTC 2023
    - 86.8K bytes
    - Viewed (0)
  2. src/runtime/mheap.go

    	speciallock           mutex         // guards specials list and changes to pinnerBits
    	specials              *special      // linked list of special records sorted by offset.
    	userArenaChunkFree    addrRange     // interval for managing chunk allocation
    	largeType             *_type        // malloc header for large objects.
    }
    
    func (s *mspan) base() uintptr {
    	return s.startAddr
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    [[directory_build_cache_retention_deprecated]]
    ==== Deprecated setting retention period directly on local build cache ====
    
    In previous versions, cleanup of the local build cache entries ran every 24 hours, and this interval could not be configured.
    The retention period was configured using `buildCache.local.removeUnusedEntriesAfterDays`.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  4. pkg/controller/volume/persistentvolume/pv_controller.go

    // that may arise from these conditions.
    
    // Number of retries when we create a PV object for a provisioned volume.
    const createProvisionedPVRetryCount = 5
    
    // Interval between retries when we create a PV object for a provisioned volume.
    const createProvisionedPVInterval = 10 * time.Second
    
    // CSINameTranslator can get the CSI Driver name based on the in-tree plugin name
    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