Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 153 for anyone (0.12 sec)

  1. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/HasInternalProtocol.java

     *
     * This should only be used on a type that is always assumed to also implement the internal protocol by Gradle internals.
     *
     * This exists to help anyone reading the source code realise that there is an internal component to the type.
     */
    @Retention(RetentionPolicy.SOURCE)
    @Target({ElementType.TYPE})
    public @interface HasInternalProtocol {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  2. docs/en/docs/fastapi-cli.md

    ## `fastapi run`
    
    When you run `fastapi run`, it will run on production mode by default.
    
    It will have **auto-reload disabled** by default.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Jun 12 23:39:50 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top