Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 38 for 1library (0.21 sec)

  1. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyInsightReportTaskIntegrationTest.groovy

    project :
      Variant runtimeClasspath:
        | Attribute Name                 | Provided     | Requested    |
        |--------------------------------|--------------|--------------|
        | org.gradle.category            | library      | library      |
        | org.gradle.dependency.bundling | external     | external     |
        | org.gradle.jvm.environment     | standard-jvm | standard-jvm |
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 15:15:56 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/encapsulate_subgraphs_pass_test.cc

      }
    
      TF_EXPECT_GRAPH_EQ(graphdef_expected, graphdef);
      TF_EXPECT_FUNCTIONDEFLIBRARY_EQ(library_expected, library);
    }
    
    // Test with two functions to transform.
    TEST(EncapsulateSubgraphsTest, TwoFunctions) {
      FunctionDefLibrary library;
      GraphDef graphdef;
    
      {
        *library.add_function() = test::function::XTimesTwo();
    
        GraphDefBuilder b1(GraphDefBuilder::kFailImmediately);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 113.3K bytes
    - Viewed (0)
  3. maven-model-builder/src/test/resources/dag.txt

    	quarkus/test-framework/junit5-internal/pom.xml
    quarkus/integration-tests/reactive-messaging-kafka/pom.xml
    	quarkus/integration-tests/class-transformer/runtime/pom.xml
    	quarkus/integration-tests/shared-library/pom.xml
    	quarkus/extensions/redis-client/runtime/pom.xml
    	quarkus/extensions/resteasy-classic/resteasy/runtime/pom.xml
    	quarkus/extensions/resteasy-classic/resteasy-jackson/runtime/pom.xml
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jan 15 16:49:26 UTC 2024
    - 224K bytes
    - Viewed (0)
  4. src/cmd/go/alldocs.go

    // directory $GOPATH/pkg/$GOOS_$GOARCH. When module-aware mode is enabled,
    // non-main packages are built and cached but not installed.
    //
    // Before Go 1.20, the standard library was installed to
    // $GOROOT/pkg/$GOOS_$GOARCH.
    // Starting in Go 1.20, the standard library is built and cached but not installed.
    // Setting GODEBUG=installgoroot=all restores the use of
    // $GOROOT/pkg/$GOOS_$GOARCH.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  5. src/cmd/go/internal/load/pkg.go

    	RawImports        []string             // this package's original imports as they appear in the text of the program; 1:1 with the end of PackagePublic.Imports
    	ForceLibrary      bool                 // this package is a library (even if named "main")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  6. src/cmd/go/internal/work/exec.go

    	PackageFile   map[string]string // map package path to .a file with export data
    	Standard      map[string]bool   // map package path to whether it's in the standard library
    	PackageVetx   map[string]string // map package path to vetx data from earlier vet run
    	VetxOnly      bool              // only compute vetx data; don't report detected problems
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  7. src/debug/elf/elf.go

    	SHT_GNU_ATTRIBUTES SectionType = 0x6ffffff5 /* GNU object attributes */
    	SHT_GNU_HASH       SectionType = 0x6ffffff6 /* GNU hash table */
    	SHT_GNU_LIBLIST    SectionType = 0x6ffffff7 /* GNU prelink library list */
    	SHT_GNU_VERDEF     SectionType = 0x6ffffffd /* GNU version definition section */
    	SHT_GNU_VERNEED    SectionType = 0x6ffffffe /* GNU version needs section */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

          << tensor_info.encoding_case();
      return tensor_info.name();
    }
    
    // This class is used to generate new MLIR function name strings that are both
    // unique in the TF function library `flib_` and unique among the name strings
    // generated by the class object during its lifetime.
    //
    // In theory, this class is not necessary because we should simply take
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

      for var_node in filter(_is_variable, graph_def.node):
        shared_name = str(var_node.attr['shared_name'].s, encoding='utf-8')
        variable_nodes[shared_name] = var_node
    
      for func in graph_def.library.function:
        for var_node in filter(_is_variable, func.node_def):
          variable_nodes[shared_name] = var_node
    
      return variable_nodes
    
    
    class MultipleSignatureModel(module.Module):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  10. pkg/apis/admissionregistration/validation/validation_test.go

    	// Include the test library, which includes the test() function in the storage environment during test
    	base := environment.MustBaseEnvSet(environment.DefaultCompatibilityVersion(), strictCost)
    	extended, err := base.Extend(environment.VersionedOptions{
    		IntroducedVersion: version.MustParseGeneric("1.999"),
    		EnvOptions:        []cel.EnvOption{library.Test()},
    	})
    	if err != nil {
    		t.Fatal(err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 147.1K bytes
    - Viewed (0)
Back to top