Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 186 for unwrapped (0.11 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/AbstractProperty.java

        public boolean calculatePresence(ValueConsumer consumer) {
            try (EvaluationContext.ScopeContext context = openScope()) {
                beforeRead(context, consumer); // may throw its own exception, which should not be wrapped.
                try {
                    return getSupplier(context).calculatePresence(consumer);
                } catch (Exception e) {
                    if (displayName != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:54 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  2. src/runtime/tracestack.go

    				break outer
    			}
    			lastFuncID = sf.funcID
    		}
    	}
    	return n
    }
    
    // startPCForTrace returns the start PC of a goroutine for tracing purposes.
    // If pc is a wrapper, it returns the PC of the wrapped function. Otherwise it
    // returns pc.
    func startPCForTrace(pc uintptr) uintptr {
    	f := findfunc(pc)
    	if !f.valid() {
    		return pc // may happen for locked g in extra M since its pc is 0.
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 14:38:56 UTC 2024
    - 11K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_device_ops.td

    The size of each value list in the device name map must match `n`. Within a
    replica, the execution semantics follow standard sequential behavior. Ops in the
    tf_device.replicate wrapped with a tf_device.launch will have its device set to
    the associated replicated device from `devices` if the tf_device.launch refers
    to an aliased device name. Otherwise the device already set in tf_device.launch
    is used instead.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 23:53:20 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/registry/rest/update.go

    func (i *wrappedUpdatedObjectInfo) Preconditions() *metav1.Preconditions {
    	return i.objInfo.Preconditions()
    }
    
    // UpdatedObject satisfies the UpdatedObjectInfo interface.
    // It delegates to the wrapped objInfo and passes the result through any configured transformers.
    func (i *wrappedUpdatedObjectInfo) UpdatedObject(ctx context.Context, oldObj runtime.Object) (runtime.Object, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 27 11:48:28 UTC 2022
    - 11.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/server/config.go

    	if c.EnableDiscovery {
    		if utilfeature.DefaultFeatureGate.Enabled(genericfeatures.AggregatedDiscoveryEndpoint) {
    			wrapped := discoveryendpoint.WrapAggregatedDiscoveryToHandler(s.DiscoveryGroupManager, s.AggregatedDiscoveryGroupManager)
    			s.Handler.GoRestfulContainer.Add(wrapped.GenerateWebService("/apis", metav1.APIGroupList{}))
    		} else {
    			s.Handler.GoRestfulContainer.Add(s.DiscoveryGroupManager.WebService())
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 47.7K bytes
    - Viewed (0)
  6. cmd/erasure-metadata-utils.go

    	errorCounts := make(map[error]int)
    	for _, err := range errs {
    		if IsErrIgnored(err, ignoredErrs...) {
    			continue
    		}
    		// Errors due to context cancellation may be wrapped - group them by context.Canceled.
    		if errors.Is(err, context.Canceled) {
    			errorCounts[context.Canceled]++
    			continue
    		}
    		errorCounts[err]++
    	}
    
    	max := 0
    	for err, count := range errorCounts {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  7. src/crypto/aes/gcm_s390x.go

    )
    
    var errOpen = errors.New("cipher: message authentication failed")
    
    // Assert that aesCipherAsm implements the gcmAble interface.
    var _ gcmAble = (*aesCipherAsm)(nil)
    
    // NewGCM returns the AES cipher wrapped in Galois Counter Mode. This is only
    // called by [crypto/cipher.NewGCM] via the gcmAble interface.
    func (c *aesCipherAsm) NewGCM(nonceSize, tagSize int) (cipher.AEAD, error) {
    	var hk gcmHashKey
    	c.Encrypt(hk[:], hk[:])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  8. src/compress/flate/deflate_test.go

    	}
    
    	// Part 2 should match clean state as well even if wrapped.
    	got = len(enc.encode(nil, testData))
    	if wantSecondTokens != got {
    		t.Errorf("got %d, want %d token", got, wantSecondTokens)
    	}
    
    	// Verify that we wrapped.
    	if enc.cur >= bufferReset {
    		t.Errorf("want e.cur to be < bufferReset (%d), got %d", bufferReset, enc.cur)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 25.6K bytes
    - Viewed (0)
  9. src/net/net_fake.go

    			// if we don't need to preserve the Timeout-ness of err we should
    			// wrap it in an AddrError. (Unfortunately we can't wrap errors
    			// that convey structured information, because AddrError reduces
    			// the wrapped Err to a flat string.)
    			if _, ok := err.(*AddrError); !ok {
    				err = &AddrError{
    					Err:  err.Error(),
    					Addr: raddr.String(),
    				}
    			}
    		}
    		return err
    	}
    
    	if fd.isConnected {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 19:24:21 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  10. src/syscall/syscall_darwin.go

    //   - github.com/tetratelabs/wazero
    //
    // See go.dev/issue/67401.
    //
    //go:linkname utimensat
    
    //sys	utimensat(dirfd int, path string, times *[2]Timespec, flags int) (err error)
    
    /*
     * Wrapped
     */
    
    //sys	kill(pid int, signum int, posix int) (err error)
    
    func Kill(pid int, signum Signal) (err error) { return kill(pid, int(signum), 1) }
    
    /*
     * Exposed directly
     */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:50 UTC 2024
    - 11K bytes
    - Viewed (0)
Back to top