Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 312 for Cutime (0.34 sec)

  1. pkg/test/framework/runtime.go

    )
    
    var _ resource.Dumper = &runtime{}
    
    // runtime for the test environment.
    type runtime struct {
    	context *suiteContext
    }
    
    // newRuntime returns a new runtime instance.
    func newRuntime(s *resource.Settings, fn resource.EnvironmentFactory, labels label.Set) (*runtime, error) {
    	ctx, err := newSuiteContext(s, fn, labels)
    	if err != nil {
    		return nil, err
    	}
    	return &runtime{
    		context: ctx,
    	}, nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 26 17:50:56 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  2. test/runtime.go

    // Test that even if a file imports runtime,
    // it cannot get at the low-level runtime definitions
    // known to the compiler.  For normal packages
    // the compiler doesn't even record the lower case
    // functions in its symbol table, but some functions
    // in runtime are hard-coded into the compiler.
    // Does not compile.
    
    package main
    
    import "runtime"
    
    func main() {
    	runtime.printbool(true)	// ERROR "unexported|undefined"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 09 23:56:19 UTC 2020
    - 600 bytes
    - Viewed (0)
  3. tensorflow/cc/experimental/libtf/runtime/runtime.h

    namespace tf {
    namespace libtf {
    namespace runtime {
    
    /// @brief A runtime object capable of loading modules and executing functions.
    ///
    /// It is the responsibility of the owner of the Runtime to keep it alive longer
    /// than all imported modules.
    class Runtime : public Object {
     public:
      // TODO(b/191264214): Remove need for AbstractContext
      explicit Runtime(tensorflow::AbstractContext* ctx);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Sep 01 11:18:25 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/runtime/runtime.go

    }
    
    type rudimentaryErrorBackoff struct {
    	minPeriod time.Duration // immutable
    	// TODO(lavalamp): use the clock for testability. Need to move that
    	// package for that to be accessible here.
    	lastErrorTimeLock sync.Mutex
    	lastErrorTime     time.Time
    }
    
    // OnError will block if it is called more often than the embedded period time.
    // This will prevent overly tight hot error loops.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 16:28:45 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/accessors/runtime/Runtime.kt

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.kotlin.dsl.accessors.runtime
    
    import org.gradle.api.Action
    import org.gradle.api.Project
    import org.gradle.api.artifacts.Dependency
    import org.gradle.api.artifacts.ExternalModuleDependency
    import org.gradle.api.artifacts.dsl.DependencyHandler
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  6. src/runtime/runtime.go

    // from nanotime that we can use (some platforms have a really coarse system time granularity).
    // We require some amount of time to pass to ensure that the conversion rate is fairly accurate
    // in aggregate. But because we compute this rate lazily, there's a pretty good chance a decent
    // amount of time has passed by the time we get here.
    //
    // Must be called from a normal goroutine context (running regular goroutine with a P).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  7. tensorflow/cc/experimental/base/public/runtime.h

    // these Runtime-attached objects (such as tensorflow::cc::TensorHandle), the
    // Runtime must outlive these objects.
    class Runtime {
     public:
      // Runtime is movable, but not copyable.
      Runtime(Runtime&&) = default;
      Runtime& operator=(Runtime&&) = default;
    
     private:
      friend class RuntimeBuilder;
      friend class SavedModelAPI;
      friend class TensorHandle;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 12 19:37:48 UTC 2020
    - 2.5K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/ztypes_aix_ppc.go

    	Sec  int32
    	Usec int32
    }
    
    type Timex struct{}
    
    type Time_t int32
    
    type Tms struct{}
    
    type Utimbuf struct {
    	Actime  int32
    	Modtime int32
    }
    
    type Timezone struct {
    	Minuteswest int32
    	Dsttime     int32
    }
    
    type Rusage struct {
    	Utime    Timeval
    	Stime    Timeval
    	Maxrss   int32
    	Ixrss    int32
    	Idrss    int32
    	Isrss    int32
    	Minflt   int32
    	Majflt   int32
    	Nswap    int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/ztypes_aix_ppc64.go

    	Sec  int32
    	Usec int32
    }
    
    type Timex struct{}
    
    type Time_t int64
    
    type Tms struct{}
    
    type Utimbuf struct {
    	Actime  int64
    	Modtime int64
    }
    
    type Timezone struct {
    	Minuteswest int32
    	Dsttime     int32
    }
    
    type Rusage struct {
    	Utime    Timeval
    	Stime    Timeval
    	Maxrss   int64
    	Ixrss    int64
    	Idrss    int64
    	Isrss    int64
    	Minflt   int64
    	Majflt   int64
    	Nswap    int64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 5K bytes
    - Viewed (0)
  10. doc/next/4-runtime.md

    ## Runtime {#runtime}
    
    The traceback printed by the runtime after an unhandled panic or other
    fatal error now indents the second and subsequent lines of the error
    message (for example, the argument to panic) by a single tab, so that
    it can be unambiguously distinguished from the stack trace of the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:10:41 UTC 2024
    - 359 bytes
    - Viewed (0)
Back to top