Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 371 for loadOps (0.54 sec)

  1. src/internal/runtime/atomic/atomic_arm.s

    	MOVW	new_hi+8(FP), R3
    
    swap64loop:
    	LDREXD	(R1), R4	// loads R4 and R5
    
    	DMB	MB_ISHST
    
    	STREXD	R2, (R1), R0	// stores R2 and R3
    	CMP	$0, R0
    	BNE	swap64loop
    
    	DMB	MB_ISH
    
    	MOVW	R4, old_lo+12(FP)
    	MOVW	R5, old_hi+16(FP)
    	RET
    
    TEXT armLoad64<>(SB),NOSPLIT,$0-12
    	// addr is already in R1
    
    	LDREXD	(R1), R2	// loads R2 and R3
    	DMB	MB_ISH
    
    	MOVW	R2, val_lo+4(FP)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/cache/LoadingCache.java

       *     described in the documentation for {@link #getUnchecked}, {@code LoadingCache} should be
       *     used as a {@code Function} only with cache loaders that throw only unchecked exceptions.)
       */
      @Deprecated
      @Override
      V apply(K key);
    
      /**
       * Loads a new value for {@code key}, possibly asynchronously. While the new value is loading the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Aug 06 17:12:03 UTC 2022
    - 8.3K bytes
    - Viewed (0)
  3. guava/src/com/google/common/cache/LoadingCache.java

       *     described in the documentation for {@link #getUnchecked}, {@code LoadingCache} should be
       *     used as a {@code Function} only with cache loaders that throw only unchecked exceptions.)
       */
      @Deprecated
      @Override
      V apply(K key);
    
      /**
       * Loads a new value for {@code key}, possibly asynchronously. While the new value is loading the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Aug 06 17:12:03 UTC 2022
    - 8.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheClassLoaderScopeRegistryListener.kt

                scopeSpecs.clear()
                loaders.clear()
                listenerManager.remove(this)
            }
        }
    
        override fun close() {
            dispose()
        }
    
        override fun scopeFor(classLoader: ClassLoader?): Pair<ClassLoaderScopeSpec, ClassLoaderRole>? {
            synchronized(lock) {
                return loaders[classLoader]
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modcmd/why.go

    			}
    			fmt.Printf("%s# %s\n%s", sep, m.Path, why)
    			sep = "\n"
    		}
    	} else {
    		// Resolve to packages.
    		matches, _ := modload.LoadPackages(ctx, loadOpts, args...)
    
    		modload.LoadPackages(ctx, loadOpts, "all") // rebuild graph, from main module (not from named packages)
    
    		sep := ""
    		for _, m := range matches {
    			for _, path := range m.Pkgs {
    				why := modload.Why(path)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 01 21:32:23 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  6. platforms/core-runtime/build-process-services/src/test/groovy/org/gradle/internal/installation/CurrentGradleInstallationLocatorTest.groovy

        List<Closeable> loaders = []
    
        TestFile distDir
    
        def setup() {
            distDir = tmpDir.createDir("dist")
            distDir.createDir("lib")
            distDir.createDir("lib/plugins")
        }
    
        def cleanup() {
            CompositeStoppable.stoppable(loaders).stop()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  7. guava/src/com/google/common/base/internal/Finalizer.java

     * com.google.common.base.FinalizableReference}.
     *
     * <p>While this class is public, we consider it to be *internal* and not part of our published API.
     * It is public so we can access it reflectively across class loaders in secure environments.
     *
     * <p>This class can't depend on other Guava code. If we were to load this class in the same class
     * loader as the rest of Guava, this thread would keep an indirect strong reference to the class
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Aug 23 12:54:09 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  8. test/fixedbugs/issue67160.go

    // license that can be found in the LICENSE file.
    
    // Test to make sure that we don't try using larger loads for
    // generated equality functions on architectures that can't do
    // unaligned loads.
    
    package main
    
    // T has a big field that wants to be compared with larger loads/stores.
    // T is "special" because of the unnamed field, so it needs a generated equality function.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 15:34:04 UTC 2024
    - 767 bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/base/internal/Finalizer.java

     * com.google.common.base.FinalizableReference}.
     *
     * <p>While this class is public, we consider it to be *internal* and not part of our published API.
     * It is public so we can access it reflectively across class loaders in secure environments.
     *
     * <p>This class can't depend on other Guava code. If we were to load this class in the same class
     * loader as the rest of Guava, this thread would keep an indirect strong reference to the class
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Aug 23 12:54:09 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  10. pkg/kubelet/kubeletconfig/configfiles/configfiles.go

    	utilfs "k8s.io/kubernetes/pkg/util/filesystem"
    )
    
    // Loader loads configuration from a storage layer
    type Loader interface {
    	// Load loads and returns the KubeletConfiguration from the storage layer, or an error if a configuration could not be loaded
    	Load() (*kubeletconfig.KubeletConfiguration, error)
    	// LoadIntoJSON loads and returns the KubeletConfiguration from the storage layer, or an error if a configuration could not be
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 10 17:13:59 UTC 2024
    - 3.7K bytes
    - Viewed (0)
Back to top