Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 95 for islibrary (0.17 sec)

  1. src/cmd/link/internal/ld/lib.go

    	visiting
    	visited
    )
    
    func postorder(libs []*sym.Library) []*sym.Library {
    	order := make([]*sym.Library, 0, len(libs)) // hold the result
    	mark := make(map[*sym.Library]markKind, len(libs))
    	for _, lib := range libs {
    		dfs(lib, mark, &order)
    	}
    	return order
    }
    
    func dfs(lib *sym.Library, mark map[*sym.Library]markKind, order *[]*sym.Library) {
    	if mark[lib] == visited {
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/VersionCatalogExtensionIntegrationTest.groovy

            outputDoesNotContain 'Type-safe dependency accessors is an incubating feature.'
    
            where:
            notation << [
                'library("foo", "org.gradle.test:lib:1.0")',
                'library("foo", "org.gradle.test", "lib").version { require "1.0" }',
                'library("foo", "org.gradle.test", "lib").version("1.0")'
            ]
        }
    
        def "dependencies declared in settings will fail if left uninitialized"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 13:37:31 UTC 2024
    - 77.8K bytes
    - Viewed (0)
  3. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/OutgoingVariantsReportTaskIntegrationTest.groovy

            doesNotHaveLegacyLegend()
            doesNotHaveIncubatingLegend()
            doesNotPromptForRerunToFindMoreVariants()
        }
    
        def "reports outgoing variants of a Java Library"() {
            buildFile << """
                plugins { id 'java-library' }
                group = 'org'
                version = '1.0'
            """
    
            when:
            run ':outgoingVariants'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 50K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/DependenciesAttributesIntegrationTest.groovy

            'c2'           | 'runtime'       | ['org.gradle.status': defaultStatus(), 'org.gradle.usage': 'java-runtime', 'org.gradle.libraryelements': 'jar', 'org.gradle.category': 'library', custom: 'c2']
        }
    
        @RequiredFeature(feature = GradleMetadataResolveRunner.GRADLE_METADATA, value = "true")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 02:13:52 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

                        library);
        DumpFunctionDefToFile(absl::StrCat("encapsulate_fdef_", name), fdef);
      }
    
      const FunctionDef* original_fdef = library->Find(name);
      if (!reuse_existing_functions || original_fdef == nullptr) {
        TF_RETURN_IF_ERROR(library->AddFunctionDef(fdef));
      } else if (!FunctionDefsEqual(*original_fdef, fdef)) {
        TF_RETURN_IF_ERROR(library->ReplaceFunction(name, fdef));
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    [[sec:building_a_library]]
    == Building a library
    
    To build either a static or shared native library, you define a library component in the `components` container. The following sample defines a library called `hello`:
    
    === Example: Defining a library component
    
    [source.multi-language-sample,groovy]
    .build.gradle
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  7. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishJavaIntegTest.groovy

            'java'         | 'implementation'    | 'runtime'
            'java'         | 'runtimeOnly'       | 'runtime'
    
            'java-library' | 'api'               | 'compile'
            'java-library' | 'compileOnlyApi'    | 'compile'
            'java-library' | 'runtimeOnly'       | 'runtime'
            'java-library' | 'implementation'    | 'runtime'
    
        }
    
        void "ignores extra artifacts added to configurations"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 16:36:23 UTC 2023
    - 49.8K bytes
    - Viewed (0)
  8. tensorflow/BUILD

        }),
        tools = ["@local_config_def_file_filter//:def_file_filter"],
        visibility = ["//visibility:public"],
    )
    
    # The interface library (tensorflow.dll.if.lib) for linking tensorflow DLL library (tensorflow.dll) on Windows.
    # To learn more about import library (called interface library in Bazel):
    #     https://docs.microsoft.com/en-us/cpp/build/linking-an-executable-to-a-dll?view=vs-2017#linking-implicitly
    filegroup(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  9. staging/publishing/rules.yaml

          branch: release-1.29
          dirs:
          - staging/src/k8s.io/apimachinery
      - name: release-1.30
        go: 1.22.4
        source:
          branch: release-1.30
          dirs:
          - staging/src/k8s.io/apimachinery
      library: true
    - destination: api
      branches:
      - name: master
        dependencies:
        - repository: apimachinery
          branch: master
        source:
          branch: master
          dirs:
          - staging/src/k8s.io/api
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 09:33:40 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  10. .teamcity/test-buckets.json

    				]
    			},
    			{
    				"parallelizationMethod":{
    					"name":"TestDistribution"
    				},
    				"subprojects":[
    					"code-quality",
    					"signing",
    					"ide-native",
    					"plugins-java-library",
    					"antlr",
    					"ide-plugins",
    					"platform-base",
    					"test-kit",
    					"ide",
    					"file-collections",
    					"persistent-cache"
    				]
    			},
    			{
    				"parallelizationMethod":{
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 15:56:44 UTC 2024
    - 54.2K bytes
    - Viewed (0)
Back to top