Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,255 for islibrary (0.13 sec)

  1. src/runtime/fds_unix.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build unix
    
    package runtime
    
    func checkfds() {
    	if islibrary || isarchive {
    		// If the program is actually a library, presumably being consumed by
    		// another program, we don't want to mess around with the file
    		// descriptors.
    		return
    	}
    
    	const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 27 22:20:25 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/Library.java

    /**
     * A classpath entry representing a library.
     */
    public class Library extends AbstractLibrary {
        public Library(Node node, FileReferenceFactory fileReferenceFactory) {
            super(node, fileReferenceFactory);
            setSourcePath(fileReferenceFactory.fromPath((String) node.attribute("sourcepath")));
        }
    
        public Library(FileReference library) {
            super(library);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. platforms/software/platform-base/src/main/java/org/gradle/platform/base/Library.java

     */
    
    package org.gradle.platform.base;
    
    import org.gradle.api.Incubating;
    import org.gradle.api.component.Component;
    
    /**
     * A library that can be linked into or depended on by another software element.
     */
    @Incubating
    public interface Library extends Component {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 878 bytes
    - Viewed (0)
  4. src/cmd/link/internal/sym/library.go

    package sym
    
    import "cmd/internal/goobj"
    
    type Library struct {
    	Objref      string
    	Srcref      string
    	File        string
    	Pkg         string
    	Shlib       string
    	Fingerprint goobj.FingerprintType
    	Autolib     []goobj.ImportedPkg
    	Imports     []*Library
    	Main        bool
    	Units       []*CompilationUnit
    
    	Textp       []LoaderSym // text syms defined in this library
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 11 18:32:23 UTC 2020
    - 651 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/groovy/incrementalCompilation/groovy/library/src/main/groovy/Library.groovy

    class Library {
        void function() {}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 41 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/groovy/incrementalCompilation/kotlin/library/src/main/groovy/Library.groovy

    class Library {
        void function() {}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 41 bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/graph-library.pbtxt

        key: "_disable_call_shape_inference"
        value {
          b: true
        }
      }
      experimental_debug_info {
      }
    }
    node {
      name: "unnamed1"
      op: "bar"
      experimental_debug_info {
      }
    }
    library {
      function {
        signature {
          name: "bar"
        }
      }
      function {
        signature {
          name: "foo"
        }
        node_def {
          name: "unnamed"
          op: "bar"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  8. platforms/software/build-init/src/main/resources/org/gradle/buildinit/tasks/templates/groovylibrary/Library.groovy.template

    ${fileComment.multilineComment}${packageDecl.statement}
    class Library {
        boolean someLibraryMethod() {
            true
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 26 19:39:09 UTC 2023
    - 127 bytes
    - Viewed (0)
  9. platforms/software/build-init/src/main/resources/org/gradle/buildinit/tasks/templates/scalalibrary/Library.scala.template

    ${fileComment.multilineComment}${packageDecl.statement}
    class Library {
      def someLibraryMethod(): Boolean = true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 26 19:39:09 UTC 2023
    - 116 bytes
    - Viewed (0)
  10. platforms/software/build-init/src/main/resources/org/gradle/buildinit/tasks/templates/javalibrary/Library.java.template

    ${fileComment.multilineComment}${packageDecl.javaStatement}
    public class Library {
        public boolean someLibraryMethod() {
            return true;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 26 19:39:09 UTC 2023
    - 153 bytes
    - Viewed (0)
Back to top