Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 420 for pinned (0.14 sec)

  1. platforms/documentation/docs/src/samples/readme-templates/native-library-body.adoc.template

    To learn more, have a look at their respective linked documentation to configure those IDE integration in your project....
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/options/server_run_options.go

    		var pinStart, pinEnd bool
    		for _, prefix := range []string{"^", "//"} {
    			if strings.Contains(regexpStr, prefix) {
    				pinStart = true
    				break
    			}
    		}
    		for _, suffix := range []string{"$", ":"} {
    			if strings.Contains(regexpStr, suffix) {
    				pinEnd = true
    				break
    			}
    		}
    		if !pinStart || !pinEnd {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 24 21:53:51 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/plugins.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package server
    
    // This file exists to force the desired plugin implementations to be linked into genericapi pkg.
    import (
    	"k8s.io/apiserver/pkg/admission"
    	"k8s.io/apiserver/pkg/admission/plugin/namespace/lifecycle"
    	validatingadmissionpolicy "k8s.io/apiserver/pkg/admission/plugin/policy/validating"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 12 18:58:24 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  4. src/syscall/syscall_linux.go

    	}
    	r1, r2, errno := runtime_doAllThreadsSyscall(trap, a1, a2, a3, a4, a5, a6)
    	return r1, r2, Errno(errno)
    }
    
    // linked by runtime.cgocall.go
    //
    //go:uintptrescapes
    func cgocaller(unsafe.Pointer, ...uintptr) uintptr
    
    var cgo_libc_setegid unsafe.Pointer // non-nil if cgo linked.
    
    const minus1 = ^uintptr(0)
    
    func Setegid(egid int) (err error) {
    	if cgo_libc_setegid == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/kernels/BUILD

        "//tensorflow/core/profiler/lib:traceme",
        "@local_xla//xla/stream_executor/integrations:tf_allocator_adapter",
        "@com_google_absl//absl/types:optional",
    ]
    
    # Linked by tensorflow core, without registration of jit compilation passes.
    cc_library(
        name = "xla_ops_no_jit_rewrite_registration",
        srcs = ["xla_ops.cc"],
        hdrs = ["xla_ops.h"],
        deps = XLA_OPS_DEPS + [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 22:46:36 UTC 2024
    - 3K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/m4/ToolingApiEclipseLinkedResourcesCrossVersionSpec.groovy

    import org.gradle.tooling.model.eclipse.HierarchicalEclipseProject
    
    class ToolingApiEclipseLinkedResourcesCrossVersionSpec extends ToolingApiSpecification {
        def "can build linked resources"() {
    
            file('build.gradle').text = '''
    apply plugin: 'java'
    apply plugin: 'eclipse'
    
    eclipse.project {
        linkedResource name: 'foo', location: '/path/to/foo', type : '2'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. maven-compat/src/main/java/org/apache/maven/repository/metadata/ClasspathTransformation.java

         *
         * @param dirtyGraph - dependency graph
         * @param scope - which classpath to extract
         * @param resolve - whether to resolve artifacts.
         * @return Collection of metadata objects in the linked subgraph of the graph which
         *             contains the graph.getEntry() vertice
         */
        ClasspathContainer transform(MetadataGraph dirtyGraph, ArtifactScopeEnum scope, boolean resolve)
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  8. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/eclipse/model/EclipseProjectTest.groovy

    import spock.lang.Specification
    
    class EclipseProjectTest extends Specification {
    
        def eclipseProject = TestUtil.newInstance(EclipseProject, Mock(XmlFileContentMerger))
    
        def "allows adding linked resources"() {
            when:
            eclipseProject.linkedResource(name: 'foo', type: 'folder', location: '/stuff/foo')
            eclipseProject.linkedResource(name: 'bar', type: 'uri', locationUri: 'file:///stuff/bar')
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  9. tensorflow/cc/experimental/libtf/impl/iostream.cc

    limitations under the License.
    ==============================================================================*/
    // Specializations of ostream::operator<< for API values. These are defined here
    // so that they don't need to be linked in executables that need to be kept
    // small (and don't use the functionality).
    #include <iostream>
    
    #include "tensorflow/cc/experimental/libtf/impl/none.h"
    #include "tensorflow/cc/experimental/libtf/impl/string.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 09 21:11:15 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/main/java/org/gradle/language/swift/SwiftBinary.java

    import org.gradle.language.ComponentWithDependencies;
    import org.gradle.language.nativeplatform.ComponentWithObjectFiles;
    import org.gradle.language.swift.tasks.SwiftCompile;
    
    /**
     * A binary built from Swift source and linked from the resulting object files.
     *
     * @since 4.2
     */
    public interface SwiftBinary extends ComponentWithObjectFiles, ComponentWithDependencies {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.4K bytes
    - Viewed (0)
Back to top