Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 197 for mean_t (0.11 sec)

  1. src/time/time.go

    	wall uint64
    	ext  int64
    
    	// loc specifies the Location that should be used to
    	// determine the minute, hour, month, day, and year
    	// that correspond to this Time.
    	// The nil location means UTC.
    	// All UTC times are represented with loc==nil, never loc==&utcLoc.
    	loc *Location
    }
    
    const (
    	hasMonotonic = 1 << 63
    	maxWall      = wallToInternal + (1<<33 - 1) // year 2157
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  2. src/go/build/build.go

    	// To invoke the go command,
    	// we must not being doing special things like AllowBinary or IgnoreVendor,
    	// and all the file system callbacks must be nil (we're meant to use the local file system).
    	if mode&AllowBinary != 0 || mode&IgnoreVendor != 0 ||
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  3. src/runtime/traceback.go

    	// which is inverted. The scan will match d2 to frame 2 but having
    	// d2 on the stack until then means it will not match d3 to frame 3.
    	// This is okay: if we're running d2, then all the defers after d2 have
    	// completed and their corresponding frames are dead. Not finding d3
    	// for frame 3 means we'll set frame 3's continpc == 0, which is correct
    	// (frame 3 is dead). At the end of the walk the panic stack can thus
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  4. src/net/http/transport.go

    	// active, and idle states. On limit violation, dials will block.
    	//
    	// Zero means no limit.
    	MaxConnsPerHost int
    
    	// IdleConnTimeout is the maximum amount of time an idle
    	// (keep-alive) connection will remain idle before closing
    	// itself.
    	// Zero means no limit.
    	IdleConnTimeout time.Duration
    
    	// ResponseHeaderTimeout, if non-zero, specifies the amount of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

            return pluginArtifact;
        }
    
        /**
         * Gets the project building request from which this project instance was created. <strong>Warning:</strong> This is
         * a utility method that is meant to assist integrators of Maven, it must not be used by Maven plugins.
         *
         * @return The project building request or {@code null}.
         * @since 2.1
         */
        @Deprecated
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 17:18:13 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  6. guava/src/com/google/common/util/concurrent/AbstractFuture.java

          thrownUnsafeFailure = unsafeFailure;
          // catch absolutely everything and fall through to our 'SafeAtomicHelper'
          // The access control checks that ARFU does means the caller class has to be AbstractFuture
          // instead of SafeAtomicHelper, so we annoyingly define these here
          try {
            helper =
                new SafeAtomicHelper(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
  7. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

          thrownUnsafeFailure = unsafeFailure;
          // catch absolutely everything and fall through to our 'SafeAtomicHelper'
          // The access control checks that ARFU does means the caller class has to be AbstractFuture
          // instead of SafeAtomicHelper, so we annoyingly define these here
          try {
            helper =
                new SafeAtomicHelper(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
  8. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

    // leave some internal implementation details in this header file.
    // They are clearly marked by comments like this:
    //
    //   // INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM.
    //
    // Such code is NOT meant to be used by a user directly, and is subject
    // to CHANGE WITHOUT NOTICE.  Therefore DO NOT DEPEND ON IT in a user
    // program!
    //
    // Acknowledgment: Google Test borrowed the idea of automatic test
    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. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    This means you can, for example, set the property to a `File`, `String`, collection, `FileCollection` or even a closure or `Provider`.
    
    *This is a feature of specific tasks*!
    That means implicit conversion will not happen for just any task that has a `FileCollection` or `FileTree` property.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  10. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    				"pod", format.Pod(pod), "resourceName", resourceName)
    			return err
    		}
    		// If UpdateContainerResources is error-free, it means desired values for 'resourceName' was accepted by runtime.
    		// So we update currentContainerResources for 'resourceName', which is our view of most recently configured resources.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
Back to top