Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 206 for includes_ (0.19 sec)

  1. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishJavaIntegTest.groovy

                additionalArtifacts = javaLibrary.additionalArtifacts
                expectFiles "publishTest-1.9-source.jar"
            }
        }
    
        @Issue("GRADLE-3514")
        void "generated ivy descriptor includes dependency exclusions"() {
            requiresExternalDependencies = true
    
            given:
            createBuildScripts("""
                $dependencies
    
                dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 16:36:23 UTC 2023
    - 49.8K bytes
    - Viewed (0)
  2. src/regexp/testdata/testregex.c

    #if _PACKAGE_ast
    #include <ast.h>
    #else
    #include <sys/types.h>
    #endif
    
    #include <stdio.h>
    #include <regex.h>
    #include <ctype.h>
    #include <setjmp.h>
    #include <signal.h>
    #include <string.h>
    #include <unistd.h>
    
    #ifdef	__STDC__
    #include <stdlib.h>
    #include <locale.h>
    #endif
    
    #ifndef RE_DUP_MAX
    #define RE_DUP_MAX	32767
    #endif
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 51.3K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. tensorflow/c/c_api.h

    #ifndef TENSORFLOW_C_C_API_H_
    #define TENSORFLOW_C_C_API_H_
    
    #include <stddef.h>
    #include <stdint.h>
    
    #include "tensorflow/c/c_api_macros.h"
    #include "tensorflow/c/tf_attrtype.h"
    #include "tensorflow/c/tf_buffer.h"
    #include "tensorflow/c/tf_datatype.h"
    #include "tensorflow/c/tf_status.h"
    #include "tensorflow/c/tf_tensor.h"
    #include "tensorflow/c/tf_tstring.h"
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. src/cmd/compile/internal/types/type.go

    	return t.kind == TUINTPTR
    }
    
    // IsPtrShaped reports whether t is represented by a single machine pointer.
    // In addition to regular Go pointer types, this includes map, channel, and
    // function types and unsafe.Pointer. It does not include array or struct types
    // that consist of a single pointer shaped type.
    // TODO(mdempsky): Should it? See golang.org/issue/15028.
    func (t *Type) IsPtrShaped() bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
Back to top