Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 28 of 28 for integers (0.25 sec)

  1. pkg/kubelet/kubelet.go

    		}
    		kubeInformers.Start(wait.NeverStop)
    		klog.InfoS("Attempting to sync node with API server")
    	} else {
    		// we don't have a client to sync!
    		nodeIndexer := cache.NewIndexer(cache.MetaNamespaceKeyFunc, cache.Indexers{})
    		nodeLister = corelisters.NewNodeLister(nodeIndexer)
    		nodeHasSynced = func() bool { return true }
    		klog.InfoS("Kubelet is running in standalone mode, will skip API server sync")
    	}
    
    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. pkg/config/validation/validation.go

    	}
    	if retries.RetryOn != "" {
    		retryOnPolicies := strings.Split(retries.RetryOn, ",")
    		for _, policy := range retryOnPolicies {
    			// Try converting it to an integer to see if it's a valid HTTP status code.
    			i, _ := strconv.Atoi(policy)
    
    			if http.StatusText(i) == "" && !supportedRetryOnPolicies.Contains(policy) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/tests/uniform-quantized-stablehlo-to-tfl.mlir

    // ============================================================================
    // The following functions tests example quantization patterns outputted from
    // JAX Quantizer. JAX Quantizer should output integer types, which are
    // composed into `UniformQuantized{|PerAxis}Type` via
    // `compose_uniform_quantized_type_pass.cc`.
    // ============================================================================
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 17:10:32 UTC 2024
    - 106.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    }
    
    // Literal is a literal in an expression.
    type Literal struct {
    	Type AST
    	Val  string
    	Neg  bool
    }
    
    // Suffixes to use for constants of the given integer type.
    var builtinTypeSuffix = map[string]string{
    	"int":                "",
    	"unsigned int":       "u",
    	"long":               "l",
    	"unsigned long":      "ul",
    	"long long":          "ll",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  5. cluster/gce/gci/configure-helper.sh

        LOG_START_TIMES["${bootstep}"]="${current_time}"
      else
        local start_time="${LOG_START_TIMES["${bootstep}"]}"
        unset 'LOG_START_TIMES['"${bootstep}"']'
    
        # Bash cannot do non-integer math, shell out to awk.
        latency="$(echo "${current_time} ${start_time}" | awk '{print $1 - $2}')s"
    
        # The default latency is null which cannot be wrapped as a string so we must
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    // and ARM Manual says FCMP instruction sets PSTATE.<N,Z,C,V>
    // of this case to (0, 0, 1, 1).
    (Less32F x y) => (LessThanF (FCMPS x y))
    (Less64F x y) => (LessThanF (FCMPD x y))
    
    // For an unsigned integer x, the following rules are useful when combining branch
    // 0 <  x  =>  x != 0
    // x <= 0  =>  x == 0
    // x <  1  =>  x == 0
    // 1 <= x  =>  x != 0
    (Less(8U|16U|32U|64U) zero:(MOVDconst [0]) x) => (Neq(8|16|32|64) zero x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  7. src/cmd/go/alldocs.go

    //	    Randomize the execution order of tests and benchmarks.
    //	    It is off by default. If -shuffle is set to on, then it will seed
    //	    the randomizer using the system clock. If -shuffle is set to an
    //	    integer N, then N will be used as the seed value. In both cases,
    //	    the seed will be reported for reproducibility.
    //
    //	-skip regexp
    //	    Run only those tests, examples, fuzz tests, and benchmarks that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  8. src/runtime/proc.go

    	// typically on the order of 1 ms or more.
    	osHasLowResTimer = GOOS == "windows" || GOOS == "openbsd" || GOOS == "netbsd"
    
    	// osHasLowResClockInt is osHasLowResClock but in integer form, so it can be used to create
    	// constants conditionally.
    	osHasLowResClockInt = goos.IsWindows
    
    	// osHasLowResClock indicates that timestamps produced by nanotime on the platform have a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
Back to top