Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 691 for partially (0.13 sec)

  1. guava/src/com/google/common/util/concurrent/Partially.java

    import java.lang.annotation.ElementType;
    import java.lang.annotation.Retention;
    import java.lang.annotation.RetentionPolicy;
    import java.lang.annotation.Target;
    
    /**
     * Outer class that exists solely to let us write {@code Partially.GwtIncompatible} instead of plain
     * {@code GwtIncompatible}. This is more accurate for {@link Futures#catching}, which is available
     * under GWT but with a slightly different signature.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 05 22:27:35 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/util/concurrent/Partially.java

    import java.lang.annotation.ElementType;
    import java.lang.annotation.Retention;
    import java.lang.annotation.RetentionPolicy;
    import java.lang.annotation.Target;
    
    /**
     * Outer class that exists solely to let us write {@code Partially.GwtIncompatible} instead of plain
     * {@code GwtIncompatible}. This is more accurate for {@link Futures#catching}, which is available
     * under GWT but with a slightly different signature.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 05 22:27:35 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  3. src/encoding/gob/dec_helpers.go

    		}
    		if i >= len(slice) {
    			// This is a slice that we only partially allocated.
    			growSlice(v, &slice, length)
    		}
    		x := state.decodeUint()
    		if uint64(^uintptr(0)) < x {
    			error_(ovfl)
    		}
    		slice[i] = uintptr(x)
    	}
    	return true
    }
    
    // growSlice is called for a slice that we only partially allocated,
    // to grow it up to length.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 24 19:28:46 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  4. src/internal/runtime/atomic/types_64bit.go

    // license that can be found in the LICENSE file.
    
    //go:build amd64 || arm64 || loong64 || mips64 || mips64le || ppc64 || ppc64le || riscv64 || s390x || wasm
    
    package atomic
    
    // LoadAcquire is a partially unsynchronized version
    // of Load that relaxes ordering constraints. Other threads
    // may observe operations that precede this operation to
    // occur after it, but no operation that occurs after it
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/call.go

    // instantiated generic functions (where constraint information is insufficient to infer
    // the missing type arguments) for Go 1.21 and later.
    // For each non-generic or uninstantiated generic operand, the corresponding targsList and
    // xlistList elements do not exist (targsList and xlistList are nil) or the elements are nil.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfrt/tests/tf_to_corert/fallback_canonicalization.mlir

      tfrt.return %ra, %rb : !tfrt_fallback.tf_tensor, !tfrt_fallback.tf_tensor
    }
    
    // Tests the case where the conversion op is partially canonicalizable.
    // CHECK-LABEL: func @test_const_tensor_canonicalization_mixed_operands
    // CHECK-SAME: ([[arg0:%.*]]: !corert.tensorhandle, [[arg1:%.*]]: !corert.tensorhandle)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Nov 04 14:07:37 UTC 2022
    - 5.3K bytes
    - Viewed (0)
  7. src/go/types/call.go

    // instantiated generic functions (where constraint information is insufficient to infer
    // the missing type arguments) for Go 1.21 and later.
    // For each non-generic or uninstantiated generic operand, the corresponding targsList and
    // xlistList elements do not exist (targsList and xlistList are nil) or the elements are nil.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  8. test/fixedbugs/issue18410.go

    // run
    
    // Copyright 2016 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This checks partially initialized structure literals
    // used to create value.method functions have their
    // non-initialized fields properly zeroed/nil'd
    
    package main
    
    type X struct {
    	A, B, C *int
    }
    
    //go:noinline
    func (t X) Print() {
    	if t.B != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 06 20:35:52 UTC 2017
    - 686 bytes
    - Viewed (0)
  9. test/deferfin.go

    // Test that defers do not prevent garbage collection.
    
    package main
    
    import (
    	"runtime"
    	"sync"
    	"sync/atomic"
    	"time"
    )
    
    var sink func()
    
    func main() {
    	// Does not work with gccgo, due to partially conservative GC.
    	// Try to enable when we have fully precise GC.
    	if runtime.Compiler == "gccgo" {
    		return
    	}
    	N := 10
    	count := int32(N)
    	var wg sync.WaitGroup
    	wg.Add(N)
    	for i := 0; i < N; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 05 21:11:31 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  10. src/internal/types/testdata/fixedbugs/issue59338a.go

    package p
    
    func g[P any](P)      {}
    func h[P, Q any](P) Q { panic(0) }
    
    var _ func(int) = g /* ERROR "implicitly instantiated function in assignment requires go1.21 or later" */
    var _ func(int) string = h[ /* ERROR "partially instantiated function in assignment requires go1.21 or later" */ int]
    
    func f1(func(int))      {}
    func f2(int, func(int)) {}
    
    func _() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 04 17:35:44 UTC 2023
    - 727 bytes
    - Viewed (0)
Back to top