Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 518 for numeric (0.1 sec)

  1. staging/src/k8s.io/apiserver/pkg/endpoints/deprecation/deprecation_test.go

    			expectMajor: 0,
    			expectMinor: 0,
    			expectErr:   true,
    		},
    		{
    			name:        "non-numeric major",
    			v:           version.Info{Major: "A", Minor: "0"},
    			expectMajor: 0,
    			expectMinor: 0,
    			expectErr:   true,
    		},
    		{
    			name:        "non-numeric minor",
    			v:           version.Info{Major: "1", Minor: "A"},
    			expectMajor: 0,
    			expectMinor: 0,
    			expectErr:   true,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 11 20:04:19 UTC 2020
    - 8.5K bytes
    - Viewed (0)
  2. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/DefaultConfigurableFilePermissions.java

                return trimmed.substring(1);
            }
            if (trimmed.length() != 3 && trimmed.length() != 9) {
                throw new IllegalArgumentException("Trimmed length must be either 3 (for numeric notation) or 9 (for symbolic notation).");
            }
            return trimmed;
        }
    
        private static int toUnixNumericPermissions(String permissions) {
            try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  3. src/os/user/listgroups_unix.go

    			continue
    		}
    
    		// groupname:password:GID
    		parts := bytes.Split(line[:listIdx], colon)
    		if len(parts) != 3 || len(parts[0]) == 0 {
    			continue
    		}
    		gid := string(parts[2])
    		// Make sure it's numeric and not the same as primary GID.
    		numGid, err := strconv.Atoi(gid)
    		if err != nil || numGid == primaryGid {
    			continue
    		}
    
    		groups = append(groups, gid)
    	}
    
    	return groups, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 07 23:34:21 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  4. test/typeparam/list.go

    }
    
    type OrderedNum interface {
    	~int | ~int8 | ~int16 | ~int32 | ~int64 |
    		~uint | ~uint8 | ~uint16 | ~uint32 | ~uint64 | ~uintptr |
    		~float32 | ~float64
    }
    
    // _ListNum is a linked _List of ordered numeric values of type T.
    type _ListNum[T OrderedNum] struct {
    	next *_ListNum[T]
    	val  T
    }
    
    const Clip = 5
    
    // ClippedLargest returns the largest in the list of OrderNums, but a max of 5.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Dec 03 17:08:51 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/html/HtmlEscapers.java

       *
       * <p><b>Note:</b> This escaper only performs minimal escaping to make content structurally
       * compatible with HTML. Specifically, it does not perform entity replacement (symbolic or
       * numeric), so it does not replace non-ASCII code points with character references. This escaper
       * escapes only the following five ASCII characters: {@code '"&<>}.
       */
      public static Escaper htmlEscaper() {
        return HTML_ESCAPER;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 14 22:08:54 UTC 2021
    - 3K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java

        /** The key of the message: {item} should be numeric. */
        public static final String CONSTRAINTS_TypeInteger_MESSAGE = "{constraints.TypeInteger.message}";
    
        /** The key of the message: {item} should be numeric. */
        public static final String CONSTRAINTS_TypeLong_MESSAGE = "{constraints.TypeLong.message}";
    
        /** The key of the message: {item} should be numeric. */
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/text/internal/tag/tag.go

    // Package tag contains functionality handling tags and related data.
    package tag // import "golang.org/x/text/internal/tag"
    
    import "sort"
    
    // An Index converts tags to a compact numeric value.
    //
    // All elements are of size 4. Tags may be up to 4 bytes long. Excess bytes can
    // be used to store additional information about the tag.
    type Index string
    
    // Elem returns the element data at the given index.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/file/FilePermissions.java

         * <p>
         * For further details about possible actions see {@link UserClassFilePermissions}.
         */
        UserClassFilePermissions getOther();
    
        /**
         * Converts the permissions for the various user groups to a numeric Unix permission.
         * See {@link ConfigurableFilePermissions#unix(String)} for details.
         */
        int toUnixNumeric();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 12:31:43 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/batchmatmul_to_einsum.cc

    limitations under the License.
    ==============================================================================*/
    
    #include <climits>
    #include <cstdint>
    #include <numeric>
    
    #include "absl/memory/memory.h"
    #include "llvm/ADT/ArrayRef.h"
    #include "llvm/ADT/STLExtras.h"
    #include "llvm/ADT/StringSwitch.h"
    #include "llvm/Support/Casting.h"
    #include "llvm/Support/Debug.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  10. tensorflow/cc/gradients/math_grad_test.cc

      // is unstable and might cause problems for the numeric estimator.
      auto x2 =
          Div(scope_, x1, Add(scope_, Const<float>(scope_, 1), Abs(scope_, x1)));
      auto y = Atan2(scope_, x1, x2);
      RunTest({x1}, {shape}, {y}, {shape});
    }
    
    // Deterministic test value for UnsortedSegmentMin/Max, since the numerical
    // gradient can be wrong if the compared inputs are nearly the same (which can
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 25 18:20:20 UTC 2023
    - 36K bytes
    - Viewed (0)
Back to top