Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 655 for unloads (0.2 sec)

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

         * @throws IllegalStateException if called with a different argument in the same build
         */
        void loadGradlePropertiesFrom(File settingsDir, boolean setSystemProperties);
    
        /**
         * Unloads the properties so the next call to {@link #loadGradlePropertiesFrom(File, boolean)} would reload them and
         * re-evaluate any property defining system properties and environment variables.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 11:22:05 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. src/syscall/dll_windows.go

    // MustFindProc is like [DLL.FindProc] but panics if search fails.
    func (d *DLL) MustFindProc(name string) *Proc {
    	p, e := d.FindProc(name)
    	if e != nil {
    		panic(e)
    	}
    	return p
    }
    
    // Release unloads [DLL] d from memory.
    func (d *DLL) Release() (err error) {
    	return FreeLibrary(d.Handle)
    }
    
    // A Proc implements access to a procedure inside a [DLL].
    type Proc struct {
    	Dll  *DLL
    	Name string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/windows/dll_windows.go

    func (d *DLL) MustFindProcByOrdinal(ordinal uintptr) *Proc {
    	p, e := d.FindProcByOrdinal(ordinal)
    	if e != nil {
    		panic(e)
    	}
    	return p
    }
    
    // Release unloads DLL d from memory.
    func (d *DLL) Release() (err error) {
    	return FreeLibrary(d.Handle)
    }
    
    // A Proc implements access to a procedure inside a DLL.
    type Proc struct {
    	Dll  *DLL
    	Name string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Dec 05 12:36:42 UTC 2020
    - 12K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/telemetry/internal/upload/upload.go

    		// Another process uploaded but failed to clean up (or hasn't yet cleaned
    		// up). Ensure that cleanup occurs.
    		_ = os.Remove(fname)
    		return false
    	}
    
    	// Lock the upload, to prevent duplicate uploads.
    	{
    		lockname := newname + ".lock"
    		lockfile, err := os.OpenFile(lockname, os.O_CREATE|os.O_EXCL, 0666)
    		if err != nil {
    			u.logger.Printf("Failed to acquire lock %s: %v", lockname, err)
    			return false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  5. ci/official/upload.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    # ==============================================================================
    # This script uploads all staged artifacts from all previous builds in the same
    # job chain to GCS and PyPI.
    source "${BASH_SOURCE%/*}/utilities/setup.sh"
    
    # Update the version numbers for Nightly only, then fetch the version numbers
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 24 20:52:12 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  6. pkg/ctrlz/topics/assets/templates/scopes.html

                    let ajax = new XMLHttpRequest();
                    ajax.onload = onload2;
                    ajax.onerror = onerror;
                    ajax.open("PUT", url, true);
                    ajax.send(JSON.stringify(si));
                }
    
                function onload2() {
                    refreshScopes();
                }
            }
    
            function onerror(e) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  7. platforms/software/publish/src/main/java/org/gradle/api/tasks/Upload.java

     *
     * @deprecated This class is scheduled for removal in a future version. To upload artifacts, use the `maven-publish` or `ivy-publish` plugins instead.
     */
    @Deprecated // TODO:Finalize Upload Removal - Issue #21439
    @DisableCachingByDefault(because = "Produces no cacheable output")
    public abstract class Upload extends ConventionTask {
        /**
         * Do not use this method, it is for internal use only.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 22:15:44 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  8. docs/extensions/fan-out/README.md

    ## How to enable Fan-Out Uploads ?
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 25 05:51:07 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  9. platforms/software/resources/src/main/java/org/gradle/internal/resource/transfer/DefaultExternalResourceConnector.java

            }
    
            @Override
            public void upload(URI destination) {
                record(uploads, destination);
                super.upload(destination);
            }
    
            @Override
            public synchronized void reset() {
                super.reset();
                resources.clear();
                metadata.clear();
                lists.clear();
                uploads.clear();
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/cmd/phases/init/uploadconfig.go

    		`)
    
    	uploadKubeletConfigLongDesc = cmdutil.LongDesc(`
    		Upload the kubelet configuration extracted from the kubeadm InitConfiguration object
    		to a kubelet-config ConfigMap in the cluster
    		`)
    
    	uploadKubeletConfigExample = cmdutil.Examples(`
    		# Upload the kubelet configuration from the kubeadm Config file to a ConfigMap in the cluster.
    		kubeadm init phase upload-config kubelet --config kubeadm.yaml
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 02 12:34:30 UTC 2024
    - 5K bytes
    - Viewed (0)
Back to top