Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 64 for robust (0.12 sec)

  1. docs/fa/docs/index.md

    * **<abbr title="Robust">استوار</abbr>**: ایجاد کدی آماده برای استفاده در محیط پروداکشن و تولید خودکار <abbr title="Interactive documentation">مستندات تعاملی</abbr>
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 23:58:47 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  2. tensorflow/c/eager/c_api.cc

    // TFE_ContextUpdateServerDefWithTimeout to be simple wrappers around the same
    // C++ function.
    // Retries are used for CreateContext calls, which is used in
    // ParameterServerStrategy initialization to be robust to worker preemption.
    TF_CAPI_EXPORT extern void TFE_ContextSetServerDefWithTimeoutAndRetries(
        TFE_Context* ctx, int keep_alive_secs, const void* proto, size_t proto_len,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 08:11:23 UTC 2024
    - 44K bytes
    - Viewed (0)
  3. src/internal/trace/gc.go

    			}
    		}
    		if len(ps) == 0 {
    			// We can't start doing any analysis until we see what GOMAXPROCS is.
    			// It will show up very early in the trace, but we need to be robust to
    			// something else being emitted beforehand.
    			continue
    		}
    
    		switch ev.Kind() {
    		case EventRangeActive:
    			if seenSync {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 26K bytes
    - Viewed (0)
  4. src/internal/trace/event.go

    //
    // Note: tracking thread state is not currently supported, so this
    // will always return a valid thread ID. However thread state transitions
    // may be tracked in the future, and callers must be robust to this
    // possibility.
    func (e Event) Thread() ThreadID {
    	return e.ctx.M
    }
    
    // Stack returns a handle to a stack associated with the event.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 12:39:00 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  5. src/os/file.go

    		err.(*PathError).Path = name
    		return nil, err
    	}
    	return f, nil
    }
    
    // The ReadFile method calls the [ReadFile] function for the file
    // with the given name in the directory. The function provides
    // robust handling for small files and special file systems.
    // Through this method, dirFS implements [io/fs.ReadFileFS].
    func (dir dirFS) ReadFile(name string) ([]byte, error) {
    	fullname, err := dir.join(name)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:37 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java

        boolean longWait = TimeUnit.NANOSECONDS.toSeconds(thread.timeSpentBlocked) >= 5;
        // Count how long it actually took to return; we'll accept any number between the expected delay
        // and the approximate actual delay, to be robust to variance in thread scheduling.
        char overWaitNanosFirstDigit =
            Long.toString(
                    thread.timeSpentBlocked - TimeUnit.MILLISECONDS.toNanos(longWait ? 5000 : 3000))
                .charAt(0);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 46.7K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java

        boolean longWait = TimeUnit.NANOSECONDS.toSeconds(thread.timeSpentBlocked) >= 5;
        // Count how long it actually took to return; we'll accept any number between the expected delay
        // and the approximate actual delay, to be robust to variance in thread scheduling.
        char overWaitNanosFirstDigit =
            Long.toString(
                    thread.timeSpentBlocked - TimeUnit.MILLISECONDS.toNanos(longWait ? 5000 : 3000))
                .charAt(0);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 46.7K bytes
    - Viewed (0)
  8. pkg/features/kube_features.go

    	// owner: @jsafrane
    	// kep: https://kep.k8s.io/3756
    	// alpha: v1.25 (as part of SELinuxMountReadWriteOncePod)
    	// beta: v1.27
    	// GA: v1.30
    	// Robust VolumeManager reconstruction after kubelet restart.
    	NewVolumeManagerReconstruction featuregate.Feature = "NewVolumeManagerReconstruction"
    
    	// owner: @danwinship
    	// kep: https://kep.k8s.io/3866
    	// alpha: v1.29
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 22:51:23 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  9. src/runtime/export_test.go

    	// Just spin, waiting for it to park.
    	//
    	// The actual parking process is racy with respect to
    	// wakeups, which is fine, but for testing we need something
    	// a bit more robust.
    	start := nanotime()
    	for nanotime()-start < timeout {
    		lock(&s.scavenger.lock)
    		parked := s.scavenger.parked
    		unlock(&s.scavenger.lock)
    		if parked {
    			return true
    		}
    		Gosched()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:50:53 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  10. doc/asm.html

    Go <code>const</code> declarations defined in the current package.
    Go assembly should avoid making assumptions about the layout of Go
    types and instead use these constants.
    This improves the readability of assembly code, and keeps it robust to
    changes in data layout either in the Go type definitions or in the
    layout rules used by the Go compiler.
    </p>
    
    <p>
    Constants are of the form <code>const_<i>name</i></code>.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 19:15:27 UTC 2023
    - 36.3K bytes
    - Viewed (1)
Back to top