Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for loadOne (0.18 sec)

  1. android/guava/src/com/google/common/cache/LocalCache.java

        @CheckForNull
        V get();
    
        /**
         * Waits for a value that may still be loading. Unlike get(), this method can block (in the case
         * of FutureValueReference).
         *
         * @throws ExecutionException if the loading thread throws an exception
         * @throws ExecutionError if the loading thread throws an error
         */
        V waitForValue() throws ExecutionException;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  2. guava/src/com/google/common/cache/LocalCache.java

        @CheckForNull
        V get();
    
        /**
         * Waits for a value that may still be loading. Unlike get(), this method can block (in the case
         * of FutureValueReference).
         *
         * @throws ExecutionException if the loading thread throws an exception
         * @throws ExecutionError if the loading thread throws an error
         */
        V waitForValue() throws ExecutionException;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  3. src/cmd/go/internal/load/pkg.go

    	// Error information
    	// Incomplete is above, packed into the other bools
    	Error      *PackageError   `json:",omitempty"` // error loading this package (not dependencies)
    	DepsErrors []*PackageError `json:",omitempty"` // errors loading dependencies, collected by go list before output
    
    	// Test information
    	// If you add to this list you MUST add to p.AllFiles (below) too.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  4. src/cmd/go/alldocs.go

    //
    //	    // Error information
    //	    Incomplete bool            // this package or a dependency has an error
    //	    Error      *PackageError   // error loading package
    //	    DepsErrors []*PackageError // errors loading dependencies
    //	}
    //
    // Packages stored in vendor directories report an ImportPath that includes the
    // path to the vendor directory (for example, "d/vendor/p" instead of "p"),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/data.go

    // THE SOFTWARE.
    
    package ld
    
    import (
    	"bytes"
    	"cmd/internal/gcprog"
    	"cmd/internal/objabi"
    	"cmd/internal/sys"
    	"cmd/link/internal/loader"
    	"cmd/link/internal/loadpe"
    	"cmd/link/internal/sym"
    	"compress/zlib"
    	"debug/elf"
    	"encoding/binary"
    	"fmt"
    	"internal/abi"
    	"log"
    	"math/rand"
    	"os"
    	"sort"
    	"strconv"
    	"strings"
    	"sync"
    	"sync/atomic"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  6. tensorflow/c/c_api.cc

            shape_handle, static_cast<DataType>(types[i]));
      }
    
      ic->set_output_handle_shapes_and_types(output.index, shape_and_type_vec);
    }
    
    // Helpers for loading a TensorFlow plugin (a .so file).
    Status LoadDynamicLibrary(const char* library_filename, void** result,
                              const void** buf, size_t* len);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  7. src/cmd/go/internal/work/exec.go

    	if need&needVet != 0 {
    		buildVetConfig(a, srcfiles)
    		need &^= needVet
    	}
    	if need&needCompiledGoFiles != 0 {
    		if err := b.loadCachedCompiledGoFiles(a); err != nil {
    			return fmt.Errorf("loading compiled Go files from cache: %w", err)
    		}
    		need &^= needCompiledGoFiles
    	}
    	if need == 0 {
    		// Nothing left to do.
    		return nil
    	}
    
    	// Collect symbol ABI requirements from assembly.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/generic.rules

    (RotateLeft(64|32|16|8) (RotateLeft(64|32|16|8) x c) d) && c.Type.Size() == 1 && d.Type.Size() == 1 => (RotateLeft(64|32|16|8) x (Add8  <c.Type> c d))
    
    // Loading constant values from dictionaries and itabs.
    (Load <t> (OffPtr [off]                       (Addr {s} sb)       ) _) && t.IsUintptr() && isFixedSym(s, off) => (Addr {fixedSym(b.Func, s, off)} sb)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

                                            ret_nodes, control_ret_nodes,
                                            conversion_metadata.attributes));
    
        // Additional function bodies could be discovered during the deferred
        // loading of the current function. Add them to the working queue.
        while (!importer.deferred_functions_.empty()) {
          deferred_functions_.push(importer.deferred_functions_.front());
          importer.deferred_functions_.pop();
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc_test.go

    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	featuregatetesting "k8s.io/component-base/featuregate/testing"
    	"k8s.io/component-base/metrics/testutil"
    	"k8s.io/klog/v2"
    	"k8s.io/utils/pointer"
    )
    
    // utilities for loading JOSE keys.
    
    func loadRSAKey(t *testing.T, filepath string, alg jose.SignatureAlgorithm) *jose.JSONWebKey {
    	return loadKey(t, filepath, alg, func(b []byte) (interface{}, error) {
    		key, err := x509.ParsePKCS1PrivateKey(b)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 97.7K bytes
    - Viewed (0)
Back to top