Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 173 for anyone (0.25 sec)

  1. apache-maven/src/main/appended-resources/licenses/EPL-1.0.txt

    "Licensed Patents" mean patent claims licensable by a Contributor which are
    necessarily infringed by the use or sale of its Contribution alone or when
    combined with the Program.
    
    "Program" means the Contributions distributed in accordance with this Agreement.
    
    "Recipient" means anyone who receives the Program under this Agreement, including
    all Contributors.
    
       2. GRANT OF RIGHTS
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Sep 17 05:50:12 UTC 2018
    - 11.1K bytes
    - Viewed (0)
  2. apache-maven/src/main/appended-resources/licenses/EPL-2.0.txt

      such Contributor itself or anyone acting on such Contributor's behalf.
      Contributions do not include changes or additions to the Program that
      are not Modified Works.
    
    "Contributor" means any person or entity that Distributes the Program.
    
    "Licensed Patents" mean patent claims licensable by a Contributor which
    are necessarily infringed by the use or sale of its Contribution alone
    or when combined with the Program.
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 04 06:45:16 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/configuration/project/LifecycleProjectEvaluator.java

     * However, in practice there is usually an operation for evaluating the project's build script.
     *
     * The before/after evaluate operations are fired regardless whether anyone is actually listening.
     * This may change in future versions.
     *
     * The use of term “evaluate” is a legacy constraint.
     * Project evaluation is synonymous with “project configuration” (the latter being the preferred term).
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  4. LICENSE

        7.  This requirement modifies the requirement in section 4 to
        "keep intact all notices".
    
        c) You must license the entire work, as a whole, under this
        License to anyone who comes into possession of a copy.  This
        License will therefore apply, along with any applicable section 7
        additional terms, to the whole of the work, and all its parts,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 23 18:58:53 UTC 2021
    - 33.7K bytes
    - Viewed (0)
  5. pkg/controller/statefulset/stateful_set.go

    		ssc.enqueueStatefulSet(set)
    		return
    	}
    
    	// Otherwise, it's an orphan. Get a list of all matching controllers and sync
    	// them to see if anyone wants to adopt it.
    	sets := ssc.getStatefulSetsForPod(pod)
    	if len(sets) == 0 {
    		return
    	}
    	logger.V(4).Info("Orphan Pod created with labels", "pod", klog.KObj(pod), "labels", pod.Labels)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  6. pkg/controller/deployment/deployment_controller.go

    		}
    		logger.V(4).Info("ReplicaSet added", "replicaSet", klog.KObj(rs))
    		dc.enqueueDeployment(d)
    		return
    	}
    
    	// Otherwise, it's an orphan. Get a list of all matching Deployments and sync
    	// them to see if anyone wants to adopt it.
    	ds := dc.getDeploymentsForReplicaSet(logger, rs)
    	if len(ds) == 0 {
    		return
    	}
    	logger.V(4).Info("Orphan ReplicaSet added", "replicaSet", klog.KObj(rs))
    	for _, d := range ds {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/telemetry/internal/upload/reports.go

    	for _, f := range files {
    		if err := os.Remove(f); err != nil {
    			// this could be a race condition.
    			// conversely, on Windows, err may be nil and
    			// the file not deleted if anyone has it open.
    			u.logger.Printf("%v failed to remove %s", err, f)
    		}
    	}
    }
    
    // createReport for all the count files for the same date.
    // returns the absolute path name of the file containing the report
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  8. pkg/registry/core/service/storage/storage.go

    	svc := obj.(*api.Service)
    
    	// Make sure ClusterIP and ClusterIPs are in sync.  This has to happen
    	// early, before anyone looks at them.
    	normalizeClusterIPs(After{svc}, Before{nil})
    
    	// Allocate IPs and ports. If we had a transactional store, this would just
    	// be part of the larger transaction.  We don't have that, so we have to do
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 13:09:33 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  9. maven-core/pom.xml

                  <!-- was only a workaround for Plexus Container, hopefully never used by anyone else -->
                  <exclude>org.apache.maven.plugin.DefaultBuildPluginManager#setMojoExecutionListeners(java.util.List)</exclude>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:06:12 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/deps/ClassSetAnalysisData.java

        /**
         * Returns the additions, changes and removals compared to the other class set.
         * Only includes changes that could possibly trigger recompilation.
         * For example, adding a new class can't affect anyone, since it didn't exist before.
         *
         * Does not include classes that are transitively affected by the additions/removals/changes.
         */
        public DependentsSet getChangedClassesSince(ClassSetAnalysisData other) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 15:22:57 UTC 2024
    - 15.9K bytes
    - Viewed (0)
Back to top