Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 424 for loadOps (0.21 sec)

  1. subprojects/core/src/main/java/org/gradle/initialization/DefaultSettingsLoader.java

            settings.setDefaultProject(spec.selectProject(settings.getSettingsScript().getDisplayName(), settings.getProjectRegistry()));
        }
    
        /**
         * Finds the settings.gradle for the given startParameter, and loads it if contains the project selected by the
         * startParameter, or if the startParameter explicitly specifies a settings script.  If the settings file is not
         * loaded (executed), then a null is returned.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 14 20:50:34 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/reference/third_party_integration.adoc

    This will allow you to import and run Gradle builds.
    If you need to fine tune the import process so that the project loads correctly, you can use the <<eclipse_plugin.adoc#eclipse_plugin,Eclipse Plugins for Gradle>>.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/classpath/transforms/ClasspathElementTransformForAgent.java

                throw e;
            }
        }
    
        @Override
        protected void processResource(ClasspathBuilder.EntryBuilder builder, ClasspathEntryVisitor.Entry resourceEntry) {
            // Class loader loads resources from the original JAR, so there's no need to put them into the transformed JAR.
            // Only classes affect the class-loading
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:14:01 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  4. tensorflow/cc/experimental/libtf/runtime/runtime.h

    /// than all imported modules.
    class Runtime : public Object {
     public:
      // TODO(b/191264214): Remove need for AbstractContext
      explicit Runtime(tensorflow::AbstractContext* ctx);
      /// @brief Loads the module indicated by `name` and returns it.
      ///
      /// @param name The name of the module / file path to load
      /// @return An `Object` representing the module, if successful.  Otherwise, a
      /// non-ok `absl::Status`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Sep 01 11:18:25 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/walk/walk.go

    			// ok: operations that don't require function calls.
    			// Expand as needed.
    		}
    
    		return false
    	})
    }
    
    // itabType loads the _type field from a runtime.itab struct.
    func itabType(itab ir.Node) ir.Node {
    	if itabTypeField == nil {
    		// internal/abi.ITab's Type field
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 20:56:00 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  6. src/debug/buildinfo/buildinfo.go

    // machoExe is the Mach-O (Apple macOS/iOS) implementation of the exe interface.
    type machoExe struct {
    	f *macho.File
    }
    
    func (x *machoExe) ReadData(addr, size uint64) ([]byte, error) {
    	for _, load := range x.f.Loads {
    		seg, ok := load.(*macho.Segment)
    		if !ok {
    			continue
    		}
    		if seg.Addr <= addr && addr <= seg.Addr+seg.Filesz-1 {
    			if seg.Name == "__PAGEZERO" {
    				continue
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/windows/dll_windows.go

    func (e *DLLError) Error() string { return e.Msg }
    
    func (e *DLLError) Unwrap() error { return e.Err }
    
    // A DLL implements access to a single DLL.
    type DLL struct {
    	Name   string
    	Handle Handle
    }
    
    // LoadDLL loads DLL file into memory.
    //
    // Warning: using LoadDLL without an absolute path name is subject to
    // DLL preloading attacks. To safely load a system DLL, use LazyDLL
    // with System set to true, or use LoadLibraryEx directly.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Dec 05 12:36:42 UTC 2020
    - 12K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/GradleDistribution.java

        /**
         * Returns true if this version generates a build operation that wraps the execution phase
         */
        boolean isToolingApiHasExecutionPhaseBuildOperation();
    
        /**
         * Returns true if this version loads the work graph from the configuration cache in the same build that the entry is stored.
         */
        boolean isLoadsFromConfigurationCacheAfterStore();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 16:09:27 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  9. src/internal/runtime/atomic/atomic_arm.go

    	}
    }
    
    //go:nosplit
    func armcas(ptr *uint32, old, new uint32) bool
    
    //go:noescape
    func Load(addr *uint32) uint32
    
    // NO go:noescape annotation; *addr escapes if result escapes (#31525)
    func Loadp(addr unsafe.Pointer) unsafe.Pointer
    
    //go:noescape
    func Load8(addr *uint8) uint8
    
    //go:noescape
    func LoadAcq(addr *uint32) uint32
    
    //go:noescape
    func LoadAcquintptr(ptr *uintptr) uintptr
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/config.go

    	SoftFloat      bool        //
    	Race           bool        // race detector enabled
    	BigEndian      bool        //
    	UseFMA         bool        // Use hardware FMA operation
    	unalignedOK    bool        // Unaligned loads/stores are ok
    	haveBswap64    bool        // architecture implements Bswap64
    	haveBswap32    bool        // architecture implements Bswap32
    	haveBswap16    bool        // architecture implements Bswap16
    }
    
    type (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:11:47 UTC 2024
    - 12.9K bytes
    - Viewed (0)
Back to top