Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 518 for numeric (0.16 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/README.md

    for the old system). This program takes in a list of header files containing the
    syscall number declarations and parses them to produce the corresponding list of
    Go numeric constants. See `zsysnum_${GOOS}_${GOARCH}.go` for the generated
    constants.
    
    Adding new syscall numbers is mostly done by running the build on a sufficiently
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 06 14:32:58 UTC 2021
    - 8.5K bytes
    - Viewed (0)
  2. src/os/file_plan9.go

    }
    
    // Lchown changes the numeric uid and gid of the named file.
    // If the file is a symbolic link, it changes the uid and gid of the link itself.
    // If there is an error, it will be of type *PathError.
    func Lchown(name string, uid, gid int) error {
    	return &PathError{Op: "lchown", Path: name, Err: syscall.EPLAN9}
    }
    
    // Chown changes the numeric uid and gid of the named file.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:35:30 UTC 2024
    - 16K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/init_text_file_to_import.cc

    See the License for the specific language governing permissions and
    limitations under the License.
    ==============================================================================*/
    
    #include <numeric>
    
    #include "llvm/ADT/StringExtras.h"
    #include "llvm/Support/Casting.h"
    #include "llvm/Support/MemoryBuffer.h"
    #include "mlir/Dialect/Arith/IR/Arith.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 03 12:35:38 UTC 2022
    - 6.1K bytes
    - Viewed (0)
  4. internal/s3select/sql/funceval.go

    	if v1.IsNull() || v2.IsNull() {
    		return v1, nil
    	}
    
    	err = inferTypesForCmp(v1, v2)
    	if err != nil {
    		return nil, err
    	}
    
    	atleastOneNumeric := v1.isNumeric() || v2.isNumeric()
    	bothNumeric := v1.isNumeric() && v2.isNumeric()
    	if atleastOneNumeric || !bothNumeric {
    		return v1, nil
    	}
    
    	if v1.SameTypeAs(*v2) {
    		return v1, nil
    	}
    
    	cmpResult, cmpErr := v1.compareOp(opEq, v2)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 01 21:59:40 UTC 2021
    - 13.2K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/internal/binutils/addr2liner_nm.go

    func newAddr2LinerNM(cmd, file string, base uint64) (*addr2LinerNM, error) {
    	if cmd == "" {
    		cmd = defaultNM
    	}
    	var b bytes.Buffer
    	c := exec.Command(cmd, "--numeric-sort", "--print-size", "--format=posix", file)
    	c.Stdout = &b
    	if err := c.Run(); err != nil {
    		return nil, err
    	}
    	return parseAddr2LinerNM(base, &b)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 15 19:02:39 UTC 2021
    - 4K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/file/FileSystemOperations.java

         *
         * @since 8.3
         */
        ConfigurableFilePermissions permissions(String unixNumericOrSymbolic);
    
        /**
         * Creates file/directory access permissions and initializes them via a Unix style numeric permissions.
         * For details see {@link ConfigurableFilePermissions#unix(int)}.
         * <p>
         * Doesn't have separate variants for files and directories, like other configuration methods,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 15 08:02:27 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/common/ir/QuantOps.cc

    limitations under the License.
    ==============================================================================*/
    
    #include "tensorflow/compiler/mlir/quantization/common/ir/QuantOps.h"
    
    #include <numeric>
    
    #include "llvm/ADT/StringRef.h"
    #include "llvm/ADT/Twine.h"
    #include "llvm/Support/MathExtras.h"
    #include "mlir/Dialect/Quant/QuantTypes.h"  // from @llvm-project
    #include "mlir/IR/BuiltinTypes.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/quantization/ir/QuantOps.cc

    limitations under the License.
    ==============================================================================*/
    
    #include "tensorflow/compiler/mlir/lite/quantization/ir/QuantOps.h"
    
    #include <numeric>
    
    #include "llvm/ADT/StringRef.h"
    #include "llvm/ADT/Twine.h"
    #include "llvm/Support/MathExtras.h"
    #include "mlir/Dialect/Quant/QuantTypes.h"  // from @llvm-project
    #include "mlir/IR/BuiltinTypes.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  9. maven-artifact/src/main/java/org/apache/maven/artifact/versioning/ComparableVersion.java

            int LIST_ITEM = 2;
            int COMBINATION_ITEM = 5;
    
            int compareTo(Item item);
    
            int getType();
    
            boolean isNull();
        }
    
        /**
         * Represents a numeric item in the version item list that can be represented with an int.
         */
        private static class IntItem implements Item {
            private final int value;
    
            public static final IntItem ZERO = new IntItem();
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 26K bytes
    - Viewed (0)
  10. src/encoding/json/scanner.go

    func stateNeg(s *scanner, c byte) int {
    	if c == '0' {
    		s.step = state0
    		return scanContinue
    	}
    	if '1' <= c && c <= '9' {
    		s.step = state1
    		return scanContinue
    	}
    	return s.error(c, "in numeric literal")
    }
    
    // state1 is the state after reading a non-zero integer during a number,
    // such as after reading `1` or `100` but not `0`.
    func state1(s *scanner, c byte) int {
    	if '0' <= c && c <= '9' {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 16.1K bytes
    - Viewed (0)
Back to top