Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 530 for fries (0.04 sec)

  1. src/cmd/go/testdata/script/mod_insecure_issue63845.txt

    # (vcs-test.golang.org), because the hook for redirecting to that
    # server bypasses the "ping to determine protocol" logic
    # in cmd/go/internal/vcs.
    
    [!net:golang.org] skip
    [!git] skip
    [short] skip 'tries to access a nonexistent external Git repo'
    
    env GOPRIVATE=golang.org
    env CURLOPT_TIMEOUT_MS=100
    env GIT_SSH_COMMAND=false
    
    ! go get -x golang.org/nonexist.git@latest
    stderr '^git ls-remote https://golang.org/nonexist$'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 21:10:03 UTC 2023
    - 908 bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/eventclock/real.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package eventclock
    
    import (
    	"time"
    
    	"k8s.io/utils/clock"
    )
    
    // RealEventClock fires event on real world time
    type Real struct {
    	clock.RealClock
    }
    
    var _ Interface = Real{}
    
    // EventAfterDuration schedules an EventFunc
    func (Real) EventAfterDuration(f EventFunc, d time.Duration) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Aug 07 04:07:31 UTC 2021
    - 1K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/execution/ExecutionListener.java

     * KIND, either express or implied.  See the License for the
     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.execution;
    
    /**
     * Defines events that Maven fires during a build. <strong>Warning:</strong> This interface might be extended in future
     * Maven versions to support further events. Hence it is strongly recommended to derive custom listeners from
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/api/services/model/ModelBuildingListener.java

     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.api.services.model;
    
    /**
     * Defines events that the model builder fires during construction of the effective model. When a listener encounters
     * errors while processing the event, it can report these problems via {@link ModelBuildingEvent#problems()}.
     */
    public interface ModelBuildingListener {
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  5. src/runtime/netpoll_stub.go

    func netpoll(delay int64) (gList, int32) {
    	// Implementation for platforms that do not support
    	// integrated network poller.
    	if delay != 0 {
    		// This lock ensures that only one goroutine tries to use
    		// the note. It should normally be completely uncontended.
    		lock(&netpollStubLock)
    
    		lock(&netpollBrokenLock)
    		noteclear(&netpollNote)
    		netpollBroken = false
    		unlock(&netpollBrokenLock)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/util/initsystem/initsystem_windows.go

    // EnableCommand return a string describing how to enable a service
    func (sysd WindowsInitSystem) EnableCommand(service string) string {
    	return fmt.Sprintf("Set-Service '%s' -StartupType Automatic", service)
    }
    
    // ServiceStart tries to start a specific service
    // Following Windows documentation: https://docs.microsoft.com/en-us/windows/desktop/Services/starting-a-service
    func (sysd WindowsInitSystem) ServiceStart(service string) error {
    	m, err := mgr.Connect()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 08:56:16 UTC 2022
    - 6.4K bytes
    - Viewed (0)
  7. pkg/controller/garbagecollector/patch.go

    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/kubernetes/pkg/controller/garbagecollector/metaonly"
    )
    
    // getMetadata tries getting object metadata from local cache, and sends GET request to apiserver when
    // local cache is not available or not latest.
    func (gc *GarbageCollector) getMetadata(apiVersion, kind, namespace, name string) (metav1.Object, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 05 13:33:52 UTC 2021
    - 5.6K bytes
    - Viewed (0)
  8. pkg/kubelet/volumemanager/reconciler/reconstruct.go

    	// calling unmount with a wrong devicePath.
    	if len(rc.volumesNeedUpdateFromNodeStatus) != 0 {
    		return false
    	}
    	return true
    }
    
    // reconstructVolumes tries to reconstruct the actual state of world by scanning all pods' volume
    // directories from the disk. For the volumes that cannot support or fail reconstruction, it will
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:23:12 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/artifacts/VersionCatalogsExtension.java

    import java.util.Set;
    
    /**
     * Gives access to all version catalogs available.
     *
     * @since 7.0
     */
    public interface VersionCatalogsExtension extends Iterable<VersionCatalog> {
    
        /**
         * Tries to find a catalog with the corresponding name
         * @param name the name of the catalog
         */
        Optional<VersionCatalog> find(String name);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 27 23:38:43 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  10. internal/lsync/lrwmutex.go

    // blocks until the mutex is available.
    func (lm *LRWMutex) Lock() {
    	const isWriteLock = true
    	lm.lockLoop(context.Background(), lm.id, lm.source, math.MaxInt64, isWriteLock)
    }
    
    // GetLock tries to get a write lock on lm before the timeout occurs.
    func (lm *LRWMutex) GetLock(ctx context.Context, id string, source string, timeout time.Duration) (locked bool) {
    	const isWriteLock = true
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Jan 02 17:15:06 UTC 2022
    - 4.8K bytes
    - Viewed (0)
Back to top