Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 92 for for1 (0.3 sec)

  1. pkg/apis/core/types.go

    	//    a PersistentVolumeClaim (see EphemeralVolumeSource for more
    	//    information on the connection between this volume type
    	//    and PersistentVolumeClaim).
    	//
    	// Use PersistentVolumeClaim or one of the vendor-specific
    	// APIs for volumes that persist for longer than the lifecycle
    	// of an individual pod.
    	//
    	// Use CSI for light-weight local ephemeral volumes if the CSI driver is meant to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

    //
    // The main logic of this pattern is to calculate the index start and end range
    // for each slice. And this happens only on the dimension to be split; for all
    // other dimensions, all resultant slices' index start and end range covers the
    // input tensor's full range. Strides for all resultant slices are all one.
    //
    // For example, the following source IR:
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  3. pkg/apis/core/validation/validation.go

    	allNames := sets.Set[string]{}
    	allCreatedPVCs := sets.Set[string]{}
    	// Determine which PVCs will be created for this pod. We need
    	// the exact name of the pod for this. Without it, this sanity
    	// check has to be skipped.
    	if podMeta != nil && podMeta.Name != "" {
    		for _, vol := range volumes {
    			if vol.VolumeSource.Ephemeral != nil {
    				allCreatedPVCs.Insert(podMeta.Name + "-" + vol.Name)
    			}
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/types.go

    	//    a PersistentVolumeClaim (see EphemeralVolumeSource for more
    	//    information on the connection between this volume type
    	//    and PersistentVolumeClaim).
    	//
    	// Use PersistentVolumeClaim or one of the vendor-specific
    	// APIs for volumes that persist for longer than the lifecycle
    	// of an individual pod.
    	//
    	// Use CSI for light-weight local ephemeral volumes if the CSI driver is meant to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  5. src/net/http/h2_bundle.go

    // few people. Most users will use it indirectly through the automatic
    // use by the net/http package (from Go 1.6 and later).
    // For use in earlier Go versions see ConfigureServer. (Transport support
    // requires Go 1.6 or later)
    //
    // See https://http2.github.io/ for more information on HTTP/2.
    //
    // See https://http2.golang.org/ for a test server running this code.
    //
    // Copyright 2024 The Go Authors. All rights reserved.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/generated.proto

    message ComponentCondition {
      // Type of condition for a component.
      // Valid value: "Healthy"
      optional string type = 1;
    
      // Status of the condition for a component.
      // Valid values for "Healthy": "True", "False", or "Unknown".
      optional string status = 2;
    
      // Message about the condition for a component.
      // For example, information about a health check.
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/rewritePPC64.go

    	// result: x
    	for {
    		for _i0 := 0; _i0 <= 1; _i0, v_0, v_1 = _i0+1, v_1, v_0 {
    			x := v_0
    			if v_1.Op != OpPPC64MOVDconst || auxIntToInt64(v_1.AuxInt) != -1 {
    				continue
    			}
    			v.copyOf(x)
    			return true
    		}
    		break
    	}
    	// match: (AND x (MOVDconst [c]))
    	// cond: isU16Bit(c)
    	// result: (ANDconst [c] x)
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/rewriteARM.go

    	for {
    		for _i0 := 0; _i0 <= 1; _i0, v_0, v_1 = _i0+1, v_1, v_0 {
    			x := v_0
    			if v_1.Op != OpARMSRL {
    				continue
    			}
    			z := v_1.Args[1]
    			y := v_1.Args[0]
    			v.reset(OpARMADDshiftRLreg)
    			v.AddArg3(x, y, z)
    			return true
    		}
    		break
    	}
    	// match: (ADD x (SRA y z))
    	// result: (ADDshiftRAreg x y z)
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 486.8K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/core/v1/generated.proto

      // Valid values for "Healthy": "True", "False", or "Unknown".
      optional string status = 2;
    
      // Message about the condition for a component.
      // For example, information about a health check.
      // +optional
      optional string message = 3;
    
      // Condition error code for a component.
      // For example, a health check error code.
      // +optional
      optional string error = 4;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/rewrite386.go

    	// result: (LEAL8 x y)
    	for {
    		for _i0 := 0; _i0 <= 1; _i0, v_0, v_1 = _i0+1, v_1, v_0 {
    			x := v_0
    			if v_1.Op != Op386SHLLconst || auxIntToInt32(v_1.AuxInt) != 3 {
    				continue
    			}
    			y := v_1.Args[0]
    			v.reset(Op386LEAL8)
    			v.AddArg2(x, y)
    			return true
    		}
    		break
    	}
    	// match: (ADDL x (SHLLconst [2] y))
    	// result: (LEAL4 x y)
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 21:05:46 UTC 2023
    - 262.4K bytes
    - Viewed (0)
Back to top