Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for hard (0.26 sec)

  1. pkg/kubelet/eviction/helpers_test.go

    				}
    			}
    			if hardContainerFsMatch == -1 {
    				t.Fatalf("did not find hard containerfs.available")
    			}
    			if softContainerFsMatch == -1 {
    				t.Fatalf("did not find soft containerfs.available")
    			}
    			if hardContainerFsINodesMatch == -1 {
    				t.Fatalf("did not find hard containerfs.inodesfree")
    			}
    			if softContainerFsINodesMatch == -1 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 106.7K bytes
    - Viewed (0)
  2. pkg/apis/core/zz_generated.deepcopy.go

    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    func (in *ResourceQuotaSpec) DeepCopyInto(out *ResourceQuotaSpec) {
    	*out = *in
    	if in.Hard != nil {
    		in, out := &in.Hard, &out.Hard
    		*out = make(ResourceList, len(*in))
    		for key, val := range *in {
    			(*out)[key] = val.DeepCopy()
    		}
    	}
    	if in.Scopes != nil {
    		in, out := &in.Scopes, &out.Scopes
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    func (in *ResourceQuotaSpec) DeepCopyInto(out *ResourceQuotaSpec) {
    	*out = *in
    	if in.Hard != nil {
    		in, out := &in.Hard, &out.Hard
    		*out = make(ResourceList, len(*in))
    		for key, val := range *in {
    			(*out)[key] = val.DeepCopy()
    		}
    	}
    	if in.Scopes != nil {
    		in, out := &in.Scopes, &out.Scopes
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  4. pkg/printers/internalversion/printers.go

    	row := metav1.TableRow{
    		Object: runtime.RawExtension{Object: resourceQuota},
    	}
    
    	resources := make([]api.ResourceName, 0, len(resourceQuota.Status.Hard))
    	for resource := range resourceQuota.Status.Hard {
    		resources = append(resources, resource)
    	}
    	sort.Sort(SortableResourceNames(resources))
    
    	requestColumn := bytes.NewBuffer([]byte{})
    	limitColumn := bytes.NewBuffer([]byte{})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  5. src/cmd/go/internal/work/exec.go

    		args := []string{"-mabi=64"}
    		if cfg.GOMIPS64 == "hardfloat" {
    			return append(args, "-mhard-float")
    		} else if cfg.GOMIPS64 == "softfloat" {
    			return append(args, "-msoft-float")
    		}
    	case "mips", "mipsle":
    		args := []string{"-mabi=32", "-march=mips32"}
    		if cfg.GOMIPS == "hardfloat" {
    			return append(args, "-mhard-float", "-mfp32", "-mno-odd-spreg")
    		} else if cfg.GOMIPS == "softfloat" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  6. src/cmd/go/internal/load/pkg.go

    	Pos              string   // position of error
    	Err              error    // the error itself
    	IsImportCycle    bool     // the error is an import cycle
    	Hard             bool     // whether the error is soft or hard; soft errors are ignored in some places
    	alwaysPrintStack bool     // whether to always print the ImportStack
    }
    
    func (p *PackageError) Error() string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  7. pkg/kubelet/eviction/eviction_manager_test.go

    			}
    
    			// we should not have disk pressure
    			if manager.IsUnderDiskPressure() {
    				t.Errorf("Manager should not report disk pressure")
    			}
    
    			// induce hard threshold
    			fakeClock.Step(1 * time.Minute)
    
    			setDiskStatsBasedOnFs := func(whichFs string, diskPressure string, diskStat diskStats) diskStats {
    				if tc.inducePressureOnWhichFs == "nodefs" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  8. src/net/http/server.go

    func (ecr *expectContinueReader) Close() error {
    	ecr.closed.Store(true)
    	return ecr.readCloser.Close()
    }
    
    // TimeFormat is the time format to use when generating times in HTTP
    // headers. It is like [time.RFC1123] but hard-codes GMT as the time
    // zone. The time being formatted must be in UTC for Format to
    // generate the correct format.
    //
    // For parsing this time format, see [ParseTime].
    const TimeFormat = "Mon, 02 Jan 2006 15:04:05 GMT"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

    // sense that one is an incremental change over the other.
    // In reality NonMaxSuppressionV5 implements Soft Non Max Suppression and
    // NonMaxSuppressionV4 performs hard NMS.
    
    def TFL_NonMaxSuppressionV4Op : TFL_Op<"non_max_suppression_v4", [
      Pure,
      // Operand 0 (boxes) should have rank 2 with the dim[1] == 4 (box corners)
      TFL_OperandHasRank<0, 2>,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  10. pkg/volume/util/operationexecutor/operation_generator.go

    						volumeSpecMap[spec], spec.Name(), nodeName)
    				}
    			}
    		}
    
    		// It is hard to differentiate migrated status for all volumes for verify_volumes_are_attached_per_node
    		return volumetypes.NewOperationContext(nil, nil, false)
    	}
    
    	return volumetypes.GeneratedOperations{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
Back to top