Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 191 for robust (0.12 sec)

  1. src/cmd/vendor/golang.org/x/telemetry/package-lock.json

            "rimraf": "bin.js"
          },
          "funding": {
            "url": "https://github.com/sponsors/isaacs"
          }
        },
        "node_modules/robust-predicates": {
          "version": "3.0.1",
          "resolved": "https://registry.npmjs.org/robust-predicates/-/robust-predicates-3.0.1.tgz",
          "integrity": "sha512-ndEIpszUHiG4HtDsQLeIuMvRsDnn8c8rYStabochtUeCvfuvNptb5TUbVD68LRAILPX7p9nqQGh4xJgn3EHS/g=="
        },
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 156K bytes
    - Viewed (0)
  2. 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)
  3. src/runtime/proc_test.go

    	// Check that hogCount and lightCount are within a factor of
    	// 20, which indicates that both pairs of goroutines handed off
    	// the P within a time-slice to their buddy. We can use a
    	// fairly large factor here to make this robust: if the
    	// scheduler isn't working right, the gap should be ~1000X
    	// (was 5, increased to 20, see issue 52207).
    	const factor = 20
    	if hogCount/factor > lightCount || lightCount/factor > hogCount {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 25.8K bytes
    - Viewed (0)
  4. src/go/printer/testdata/parser.go

    	scope := ast.NewScope(nil) // struct scope
    	var list []*ast.Field
    	for p.tok == token.IDENT || p.tok == token.MUL || p.tok == token.LPAREN {
    		// a field declaration cannot start with a '(' but we accept
    		// it here for more robust parsing and better error messages
    		// (parseFieldDecl will check and complain if necessary)
    		list = append(list, p.parseFieldDecl(scope))
    	}
    	rbrace := p.expect(token.RBRACE)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
  5. 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)
  6. src/cmd/vendor/golang.org/x/tools/cmd/bisect/main.go

    	// behaviors, sometimes enabling one change unlocks questions about other
    	// changes. Strictly speaking this is a misuse of bisect, but just to make
    	// bisect more robust, we use the y and n runs to create an estimate of the
    	// number of bits needed for a unique suffix, and then we round it up to
    	// a number of hex digits, with one extra digit for good measure, and then
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 18:11:19 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top