Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 38 of 38 for respective (0.17 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    //    it prints message about the condition violation, including the
    //    condition itself, plus additional message streamed into it, if any,
    //    and then it aborts the program. It aborts the program irrespective of
    //    whether it is built in the debug mode or not.
    #define GTEST_CHECK_(condition) \
        GTEST_AMBIGUOUS_ELSE_BLOCKER_ \
        if (::testing::internal::IsTrue(condition)) \
          ; \
        else \
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  2. src/go/build/build.go

    // the compiler and linker tool names, the default object file suffix,
    // and the default linker output name. As of Go 1.5, those strings
    // no longer vary by architecture; they are compile, link, .o, and a.out, respectively.
    func ArchChar(goarch string) (string, error) {
    	return "?", errors.New("architecture letter no longer used")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/Project.java

     *
     * All extra properties must be defined through the "ext" namespace. Once an extra property has been defined,
     * it is available directly on the owning object (in the below case the Project, Task, and sub-projects respectively) and can
     * be read and updated. Only the initial declaration that needs to be done via the namespace.
     *
     * <pre>
     * project.ext.prop1 = "foo"
     * task doStuff {
     *     ext.prop2 = "bar"
     * }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  4. src/runtime/pprof/pprof_test.go

    		name    string
    		workers int
    	}{
    		{
    			name:    "serial",
    			workers: 1,
    		},
    		{
    			name:    "parallel",
    			workers: runtime.GOMAXPROCS(0),
    		},
    	} {
    		// check that the OS's perspective matches what the Go runtime measures.
    		t.Run(tc.name, func(t *testing.T) {
    			t.Logf("Running with %d workers", tc.workers)
    
    			var userTime, systemTime time.Duration
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    //sys	KeyctlInt(cmd int, arg2 int, arg3 int, arg4 int, arg5 int) (ret int, err error) = SYS_KEYCTL
    
    // KeyctlBuffer calls keyctl commands in which the third and fourth
    // arguments are a buffer and its length, respectively.
    // These commands are KEYCTL_UPDATE, KEYCTL_READ, and KEYCTL_INSTANTIATE.
    //sys	KeyctlBuffer(cmd int, arg2 int, buf []byte, arg5 int) (ret int, err error) = SYS_KEYCTL
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    include::sample[dir="snippets/files/misc/groovy",files="build.gradle[tags=delete-with-filter-example]"]
    ====
    
    [[sec:creating_archives_example]]
    == Creating archives
    
    From the perspective of Gradle, packing files into an archive is effectively a copy in which the destination is the archive file rather than a directory on the file system.
    Creating archives looks a lot like copying, with all the same features.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/S390X.rules

    (PopCount32 x) => (MOVBZreg (SumBytes4 (POPCNT <typ.UInt32> x)))
    (PopCount64 x) => (MOVBZreg (SumBytes8 (POPCNT <typ.UInt64> x)))
    
    // SumBytes{2,4,8} pseudo operations sum the values of the rightmost
    // 2, 4 or 8 bytes respectively. The result is a single byte however
    // other bytes might contain junk so a zero extension is required if
    // the desired output type is larger than 1 byte.
    (SumBytes2 x) => (ADDW (SRWconst <typ.UInt8> x [8]) x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    replicated is defined in the `tf.TPUReplicateMetadata` op (`num_replicas`
    attribute) and operand and result sizes of `tf.TPUReplicatedInput` and
    `tf.TPUReplicatedOutput` respectively must match, excluding packed tensors.
    It is also assumed ops of the same TPU computation do not have ops outside
    of the TPU computation that are both inputs and outputs to the same TPU
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
Back to top