Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 81 for Major (0.25 sec)

  1. .teamcity/src/main/kotlin/model/FunctionalTestBucketProvider.kt

    import com.alibaba.fastjson.JSONObject
    import common.Os
    import configurations.FunctionalTest
    import configurations.ParallelizationMethod
    import java.io.File
    
    /**
     * QuickCrossVersionTest only tests the last minor for each major version in the range.
     */
    val QUICK_CROSS_VERSION_BUCKETS = listOf(
        listOf("0.0", "3.0"), // 0.0 <= version < 3.0
        listOf("3.0", "4.0"), // 3.0 <= version < 4.0
        listOf("4.0", "5.0"), // 4.0 <= version < 5.0
    Plain Text
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Thu Jan 18 05:14:09 GMT 2024
    - 9K bytes
    - Viewed (0)
  2. internal/grid/manager.go

    	"github.com/gobwas/ws"
    	"github.com/gobwas/ws/wsutil"
    	"github.com/google/uuid"
    	"github.com/minio/madmin-go/v3"
    	"github.com/minio/minio/internal/pubsub"
    	"github.com/minio/mux"
    )
    
    const (
    	// apiVersion is a major version of the entire api.
    	// Bumping this should only be done when overall,
    	// incompatible changes are made, not when adding a new handler
    	// or changing an existing handler.
    	apiVersion = "v1"
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 9.5K bytes
    - Viewed (0)
  3. configure.py

          if not python_lib_path:
            python_lib_path = default_python_lib_path
        environ_cp['PYTHON_LIB_PATH'] = python_lib_path
    
      python_major_version = get_python_major_version(python_bin_path)
      if python_major_version == '2':
        write_to_bazelrc('build --host_force_python=PY2')
    
      # Convert python path to Windows style before writing into bazel.rc
      if is_windows() or is_cygwin():
    Python
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 18:25:36 GMT 2024
    - 53.8K bytes
    - Viewed (1)
  4. cmd/xl-storage.go

    	s.drivePath, err = getValidPath(ep.Path)
    	if err != nil {
    		s.drivePath = ep.Path
    		return s, err
    	}
    
    	info, err := disk.GetInfo(s.drivePath, true)
    	if err != nil {
    		return s, err
    	}
    	s.major = info.Major
    	s.minor = info.Minor
    	s.fsType = info.FSType
    
    	if !globalIsCICD && !globalIsErasureSD {
    		var rootDrive bool
    		if globalRootDiskThreshold > 0 {
    			// Use MINIO_ROOTDISK_THRESHOLD_SIZE to figure out if
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sun Apr 28 17:53:50 GMT 2024
    - 84.7K bytes
    - Viewed (0)
  5. tensorflow/api_template_v1.__init__.py

    # The "app" module will be imported as part of the placeholder section above.
    _current_module.app.flags = flags  # pylint: disable=undefined-variable
    setattr(_current_module, "flags", flags)
    
    _major_api_version = 1
    
    # Add module aliases from Keras to TF.
    # Some tf endpoints actually lives under Keras.
    _current_module.layers = _KerasLazyLoader(
        globals(),
        submodule="__internal__.legacy.layers",
    Python
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Tue Jan 23 02:14:00 GMT 2024
    - 7.4K bytes
    - Viewed (0)
  6. doc/godebug.md

    In any other context, `//go:debug` lines are ignored by the toolchain;
    `go` `vet` reports such lines as misplaced.
    
    ## GODEBUG History {#history}
    
    This section documents the GODEBUG settings introduced and removed in each major Go release
    for compatibility reasons.
    Packages or programs may define additional settings for internal debugging purposes;
    for example,
    see the [runtime documentation](/pkg/runtime#hdr-Environment_Variables)
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Tue Apr 16 17:29:58 GMT 2024
    - 13.5K bytes
    - Viewed (0)
  7. cmd/storage-datatypes_gen.go

    		return
    	}
    	z.FreeInodes, err = dc.ReadUint64()
    	if err != nil {
    		err = msgp.WrapError(err, "FreeInodes")
    		return
    	}
    	z.Major, err = dc.ReadUint32()
    	if err != nil {
    		err = msgp.WrapError(err, "Major")
    		return
    	}
    	z.Minor, err = dc.ReadUint32()
    	if err != nil {
    		err = msgp.WrapError(err, "Minor")
    		return
    	}
    	z.NRRequests, err = dc.ReadUint64()
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Tue Apr 23 17:15:52 GMT 2024
    - 127.5K bytes
    - Viewed (0)
  8. src/archive/tar/common.go

    	paxGNUSparseOffset    = "GNU.sparse.offset"
    	paxGNUSparseNumBytes  = "GNU.sparse.numbytes"
    	paxGNUSparseMap       = "GNU.sparse.map"
    	paxGNUSparseName      = "GNU.sparse.name"
    	paxGNUSparseMajor     = "GNU.sparse.major"
    	paxGNUSparseMinor     = "GNU.sparse.minor"
    	paxGNUSparseSize      = "GNU.sparse.size"
    	paxGNUSparseRealSize  = "GNU.sparse.realsize"
    )
    
    // basicKeys is a set of the PAX keys for which we have built-in support.
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Mar 15 16:01:50 GMT 2024
    - 24.7K bytes
    - Viewed (2)
  9. CONTRIBUTING.md

    If you want to explicitly run tests with a different Java version, you need to specify `-PtestJavaVersion=#` with the major version of the JDK you want the tests to run with (e.g. `-PtestJavaVersion=14`).
    
    ### Configuration cache enabled by default
    
    The build of Gradle enables the configuration cache by default as a dogfooding experiment.
    
    Plain Text
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Sat May 04 07:43:02 GMT 2024
    - 15.6K bytes
    - Viewed (0)
  10. RELEASE.md

    ### Known Caveats
    
    * <CAVEATS REGARDING THE RELEASE (BUT NOT BREAKING CHANGES).>
    * <ADDING/BUMPING DEPENDENCIES SHOULD GO HERE>
    * <KNOWN LACK OF SUPPORT ON SOME PLATFORM, SHOULD GO HERE>
    
    ### Major Features and Improvements
    
    *   <INSERT MAJOR FEATURE HERE, USING MARKDOWN SYNTAX>
    *   <IF RELEASE CONTAINS MULTIPLE FEATURES FROM SAME AREA, GROUP THEM TOGETHER>
    
    ### Bug Fixes and Other Changes
    
    Plain Text
    - Registered: Tue May 07 12:40:20 GMT 2024
    - Last Modified: Mon Apr 29 19:17:57 GMT 2024
    - 727.7K bytes
    - Viewed (8)
Back to top