Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 342 for strobe (0.12 sec)

  1. test/chan/nonblock.go

    func breceiver(c chan bool, strobe chan bool) {
    	if !<-c {
    		panic("b value")
    	}
    	strobe <- true
    }
    
    func bsender(c chan bool, strobe chan bool) {
    	c <- true
    	strobe <- true
    }
    
    func sreceiver(c chan string, strobe chan bool) {
    	if <-c != "hello" {
    		panic("s value")
    	}
    	strobe <- true
    }
    
    func ssender(c chan string, strobe chan bool) {
    	c <- "hello again"
    	strobe <- true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Feb 19 06:44:02 UTC 2012
    - 3.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/html.go

    ellipse.outline-blue           { stroke-width: 2px; stroke: #2893ff; }
    ellipse.outline-red            { stroke-width: 2px; stroke: red; }
    ellipse.outline-blueviolet     { stroke-width: 2px; stroke: blueviolet; }
    ellipse.outline-darkolivegreen { stroke-width: 2px; stroke: darkolivegreen; }
    ellipse.outline-fuchsia        { stroke-width: 2px; stroke: fuchsia; }
    ellipse.outline-sienna         { stroke-width: 2px; stroke: sienna; }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 15:11:40 UTC 2023
    - 34.8K bytes
    - Viewed (0)
  3. architecture/platforms.md

        documentation["documentation module"]
        style documentation stroke:#1abc9c,fill:#b1f4e7,stroke-width:2px,color:#000;
    
        ide["ide module"]
        style ide stroke:#1abc9c,fill:#b1f4e7,stroke-width:2px,color:#000;
    
        subgraph software["software platform"]
        end
        style software fill:#c2e0f4,stroke:#3498db,stroke-width:2px,color:#000;
        software --> core
    
        subgraph jvm["jvm platform"]
        end
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 06:42:46 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/configurationCache/problemsFixed/tests/store.out

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 154 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/configurationCache/problemsGroovy/tests/store.out

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 568 bytes
    - Viewed (0)
  6. staging/src/k8s.io/client-go/applyconfigurations/core/v1/probe.go

    	TerminationGracePeriodSeconds  *int64 `json:"terminationGracePeriodSeconds,omitempty"`
    }
    
    // ProbeApplyConfiguration constructs an declarative configuration of the Probe type for use with
    // apply.
    func Probe() *ProbeApplyConfiguration {
    	return &ProbeApplyConfiguration{}
    }
    
    // WithExec sets the Exec field in the declarative configuration to the given value
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 17 17:31:23 UTC 2021
    - 5.7K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/configurationCache/projectAtExecution/tests/store.out

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 174 bytes
    - Viewed (0)
  8. pilot/cmd/pilot-agent/status/ready/probe.go

    }
    
    type Prober interface {
    	// Check executes the probe and returns an error if the probe fails.
    	Check() error
    }
    
    var _ Prober = &Probe{}
    
    // Check executes the probe and returns an error if the probe fails.
    func (p *Probe) Check() error {
    	// First, check that Envoy has received a configuration update from Pilot.
    	if err := p.checkConfigStatus(); err != nil {
    		return err
    	}
    	return p.isEnvoyReady()
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 00:35:05 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  9. pkg/probe/probe.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package probe
    
    // Result is a string used to handle the results for probing container readiness/liveness
    type Result string
    
    const (
    	// Success Result
    	Success Result = "success"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 03:20:50 UTC 2019
    - 966 bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    	DestroyFunc func()
    }
    
    // Note: the rest.StandardStorage interface aggregates the common REST verbs
    var _ rest.StandardStorage = &Store{}
    var _ rest.TableConvertor = &Store{}
    var _ GenericStore = &Store{}
    
    var _ rest.SingularNameProvider = &Store{}
    
    const (
    	OptimisticLockErrorMsg        = "the object has been modified; please apply your changes to the latest version and try again"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
Back to top