Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 269 for existed (0.11 sec)

  1. src/cmd/compile/internal/types/pkg.go

    	Syms: make(map[string]*Sym),
    }
    
    func (pkg *Pkg) Lookup(name string) *Sym {
    	s, _ := pkg.LookupOK(name)
    	return s
    }
    
    // LookupOK looks up name in pkg and reports whether it previously existed.
    func (pkg *Pkg) LookupOK(name string) (s *Sym, existed bool) {
    	// TODO(gri) remove this check in favor of specialized lookup
    	if pkg == nil {
    		pkg = nopkg
    	}
    	if s := pkg.Syms[name]; s != nil {
    		return s, true
    	}
    
    	s = &Sym{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 16:28:50 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  2. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/relocation/DistributionManagementArtifactRelocationSource.java

    import org.eclipse.sisu.Priority;
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    /**
     * Relocation source from standard distribution management. This is the "one and only" relocation implementation that
     * existed in Maven 3 land, uses POM distributionManagement/relocation.
     * <p>
     * Note: this component should kick-in last regarding relocations.
     *
     * @since 4.0.0
     */
    @Singleton
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 18 12:26:49 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  3. src/cmd/go/internal/test/cover.go

    }
    
    // initCoverProfile initializes the test coverage profile.
    // It must be run before any calls to mergeCoverProfile or closeCoverProfile.
    // Using this function clears the profile in case it existed from a previous run,
    // or in case it doesn't exist and the test is going to fail to create it (or not run).
    func initCoverProfile() {
    	if testCoverProfile == "" || testC {
    		return
    	}
    	if !filepath.IsAbs(testCoverProfile) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 28 11:50:58 UTC 2022
    - 2K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/relocation/DistributionManagementArtifactRelocationSource.java

    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    /**
     * Relocation source from standard distribution management. This is the "one and only" relocation implementation that
     * existed in Maven 3 land, uses POM distributionManagement/relocation.
     * <p>
     * Note: this component should kick-in last regarding relocations.
     *
     * @since 4.0.0
     */
    @Singleton
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  5. platforms/core-runtime/files/src/main/java/org/gradle/internal/file/Deleter.java

        /**
         * Deletes a single file or an empty directory.
         *
         * Does not follow symlinks.
         *
         * @return {@code true} if the target existed, {@code false} if it didn't exist.
         *
         * @throws IOException if the file cannot be deleted.
         */
        boolean delete(File target) throws IOException;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dsl/dependencies/DependencyLockingProvider.java

         */
        ListProperty<String> getIgnoredDependencies();
    
        /**
         * Confirms that the given lock is not locked.
         * This allows the lock state for the lock to be dropped if it existed before.
         *
         * @param lockId the ID of the lock to confirm is not locked
         */
        void confirmNotLocked(String lockId);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  7. pkg/controller/deployment/recreate.go

    func (dc *DeploymentController) rolloutRecreate(ctx context.Context, d *apps.Deployment, rsList []*apps.ReplicaSet, podMap map[types.UID][]*v1.Pod) error {
    	// Don't create a new RS if not already existed, so that we avoid scaling up before scaling down.
    	newRS, oldRSs, err := dc.getAllReplicaSetsAndSyncRevision(ctx, d, rsList, false)
    	if err != nil {
    		return err
    	}
    	allRSs := append(oldRSs, newRS)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 13 20:32:13 UTC 2021
    - 4.2K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modload/mvs.go

    type mvsReqs struct {
    	roots []module.Version
    }
    
    func (r *mvsReqs) Required(mod module.Version) ([]module.Version, error) {
    	if mod.Version == "" && MainModules.Contains(mod.Path) {
    		// Use the build list as it existed when r was constructed, not the current
    		// global build list.
    		return r.roots, nil
    	}
    
    	if mod.Version == "none" {
    		return nil, nil
    	}
    
    	summary, err := goModSummary(mod)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 19:01:38 UTC 2023
    - 4K bytes
    - Viewed (0)
  9. src/internal/syscall/windows/registry/key.go

    	}
    	return names, nil
    }
    
    // CreateKey creates a key named path under open key k.
    // CreateKey returns the new key and a boolean flag that reports
    // whether the key already existed.
    // The access parameter specifies the access rights for the key
    // to be created.
    func CreateKey(k Key, path string, access uint32) (newk Key, openedExisting bool, err error) {
    	var h syscall.Handle
    	var d uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 16:42:41 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/internal/changedetection/state/UpToDateIntegTest.groovy

            buildFile '''
    apply plugin: 'base'
    
    task checkCreated {
        dependsOn "createEmpty"
        def createdDir = file('build/createdDirectory')
        doLast {
            assert createdDir.exists()
            println "Directory 'build/createdDirectory' exists"
        }
    }
    
    task("createEmpty", type: CreateEmptyDirectory)
    
    public abstract class CreateEmptyDirectory extends DefaultTask {
    
        @Inject
        abstract ProjectLayout getLayout()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 13 12:00:09 UTC 2022
    - 9.6K bytes
    - Viewed (0)
Back to top