Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 395 for resch (0.04 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_saved_model_ops.td

        `tf_saved_model.index_path = [...some list of strings and integers...]}`
        represents the path which one would use to index into a structured
        value to reach a given tensor. For example, given the structured value
        `[ {"x": leaf0} ]`, the "index path" needed to reach `leaf0` is [0, "x"], as
        it would be if you were indexing in Python into such an object
        (i.e. `obj[0]["x"]`).
    
        The function arg attribute
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:49:35 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  2. .github/ISSUE_TEMPLATE/10_contributor_bug_report.yml

            We receive dozens of issues every week, so to stay productive, we will close issues that don't provide enough information.
    
            If you need help with Gradle or have a usage question, please reach [our community](http://help.gradle.org/) instead of creating an issue.
    
            Please open Android-related issues on [the Android Issue Tracker](https://source.android.com/source/report-bugs)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 16 07:49:32 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. internal/lock/lock.go

    func (r *RLockedFile) IncLockRef() {
    	r.mutex.Lock()
    	r.refs++
    	r.mutex.Unlock()
    }
    
    // Close - this closer implements a special closer
    // closes the underlying fd only when the refs
    // reach zero.
    func (r *RLockedFile) Close() (err error) {
    	r.mutex.Lock()
    	defer r.mutex.Unlock()
    
    	if r.refs == 0 {
    		return os.ErrInvalid
    	}
    
    	r.refs--
    	if r.refs == 0 {
    		err = r.File.Close()
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Jan 02 17:15:06 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  4. src/crypto/internal/boring/bcache/cache_test.go

    	for k := range m {
    		if cv := c.Get(k); cv != nil {
    			t.Fatalf("after Clear, c.Get(%v) = %v, want nil", str(k), str(cv))
    		}
    	}
    
    	// Check that cache works for concurrent access.
    	// Lists are discarded if they reach 1000 entries,
    	// and there are cacheSize list heads, so we should be
    	// able to do 100 * cacheSize entries with no problem at all.
    	c = new(Cache[int, int32])
    	var barrier, wg sync.WaitGroup
    	const N = 100
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 18 00:30:19 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  5. okhttp/src/test/java/okhttp3/FastFallbackTest.kt

    import org.opentest4j.TestAbortedException
    
    /**
     * This test binds two different web servers (IPv4 and IPv6) to the same port, but on different
     * local IP addresses. Requests made to `127.0.0.1` will reach the IPv4 server, and requests made to
     * `::1` will reach the IPv6 server.
     *
     * By orchestrating two different servers with the same port but different IP addresses, we can
     * test what OkHttp does when both are reachable, or if only one is reachable.
     *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  6. src/net/http/roundtrip_js.go

    		if len(body) != 0 {
    			buf := uint8Array.New(len(body))
    			js.CopyBytesToJS(buf, body)
    			opt.Set("body", buf)
    		}
    	}
    
    	fetchPromise := js.Global().Call("fetch", req.URL.String(), opt)
    	var (
    		respCh           = make(chan *Response, 1)
    		errCh            = make(chan error, 1)
    		success, failure js.Func
    	)
    	success = js.FuncOf(func(this js.Value, args []js.Value) any {
    		success.Release()
    		failure.Release()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  7. cmd/service.go

    // For each call, unfreezeServices must be called once.
    func unfreezeServices() {
    	// We need a lock since we need the 2 atomic values to remain in sync.
    	globalServiceFreezeMu.Lock()
    	// Close when we reach 0
    	globalServiceFreezeCnt--
    	if globalServiceFreezeCnt <= 0 {
    		// Set to a nil channel.
    		var _ch chan struct{}
    		if val := globalServiceFreeze.Swap(_ch); val != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Feb 28 07:02:14 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  8. src/internal/bytealg/equal_riscv64.s

    	// Check alignment - if alignment differs we have to do one byte at a time.
    	AND	$7, X10, X9
    	AND	$7, X11, X19
    	BNE	X9, X19, loop4_check
    	BEQZ	X9, loop32_check
    
    	// Check one byte at a time until we reach 8 byte alignment.
    	SUB	X9, X0, X9
    	ADD	$8, X9, X9
    	SUB	X9, X12, X12
    align:
    	SUB	$1, X9
    	MOVBU	0(X10), X19
    	MOVBU	0(X11), X20
    	BNE	X19, X20, not_eq
    	ADD	$1, X10
    	ADD	$1, X11
    	BNEZ	X9, align
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 13:57:06 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/openapi/v2/conversion.go

    				s.ValueValidation.Required, changed = nil, true
    			}
    
    			return changed
    		},
    		// we drop all junctors above, and hence, never reach nested value validations
    		NestedValueValidation: nil,
    	}
    	mapper.Visit(out)
    
    	return out
    }
    
    func filterOut(ss []string, x string) ([]string, bool) {
    	var filtered []string
    	for i, s := range ss {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 09 20:23:50 UTC 2020
    - 3.5K bytes
    - Viewed (0)
  10. src/go/types/mono.go

    // edges A<-T with weight 0, and B<-A and B<-B with weight 1.
    //
    // Finally, we look for any positive-weight cycles. Zero-weight cycles
    // are allowed because static instantiation will reach a fixed point.
    
    type monoGraph struct {
    	vertices []monoVertex
    	edges    []monoEdge
    
    	// canon maps method receiver type parameters to their respective
    	// receiver type's type parameters.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 9.2K bytes
    - Viewed (0)
Back to top