Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 101 for conditional (0.21 sec)

  1. pkg/kubelet/kubelet.go

    	} else {
    		// Set nil if the container runtime network is ready.
    		kl.runtimeState.setNetworkState(nil)
    	}
    	// information in RuntimeReady condition will be propagated to NodeReady condition.
    	runtimeReady := s.GetRuntimeCondition(kubecontainer.RuntimeReady)
    	// If RuntimeReady is not set or is false, report an error.
    	if runtimeReady == nil || !runtimeReady.Status {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  2. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1alpha1_openapi.json

              },
              "matchConditions": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 235.4K bytes
    - Viewed (0)
  3. cmd/admin-handlers.go

    	owner := cred.AccessKey == globalActiveCred.AccessKey
    
    	// Set prefix value for "s3:prefix" policy conditionals.
    	r.Header.Set("prefix", "")
    
    	// Set delimiter value for "s3:delimiter" policy conditionals.
    	r.Header.Set("delimiter", SlashSeparator)
    
    	isAllowedAccess := func(bucketName string) (rd, wr bool) {
    		if globalIAMSys.IsAllowed(policy.Args{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  4. src/net/http/serve_test.go

    	ts := newClientServerTest(t, mode, HandlerFunc(func(w ResponseWriter, r *Request) {
    		// Note using r.FormValue("readbody") because for POST
    		// requests that would read from r.Body, which we only
    		// conditionally want to do.
    		if strings.Contains(r.URL.RawQuery, "readbody=true") {
    			io.ReadAll(r.Body)
    			w.Write([]byte("Hi"))
    		} else {
    			w.WriteHeader(StatusUnauthorized)
    		}
    	})).ts
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

        http://www.apache.org/licenses/LICENSE-2.0
    
    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    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.
    ==============================================================================*/
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__apiregistration.k8s.io__v1_openapi.json

                ],
                "description": "Last time the condition transitioned from one status to another."
              },
              "message": {
                "description": "Human-readable message indicating details about last transition.",
                "type": "string"
              },
              "reason": {
                "description": "Unique, one-word, CamelCase reason for the condition's last transition.",
                "type": "string"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 135.1K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet_test.go

    ) *TestKubelet {
    	logger, _ := ktesting.NewTestContext(t)
    
    	fakeRuntime := &containertest.FakeRuntime{
    		ImageList: imageList,
    		// Set ready conditions by default.
    		RuntimeStatus: &kubecontainer.RuntimeStatus{
    			Conditions: []kubecontainer.RuntimeCondition{
    				{Type: "RuntimeReady", Status: true},
    				{Type: "NetworkReady", Status: true},
    			},
    		},
    		VersionInfo: "1.5.0",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__discovery.k8s.io__v1_openapi.json

                "type": "array",
                "x-kubernetes-list-type": "set"
              },
              "conditions": {
                "allOf": [
                  {
                    "$ref": "#/components/schemas/io.k8s.api.discovery.v1.EndpointConditions"
                  }
                ],
                "default": {},
                "description": "conditions contains information about the current status of the endpoint."
              },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 146.6K bytes
    - Viewed (0)
  9. src/runtime/proc.go

    	throw("ctxt != 0")
    }
    
    // gcrash is a fake g that can be used when crashing due to bad
    // stack conditions.
    var gcrash g
    
    var crashingG atomic.Pointer[g]
    
    // Switch to crashstack and call fn, with special handling of
    // concurrent and recursive cases.
    //
    // Nosplit as it is called in a bad stack condition (we know
    // morestack would fail).
    //
    //go:nosplit
    //go:nowritebarrierrec
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  10. pkg/apis/batch/validation/validation_test.go

        http://www.apache.org/licenses/LICENSE-2.0
    
    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    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 validation
    
    import (
    	"errors"
    	_ "time/tzdata"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 124.3K bytes
    - Viewed (0)
Back to top