Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for wmin (0.66 sec)

  1. platforms/software/dependency-management/src/main/resources/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/uikit-icons.min.js

    Tom Tresansky <******@****.***> 1696954098 -0400
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 62.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test_base.py

                  x,
                  min=ops.convert_to_tensor(self._min[0]),
                  max=ops.convert_to_tensor(self._max[0]),
                  num_bits=8,
                  narrow_range=False,
              )
              y = array_ops.fake_quant_with_min_max_vars(
                  y,
                  min=ops.convert_to_tensor(self._min[1]),
                  max=ops.convert_to_tensor(self._max[1]),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 08:51:46 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/riscv/obj.go

    	}
    
    	low = signExtend(imm, 12)
    	high = signExtend(high, 20)
    
    	return low, high, nil
    }
    
    func regVal(r, min, max uint32) uint32 {
    	if r < min || r > max {
    		panic(fmt.Sprintf("register out of range, want %d <= %d <= %d", min, r, max))
    	}
    	return r - min
    }
    
    // regI returns an integer register.
    func regI(r uint32) uint32 {
    	return regVal(r, REG_X0, REG_X31)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  4. pkg/scheduler/internal/queue/scheduling_queue.go

    	// time a pod can stay in unschedulablePods. If a pod stays in unschedulablePods
    	// for longer than this value, the pod will be moved from unschedulablePods to
    	// backoffQ or activeQ. If this value is empty, the default value (5min)
    	// will be used.
    	DefaultPodMaxInUnschedulablePodsDuration time.Duration = 5 * time.Minute
    	// Scheduling queue names
    	activeQ           = "Active"
    	backoffQ          = "Backoff"
    	unschedulablePods = "Unschedulable"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
Back to top