Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 109 for includes_ (0.19 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

            given:
            createDir("plugins") {
                file("settings.gradle.kts") << """
                    include("service-plugin")
                    include("convention-kotlin-plugin")
                    include("convention-groovy-plugin")
                """
                file("service-plugin/build.gradle.kts") << """
                    plugins {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
  2. tests/integration/ambient/baseline_test.go

    					}
    				} else {
    					tpe = "negative"
    					opt.Check = check.NotOK()
    				}
    				t.Logf("expected result: %v", tpe)
    
    				include := c.Include
    				if include == nil {
    					include = func(_ echo.Instance, _ echo.CallOptions) bool { return true }
    				}
    				if !include(src, opt) {
    					t.Skip("excluded")
    				}
    				src.CallOrFail(t, opt)
    			})
    		})
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  3. tensorflow/BUILD

        deps = select({
            "//conditions:default": ["@com_github_grpc_grpc//:grpc++"],
        }),
    )
    # copybara:comment_end
    
    # A shared object which includes registration mechanisms for ops and
    # kernels. Does not include the implementations of any ops or kernels. Instead,
    # the library which loads libtensorflow_framework.so
    # (e.g. _pywrap_tensorflow_internal.so for Python, libtensorflow.so for the C
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  4. src/runtime/mgc.go

    // This is a high level description of the algorithm being used. For an overview of GC a good
    // place to start is Richard Jones' gchandbook.org.
    //
    // The algorithm's intellectual heritage includes Dijkstra's on-the-fly algorithm, see
    // Edsger W. Dijkstra, Leslie Lamport, A. J. Martin, C. S. Scholten, and E. F. M. Steffens. 1978.
    // On-the-fly garbage collection: an exercise in cooperation. Commun. ACM 21, 11 (November 1978),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  5. src/runtime/traceback.go

    // for debugging purposes. If the address bad is included in the
    // hexdumped range, it will mark it as well.
    func tracebackHexdump(stk stack, frame *stkframe, bad uintptr) {
    	const expand = 32 * goarch.PtrSize
    	const maxExpand = 256 * goarch.PtrSize
    	// Start around frame.sp.
    	lo, hi := frame.sp, frame.sp
    	// Expand to include frame.fp.
    	if frame.fp != 0 && frame.fp < lo {
    		lo = frame.fp
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  6. src/runtime/mprof.go

    // creation, including its next and allnext links.
    //
    // No heap pointers.
    type bucket struct {
    	_       sys.NotInHeap
    	next    *bucket
    	allnext *bucket
    	typ     bucketType // memBucket or blockBucket (includes mutexProfile)
    	hash    uintptr
    	size    uintptr
    	nstk    uintptr
    }
    
    // A memRecord is the bucket data for a bucket of type memProfile,
    // part of the memory profile.
    type memRecord struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  7. src/cmd/dist/build.go

    	if pkg == "runtime" {
    		xmkdirall(pathf("%s/pkg/include", goroot))
    		// For use by assembly and C files.
    		copyfile(pathf("%s/pkg/include/textflag.h", goroot),
    			pathf("%s/src/runtime/textflag.h", goroot), 0)
    		copyfile(pathf("%s/pkg/include/funcdata.h", goroot),
    			pathf("%s/src/runtime/funcdata.h", goroot), 0)
    		copyfile(pathf("%s/pkg/include/asm_ppc64x.h", goroot),
    			pathf("%s/src/runtime/asm_ppc64x.h", goroot), 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/BUILD

    )
    
    package_group(
        name = "internal",
        includes = [
            "//tensorflow/compiler/tf2xla:internal",
        ],
        packages = [
            "//tensorflow/c/...",
            "//tensorflow/compiler/tests/...",
            "//tensorflow/core/tfrt/saved_model/...",
            "//tensorflow/python/...",
        ],
    )
    
    package_group(
        name = "friends",
        includes = [
            "//tensorflow/compiler/tf2xla:friends",
        ],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 00:41:19 UTC 2024
    - 61.5K bytes
    - Viewed (0)
  9. .bazelrc

    build:linux --define=LIBDIR=$(PREFIX)/lib
    build:linux --define=INCLUDEDIR=$(PREFIX)/include
    build:linux --define=PROTOBUF_INCLUDE_PATH=$(PREFIX)/include
    build:macos --define=PREFIX=/usr
    build:macos --define=LIBDIR=$(PREFIX)/lib
    build:macos --define=INCLUDEDIR=$(PREFIX)/include
    build:macos --define=PROTOBUF_INCLUDE_PATH=$(PREFIX)/include
    # TF_SYSTEM_LIBS do not work on windows.
    
    # By default, build TF in C++ 17 mode.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  10. src/testing/testing.go

    	// we don't need to check what the old test name was or log an extra NAME line
    	// for it. (We're updating it anyway, and the current message already includes
    	// the test name.)
    	p.lastName = testName
    	fmt.Fprintf(p.w, p.prefix()+format, args...)
    }
    
    // Printf prints a message, generated by the named test, that does not
    // necessarily mention that tests's name itself.
    func (p *chattyPrinter) Printf(testName, format string, args ...any) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
Back to top