Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 293 for loadsys (0.22 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. src/debug/macho/file.go

    		}
    		var cmddat []byte
    		cmddat, dat = dat[0:siz], dat[siz:]
    		offset += int64(siz)
    		var s *Segment
    		switch cmd {
    		default:
    			f.Loads = append(f.Loads, LoadBytes(cmddat))
    
    		case LoadCmdRpath:
    			var hdr RpathCmd
    			b := bytes.NewReader(cmddat)
    			if err := binary.Read(b, bo, &hdr); err != nil {
    				return nil, err
    			}
    			l := new(Rpath)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  6. platforms/jvm/language-groovy/src/test/groovy/org/gradle/api/internal/tasks/compile/GroovyCompileTransformingClassLoaderTest.groovy

        }
    
        def "loads class annotated with transformer name"() {
            expect:
            def cl = loader.loadClass(WithNameSpecified.name)
            def annotation = cl.getAnnotation(classAnnotation)
            annotation.value() == ['some-type'] as String[]
            annotation.classes() == [] as Class[]
        }
    
        def "loads class annotated with transformer names"() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/BuildTreeConfigurationCache.kt

        /**
         * Loads the scheduled tasks from cache, if available, or else runs the given function to schedule the tasks and then
         * writes the result to the cache.
         */
        fun loadOrScheduleRequestedTasks(graph: BuildTreeWorkGraph, graphBuilder: BuildTreeWorkGraphBuilder?, scheduler: (BuildTreeWorkGraph) -> BuildTreeWorkGraph.FinalizedGraph): WorkGraphResult
    
        /**
         * Loads the scheduled tasks from cache.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

      int GetLiftedNumResults() const { return num_new_results_; }
    
      // Generates hoisted reads for resources that need them before the op.
      void GenerateHoistedReads();
    
      // Replaces all resource loads in the given region with hoisted loads. If
      // `read_only` is true, limit this replacement to read only resources.
      void ReplaceResourceLoads(Region& region, bool read_only);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  9. src/sync/atomic/type.go

    package atomic
    
    import "unsafe"
    
    // A Bool is an atomic boolean value.
    // The zero value is false.
    type Bool struct {
    	_ noCopy
    	v uint32
    }
    
    // Load atomically loads and returns the value stored in x.
    func (x *Bool) Load() bool { return LoadUint32(&x.v) != 0 }
    
    // Store atomically stores val into x.
    func (x *Bool) Store(val bool) { StoreUint32(&x.v, b32(val)) }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheStateStore.kt

        fun assignSpoolFile(stateType: StateType): StateFile
    
        /**
         * Loads some value from zero or more state files.
         */
        fun <T : Any> useForStateLoad(action: (ConfigurationCacheRepository.Layout) -> T): T
    
        /**
         * Loads some value from a specific state file.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.6K bytes
    - Viewed (0)
Back to top