Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 32 for ulong (0.05 sec)

  1. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

      private static final class UnsafeAtomicHelper extends AtomicHelper {
        static final sun.misc.Unsafe UNSAFE;
        static final long LISTENERS_OFFSET;
        static final long WAITERS_OFFSET;
        static final long VALUE_OFFSET;
        static final long WAITER_THREAD_OFFSET;
        static final long WAITER_NEXT_OFFSET;
    
        static {
          sun.misc.Unsafe unsafe = null;
          try {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (0)
  2. guava/src/com/google/common/util/concurrent/AbstractFuture.java

      private static final class UnsafeAtomicHelper extends AtomicHelper {
        static final sun.misc.Unsafe UNSAFE;
        static final long LISTENERS_OFFSET;
        static final long WAITERS_OFFSET;
        static final long VALUE_OFFSET;
        static final long WAITER_THREAD_OFFSET;
        static final long WAITER_NEXT_OFFSET;
    
        static {
          sun.misc.Unsafe unsafe = null;
          try {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

        return success();
      }
    };
    
    // Converts `TensorListConcatV2` into Unpack and Concat. First we unpack
    // the input tensorlist along the first dimension, which results in N (where N
    // is the first dim's size) tensors (each with shape [element_shape]). Then
    // we concatenate all those tensors along the first dimension.
    // The pattern will be rejected if either `element_shape` is not constant, or
    // the first dimension of `input` is not known.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

        private List<DependencyState> cachedFilteredDependencyStates;
    
        // exclusions optimizations
        private ExcludeSpec cachedNodeExclusions;
        private int previousIncomingEdgeCount;
        private long previousIncomingHash;
        private long incomingHash;
        private ExcludeSpec cachedModuleResolutionFilter;
    
        private StrictVersionConstraints ancestorsStrictVersionConstraints;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  5. cmd/iam-store.go

    // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    // GNU Affero General Public License for more details.
    //
    // You should have received a copy of the GNU Affero General Public License
    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package cmd
    
    import (
    	"context"
    	"encoding/base64"
    	"encoding/json"
    	"errors"
    	"fmt"
    	"sort"
    	"strings"
    	"time"
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modget/get.go

    	wildcardNones []*query          // wildcard "@none" queries
    
    	// resolvedVersion maps each module path to the version of that module that
    	// must be selected in the final build list, along with the first query
    	// that resolved the module to that version (the “reason”).
    	resolvedVersion map[string]versionReason
    
    	buildList        []module.Version
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  7. cmd/api-errors.go

    // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    // GNU Affero General Public License for more details.
    //
    // You should have received a copy of the GNU Affero General Public License
    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package cmd
    
    import (
    	"context"
    	"encoding/xml"
    	"errors"
    	"fmt"
    	"net/http"
    	"net/url"
    	"os"
    	"strconv"
    	"strings"
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
  8. src/net/http/transport.go

    // wrote. The underlying err field is usually io.EOF or some
    // ECONNRESET sort of thing which varies by platform. But it might be
    // the user's custom net.Conn.Read error too, so we carry it along for
    // them to return from Transport.RoundTrip.
    type transportReadFromServerError struct {
    	err error
    }
    
    func (e transportReadFromServerError) Unwrap() error { return e.err }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  9. src/net/netip/netip_test.go

    package netip_test
    
    import (
    	"bytes"
    	"encoding/json"
    	"flag"
    	"fmt"
    	"internal/testenv"
    	"net"
    	. "net/netip"
    	"reflect"
    	"slices"
    	"strings"
    	"testing"
    	"unique"
    )
    
    var long = flag.Bool("long", false, "run long tests")
    
    type uint128 = Uint128
    
    var (
    	mustPrefix = MustParsePrefix
    	mustIP     = MustParseAddr
    	mustIPPort = MustParseAddrPort
    )
    
    func TestParseAddr(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 54.3K bytes
    - Viewed (0)
  10. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

            String[] secondSegments = second.split("\\.");
            for (int i = 0; i < Math.max(firstSegments.length, secondSegments.length); i++) {
                int result = Long.valueOf(i < firstSegments.length ? firstSegments[i] : "0")
                        .compareTo(Long.valueOf(i < secondSegments.length ? secondSegments[i] : "0"));
                if (result != 0) {
                    return result;
                }
            }
            return 0;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 73.9K bytes
    - Viewed (0)
Back to top