Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for anotherOk (0.61 sec)

  1. prow/config/calico.yaml

                      has done a write to the dataplane that it schedules an extra read
                      back in order to check the write was not clobbered by another process.
                      This should only occur if another application on the system doesn''t
                      respect the iptables lock. [Default: 1s]'
                    pattern: ^([0-9]+(\\.[0-9]+)?(ms|s|m|h))*$
                    type: string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  2. api/openapi-spec/v3/apis__batch__v1_openapi.json

                  {
                    "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time"
                  }
                ],
                "description": "Last time the condition transit from one status to another."
              },
              "message": {
                "description": "Human readable message indicating details about last transition.",
                "type": "string"
              },
              "reason": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  3. ChangeLog.md

    - [`KT-65240`](https://youtrack.jetbrains.com/issue/KT-65240) K2: CodeGen API fails to resolve Annotation parameter type when it runs FIR2IR for a class with a parent class from other module if the parent class has an annotation from another module
    - [`KT-65344`](https://youtrack.jetbrains.com/issue/KT-65344) K2: make FirScript statements (declarations) independent
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  4. doc/go_spec.html

    Similarly, given the set of all non-interface types that implement a particular method, the
    intersection of the method sets of those types will contain exactly that method, even if all
    types in the program at hand always pair that method with another method.
    </p>
    
    <p>
    By construction, an interface's type set never contains an interface type.
    </p>
    
    <pre>
    // An interface representing only the type int.
    interface {
    	int
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    }
    
    func (AzureFileVolumeSource) SwaggerDoc() map[string]string {
    	return map_AzureFileVolumeSource
    }
    
    var map_Binding = map[string]string{
    	"":         "Binding ties one object to another; for example, a pod is bound to a node by a scheduler. Deprecated in 1.7, please use the bindings subresource of pods instead.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  6. pkg/proxy/iptables/proxier_test.go

    						},
    						NodeName: ptr.To("another-host"),
    					},
    					{
    						// this endpoint should be ignored since it is not "serving"
    						Addresses: []string{"10.0.1.4"},
    						Conditions: discovery.EndpointConditions{
    							Ready:       ptr.To(false),
    							Serving:     ptr.To(false),
    							Terminating: ptr.To(true),
    						},
    						NodeName: ptr.To("another-host"),
    					},
    					{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/generated.proto

      // readOnly defaults to false (read/write). ReadOnly here will force
      // the ReadOnly setting in VolumeMounts.
      // +optional
      optional bool readOnly = 3;
    }
    
    // Binding ties one object to another; for example, a pod is bound to a node by a scheduler.
    // Deprecated in 1.7, please use the bindings subresource of pods instead.
    message Binding {
      // Standard object's metadata.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/types.go

    // PersistentVolumeClaimVolumeSource references the user's PVC in the same namespace.
    // This volume finds the bound PV and mounts that volume for the pod. A
    // PersistentVolumeClaimVolumeSource is, essentially, a wrapper around another
    // type of volume that is owned by someone else (the system).
    type PersistentVolumeClaimVolumeSource struct {
    	// claimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  9. pkg/apis/core/types.go

    	// Reason is a brief CamelCase string that describes any failure and is meant for machine parsing and tidy display in the CLI
    	// +optional
    	Reason string
    	// LastPhaseTransitionTime is the time the phase transitioned from one to another
    	// and automatically resets to current time everytime a volume phase transitions.
    	// This is a beta field and requires the PersistentVolumeLastPhaseTransitionTime feature to be enabled (enabled by default).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  10. src/net/http/h2_bundle.go

    }
    
    // requires p.mu is held.
    func (p *http2clientConnPool) getStartDialLocked(ctx context.Context, addr string) *http2dialCall {
    	if call, ok := p.dialing[addr]; ok {
    		// A dial is already in-flight. Don't start another.
    		return call
    	}
    	call := &http2dialCall{p: p, done: make(chan struct{}), ctx: ctx}
    	if p.dialing == nil {
    		p.dialing = make(map[string]*http2dialCall)
    	}
    	p.dialing[addr] = call
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
Back to top