Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 236 for anyone (0.14 sec)

  1. 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)
  2. pkg/controller/daemon/daemon_controller.go

    		}
    		logger.V(4).Info("Observed a ControllerRevision", "controllerRevision", klog.KObj(history))
    		return
    	}
    
    	// Otherwise, it's an orphan. Get a list of all matching DaemonSets and sync
    	// them to see if anyone wants to adopt it.
    	daemonSets := dsc.getDaemonSetsForHistory(logger, history)
    	if len(daemonSets) == 0 {
    		return
    	}
    	logger.V(4).Info("Orphan ControllerRevision added", "controllerRevision", klog.KObj(history))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  3. src/sync/mutex.go

    		fatal("sync: unlock of unlocked mutex")
    	}
    	if new&mutexStarving == 0 {
    		old := new
    		for {
    			// If there are no waiters or a goroutine has already
    			// been woken or grabbed the lock, no need to wake anyone.
    			// In starvation mode ownership is directly handed off from unlocking
    			// goroutine to the next waiter. We are not part of this chain,
    			// since we did not observe mutexStarving when we unlocked the mutex above.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. platforms/documentation/docs/src/docs/userguide/reference/third_party_integration.adoc

    * <<test_kit.adoc#test_kit,Gradle TestKit>> uses the Tooling API for functional testing of your Gradle plugins.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  9. 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)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/publishing_gradle_plugins.adoc

    Publishing a plugin is the primary way to make it available for others to use.
    While you can publish to a private repository to restrict access, publishing to the https://plugins.gradle.org[{portal}] makes your plugin available to anyone in the world.
    
    image::plugin-portal-page.png[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 18:40:53 UTC 2024
    - 11.6K bytes
    - Viewed (0)
Back to top