Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 210 for inf2 (0.09 sec)

  1. pkg/registry/core/pod/strategy_test.go

    }
    
    type mockConnectionInfoGetter struct {
    	info *client.ConnectionInfo
    }
    
    func (g mockConnectionInfoGetter) GetConnectionInfo(ctx context.Context, nodeName types.NodeName) (*client.ConnectionInfo, error) {
    	return g.info, nil
    }
    
    func TestPortForwardLocation(t *testing.T) {
    	ctx := genericapirequest.NewDefaultContext()
    	tcs := []struct {
    		in          *api.Pod
    		info        *client.ConnectionInfo
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/util/concurrent/Futures.java

         *     FutureCombiner}). Even if you don't care about the value of the future, you should
         *     typically check whether it failed: See <a
         *     href="https://errorprone.info/bugpattern/FutureReturnValueIgnored">https://errorprone.info/bugpattern/FutureReturnValueIgnored</a>.
         */
        public <C extends @Nullable Object> ListenableFuture<C> callAsync(
            AsyncCallable<C> combiner, Executor executor) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  3. src/runtime/traceback.go

    	startOffset := uint8(0xff) // smallest offset that needs liveness info (slots with a lower offset is always live)
    	if liveInfo != nil {
    		startOffset = *(*uint8)(liveInfo)
    	}
    
    	isLive := func(off, slotIdx uint8) bool {
    		if liveInfo == nil || liveIdx <= 0 {
    			return true // no liveness info, always live
    		}
    		if off < startOffset {
    			return true
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  4. src/cmd/cgo/out.go

    		// We don't have source info for these types, so write them out without source info.
    		// Otherwise types would look like:
    		//
    		// type _Ctype_struct_cb struct {
    		// //line :1
    		//        on_test *[0]byte
    		// //line :1
    		// }
    		//
    		// Which is not useful. Moreover we never override source info,
    		// so subsequent source code uses the same source info.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    // If the context has no request info, DefaultQualifiedResource is used.
    func (e *Store) qualifiedResourceFromContext(ctx context.Context) schema.GroupResource {
    	if info, ok := genericapirequest.RequestInfoFrom(ctx); ok {
    		return schema.GroupResource{Group: info.APIGroup, Resource: info.Resource}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
  6. src/crypto/internal/nistec/p256_asm_s390x.s

    #undef X2H
    #undef Y2L
    #undef Y2H
    #undef Z2L
    #undef Z2H
    #undef ONE
    #undef IDX
    #undef SEL1
    #undef SEL2
    #undef CPOOL
    
    // ---------------------------------------
    
    // func p256OrdMul(res, in1, in2 *p256OrdElement)
    #define res_ptr R1
    #define x_ptr R2
    #define y_ptr R3
    #define X0    V0
    #define X1    V1
    #define Y0    V2
    #define Y1    V3
    #define M0    V4
    #define M1    V5
    #define T0    V6
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

        // `tensor_list_stack`) and also valid (not scalar), we rewrite this op to a
        // trivial Reshape op (that doesn't actually change the input's shape) and
        // also populate the shape info to the op result. The shape of the
        // tensorlist is inferred from `num_elements` and `element_shape`.
        auto ranked_type = element_shape.getType().dyn_cast<RankedTensorType>();
        DenseIntElementsAttr dense_elem_attr;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  8. guava/src/com/google/common/util/concurrent/Futures.java

         *     FutureCombiner}). Even if you don't care about the value of the future, you should
         *     typically check whether it failed: See <a
         *     href="https://errorprone.info/bugpattern/FutureReturnValueIgnored">https://errorprone.info/bugpattern/FutureReturnValueIgnored</a>.
         */
        public <C extends @Nullable Object> ListenableFuture<C> callAsync(
            AsyncCallable<C> combiner, Executor executor) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 64.1K bytes
    - Viewed (0)
  9. src/syscall/zsyscall_windows.go

    	len = uint32(r0)
    	return
    }
    
    func GetTokenInformation(t Token, infoClass uint32, info *byte, infoLen uint32, returnedLen *uint32) (err error) {
    	r1, _, e1 := Syscall6(procGetTokenInformation.Addr(), 5, uintptr(t), uintptr(infoClass), uintptr(unsafe.Pointer(info)), uintptr(infoLen), uintptr(unsafe.Pointer(returnedLen)), 0)
    	if r1 == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 56.3K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_linux.go

    		err = errnoErr(e1)
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Waitid(idType int, id int, info *Siginfo, options int, rusage *Rusage) (err error) {
    	_, _, e1 := Syscall6(SYS_WAITID, uintptr(idType), uintptr(id), uintptr(unsafe.Pointer(info)), uintptr(options), uintptr(unsafe.Pointer(rusage)), 0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 54.6K bytes
    - Viewed (0)
Back to top