Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 2,948 for integers (0.34 sec)

  1. api/maven-api-model/src/main/java/org/apache/maven/api/model/InputLocation.java

         *
         * @param target the target location
         * @param source the source location
         * @param indices the list of integers for the indices
         * @return the merged location
         */
        public static InputLocation merge(InputLocation target, InputLocation source, Collection<Integer> indices) {
            if (source == null) {
                return target;
            } else if (target == null) {
                return source;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Sep 05 16:06:44 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/route/retry/retry.go

    	out.NumRetries = &wrappers.UInt32Value{Value: uint32(in.Attempts)}
    
    	if in.RetryOn != "" {
    		// Allow the incoming configuration to specify both Envoy RetryOn and RetriableStatusCodes. Any integers are
    		// assumed to be status codes.
    		out.RetryOn, out.RetriableStatusCodes = parseRetryOn(in.RetryOn)
    		// If user has just specified HTTP status codes in retryOn but have not specified "retriable-status-codes", let us add it.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 5K bytes
    - Viewed (0)
  3. src/os/exec_posix.go

    		code := status.ExitStatus()
    		if runtime.GOOS == "windows" && uint(code) >= 1<<16 { // windows uses large hex numbers
    			res = "exit status " + itoa.Uitox(uint(code))
    		} else { // unix systems use small decimal integers
    			res = "exit status " + itoa.Itoa(code) // unix
    		}
    	case status.Signaled():
    		res = "signal: " + status.Signal().String()
    	case status.Stopped():
    		res = "stop signal: " + status.StopSignal().String()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model_ops_invalid.mlir

        func.return
      }
    
    }
    
    // -----
    
    module attributes {tf_saved_model.semantics} {
    
      // expected-error@+1 {{'tf_saved_model.index_path' elements should be strings or 64-bit integers}}
      func.func @f(
        %arg0: tensor<f32> {tf_saved_model.index_path = [1.0] }
      ) attributes { tf_saved_model.exported_names = ["f"] } {
        func.return
      }
    
    }
    
    // -----
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 19 13:38:14 UTC 2022
    - 14.1K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/Combinators.kt

            }
        }
    
    
        internal
        val booleanLiteral =
            token(KtTokens.TRUE_KEYWORD) { true } + token(KtTokens.FALSE_KEYWORD) { false }
    
    
        /**
         * Can parse regular integers, unsigned integers, longs, unsigned longs, and HEX and BINARY representations as well.
         */
        internal
        val integerLiteral =
            token(KtTokens.INTEGER_LITERAL)
    
    
        internal
        val floatLiteral =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/celcoststability_test.go

    			obj: objs(
    				int64(5),      // val1, integer type, integer value
    				float64(10.0), // val4, number type, parsed from decimal literal
    				float64(10.0), // val5, float type, parsed from decimal literal
    				float64(10.0), // val6, double type, parsed from decimal literal
    				int64(10),     // val7, number type, parsed from integer literal
    				int64(10),     // val8, float type, parsed from integer literal
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:20:16 UTC 2024
    - 80.2K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/xposmap.go

    // The sparse skeleton is constructed once, and then reused by ssa phases
    // that (re)move values with statements attached.
    type xposmap struct {
    	// A map from file index to maps from line range to integers (block numbers)
    	maps map[int32]*biasedSparseMap
    	// The next two fields provide a single-item cache for common case of repeated lines from same file.
    	lastIndex int32            // -1 means no entry in cache
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 18:48:16 UTC 2019
    - 3.3K bytes
    - Viewed (0)
  8. src/runtime/mksizeclasses.go

    	max := c.npages * pageSize
    
    	// As reported in [1], if n and d are unsigned N-bit integers, we
    	// can compute n / d as ⌊n * c / 2^F⌋, where c is ⌈2^F / d⌉ and F is
    	// computed with:
    	//
    	// 	Algorithm 2: Algorithm to select the number of fractional bits
    	// 	and the scaled approximate reciprocal in the case of unsigned
    	// 	integers.
    	//
    	// 	if d is a power of two then
    	// 		Let F ← log₂(d) and c = 1.
    	// 	else
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:31:27 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/cache/CacheBuilderSpec.java

          }
          try {
            parseInteger(spec, Integer.parseInt(value));
          } catch (NumberFormatException e) {
            throw new IllegalArgumentException(
                format("key %s value set to %s, must be integer", key, value), e);
          }
        }
      }
    
      /** Base class for parsing integers. */
      abstract static class LongParser implements ValueParser {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Aug 22 14:27:44 UTC 2022
    - 18.1K bytes
    - Viewed (0)
  10. guava/src/com/google/common/cache/CacheBuilderSpec.java

          }
          try {
            parseInteger(spec, Integer.parseInt(value));
          } catch (NumberFormatException e) {
            throw new IllegalArgumentException(
                format("key %s value set to %s, must be integer", key, value), e);
          }
        }
      }
    
      /** Base class for parsing integers. */
      abstract static class LongParser implements ValueParser {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Aug 22 14:27:44 UTC 2022
    - 18.1K bytes
    - Viewed (0)
Back to top