Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 45 for idea (0.04 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    // 0x7F (stopped), or a signal number that caused an exit.
    // The 0x80 bit is whether there was a core dump.
    // An extra number (exit code, signal causing a stop)
    // is in the high bits. At least that's the idea.
    // There are various irregularities. For example, the
    // "continued" status is 0xFFFF, distinguishing itself
    // from stopped via the core dump bit.
    
    const (
    	mask    = 0x7F
    	core    = 0x80
    	exited  = 0x00
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    You can learn about all the options provided by the builder in its API documentation, but we’ll show you a simple example here to give you an idea of what you can do.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  3. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

    //
    // Such code is NOT meant to be used by a user directly, and is subject
    // to CHANGE WITHOUT NOTICE.  Therefore DO NOT DEPEND ON IT in a user
    // program!
    //
    // Acknowledgment: Google Test borrowed the idea of automatic test
    // registration from Barthelemy Dagenais' (******@****.***)
    // easyUnit framework.
    
    #ifndef GTEST_INCLUDE_GTEST_GTEST_H_
    #define GTEST_INCLUDE_GTEST_GTEST_H_
    
    #include <limits>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

    //
    // Such code is NOT meant to be used by a user directly, and is subject
    // to CHANGE WITHOUT NOTICE.  Therefore DO NOT DEPEND ON IT in a user
    // program!
    //
    // Acknowledgment: Google Test borrowed the idea of automatic test
    // registration from Barthelemy Dagenais' (******@****.***)
    // easyUnit framework.
    
    #ifndef GTEST_INCLUDE_GTEST_GTEST_H_
    #define GTEST_INCLUDE_GTEST_GTEST_H_
    
    #include <limits>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/S390X.rules

    (MOVBstore [off] {sym} ptr (MOVBZreg x) mem) => (MOVBstore [off] {sym} ptr x mem)
    
    // Fold constants into memory operations.
    // Note that this is not always a good idea because if not all the uses of
    // the ADDconst get eliminated, we still have to compute the ADDconst and we now
    // have potentially two live values (ptr and (ADDconst [off] ptr)) instead of one.
    // Nevertheless, let's do it!
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    // 0x7F (stopped), or a signal number that caused an exit.
    // The 0x80 bit is whether there was a core dump.
    // An extra number (exit code, signal causing a stop)
    // is in the high bits.  At least that's the idea.
    // There are various irregularities.  For example, the
    // "continued" status is 0xFFFF, distinguishing itself
    // from stopped via the core dump bit.
    
    const (
    	mask    = 0x7F
    	core    = 0x80
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  7. src/cmd/link/internal/loader/loader.go

    		return false
    	}
    }
    
    // cloneToExternal takes the existing object file symbol (symIdx)
    // and creates a new external symbol payload that is a clone with
    // respect to name, version, type, relocations, etc. The idea here
    // is that if the linker decides it wants to update the contents of
    // a symbol originally discovered as part of an object file, it's
    // easier to do this if we make the updates to an external symbol
    // payload.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    to reformat the variables, but only inserts general TPUReshardVariablesOps in
    proper places, and TPUReshardVariablesOps interpret the compilation.
    
    The core idea of this optimization is to keep track of the formatting state
    of variables, and when the next desired state does not change, it can avoid
    reformatting. We associate a set of variables on a device with a formatting
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    (MOVBstore [off] {sym} ptr (MOVBQZX x) mem) => (MOVBstore [off] {sym} ptr x mem)
    
    // fold constants into memory operations
    // Note that this is not always a good idea because if not all the uses of
    // the ADDQconst get eliminated, we still have to compute the ADDQconst and we now
    // have potentially two live values (ptr and (ADDQconst [off] ptr)) instead of one.
    // Nevertheless, let's do it!
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
  10. src/html/template/exec_test.go

    	{"nil action", "{{nil}}", "", nil, false},
    
    	// Ideal constants.
    	{"ideal int", "{{typeOf 3}}", "int", 0, true},
    	{"ideal float", "{{typeOf 1.0}}", "float64", 0, true},
    	{"ideal exp float", "{{typeOf 1e1}}", "float64", 0, true},
    	{"ideal complex", "{{typeOf 1i}}", "complex128", 0, true},
    	{"ideal int", "{{typeOf " + bigInt + "}}", "int", 0, true},
    	{"ideal too big", "{{typeOf " + bigUint + "}}", "", 0, false},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 57.6K bytes
    - Viewed (0)
Back to top