Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 191 for Collins (0.2 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/ztypes_aix_ppc.go

    	Col    uint16
    	Xpixel uint16
    	Ypixel uint16
    }
    
    type PollFd struct {
    	Fd      int32
    	Events  uint16
    	Revents uint16
    }
    
    const (
    	POLLERR    = 0x4000
    	POLLHUP    = 0x2000
    	POLLIN     = 0x1
    	POLLNVAL   = 0x8000
    	POLLOUT    = 0x2
    	POLLPRI    = 0x4
    	POLLRDBAND = 0x20
    	POLLRDNORM = 0x10
    	POLLWRBAND = 0x40
    	POLLWRNORM = 0x2
    )
    
    type Flock_t struct {
    	Type   int16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ContinuousBuildToolingApiSpecification.groovy

                success = true
            } catch (Throwable t) {
                throw new RuntimeException("Timeout waiting for build to complete.", t)
            } finally {
                if (!success) {
                    println "Polling lasted ${(long) ((System.nanoTime() - pollingStartNanos) / 1000000L)} ms measured with monotonic clock"
                    requestJstackForBuildProcess()
                }
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  3. manifests/charts/istio-cni/templates/daemonset.yaml

              operator: Exists
            - effect: NoExecute
              operator: Exists
          priorityClassName: system-node-critical
          serviceAccountName: {{ template "name" . }}
          # Minimize downtime during a rolling upgrade or deletion; tell Kubernetes to do a "force
          # deletion": https://kubernetes.io/docs/concepts/workloads/pods/pod/#termination-of-pods.
          terminationGracePeriodSeconds: 5
          containers:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:29 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonFeedbackIntegrationSpec.groovy

            poll(60) {
                //in theory the client could have received result and complete
                // but the daemon has not yet finished processing hence polling
                def daemonLog = readLog(executer.daemonBaseDir)
                assert daemonLog.findAll(DaemonMessages.FINISHED_EXECUTING_COMMAND).size() == 1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  5. pkg/kubelet/prober/prober_manager_test.go

    			_, exists := m.getWorker(w.podUID, w.containerName, w.probeType)
    			return !exists, nil
    		}
    		if exited, _ := condition(); exited {
    			continue // Already exited, no need to poll.
    		}
    		t.Logf("Polling %v", w)
    		if err := wait.Poll(interval, wait.ForeverTestTimeout, condition); err != nil {
    			return err
    		}
    	}
    
    	return nil
    }
    
    // Wait for the given workers to exit & clean up.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  6. src/os/fifo_test.go

    	if _, err := w.WriteString(data); err != nil {
    		t.Fatalf("Error writing to fifo: %v", err)
    	}
    
    	// Close the writer after a short delay to open a gap for the reader
    	// of FIFO to fall into polling. See https://go.dev/issue/66239#issuecomment-1987620476
    	time.AfterFunc(200*time.Millisecond, func() {
    		if err := w.Close(); err != nil {
    			t.Errorf("Error closing writer: %v", err)
    		}
    	})
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:47:23 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/ztypes_dragonfly_amd64.go

    	AT_EACCESS          = 0x4
    	AT_SYMLINK_FOLLOW   = 0x8
    )
    
    type PollFd struct {
    	Fd      int32
    	Events  int16
    	Revents int16
    }
    
    const (
    	POLLERR    = 0x8
    	POLLHUP    = 0x10
    	POLLIN     = 0x1
    	POLLNVAL   = 0x20
    	POLLOUT    = 0x4
    	POLLPRI    = 0x2
    	POLLRDBAND = 0x80
    	POLLRDNORM = 0x40
    	POLLWRBAND = 0x100
    	POLLWRNORM = 0x4
    )
    
    type Utsname struct {
    	Sysname  [32]byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/wait/backoff.go

    	// Backoff() call finishes, the first timer will NOT be drained and result in undetermined
    	// behavior.
    	Backoff() clock.Timer
    }
    
    // Deprecated: Will be removed when the legacy polling functions are removed.
    type exponentialBackoffManagerImpl struct {
    	backoff              *Backoff
    	backoffTimer         clock.Timer
    	lastBackoffStart     time.Time
    	initialBackoff       time.Duration
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 19:14:11 UTC 2023
    - 16.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/reference/ci-systems/jenkins.adoc

    image::ci-systems/jenkins-build-scan.png[align=center]
    
    There are various options to trigger Jenkins builds continuously: from polling the repository periodically, to building on a set schedule, or via callback URL.
    
    == Further reading
    
    You can learn more about advanced Jenkins usage through these resources:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  10. src/runtime/netpoll_wasip1.go

    //   by using "clock" subscriptions.
    // - each FD subscription can either be for a read or a write, but not both.
    //   This is in contrast to poll(2) which accepts a mask with POLLIN and
    //   POLLOUT bits, allowing for a subscription to either, neither, or both
    //   reads and writes.
    //
    // Since poll_oneoff is similar to poll(2), the implementation here was derived
    // from netpoll_aix.go.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 18:23:49 UTC 2024
    - 6.1K bytes
    - Viewed (0)
Back to top