Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 226 for Fpack (0.06 sec)

  1. platforms/core-execution/build-cache-packaging/src/test/groovy/org/gradle/caching/internal/packaging/impl/TarBuildCacheEntryPackerPermissionTest.groovy

        protected FilePermissionAccess createFilePermissionAccess() {
            Mock(FilePermissionAccess)
        }
    
        @Override
        protected Deleter createDeleter() {
            Mock(Deleter)
        }
    
        def "can pack single file with file mode #mode"() {
            def sourceOutputFile = Spy(File, constructorArgs: [temporaryFolder.file("source.txt").absolutePath]) as File
            sourceOutputFile << "output"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/utils/tf_to_xla_attribute_utils.h

                                         Value &padding, int num_dims = 4);
    
    // Given value that is in 8bit type, but holds 4bit data in unpacked format,
    // pack to nibble format along pack_dim.
    // If the pack_dim size is odd, add 1-size 0 padding and then pack.
    Value PackOperand(OpBuilder &builder, Location loc, Value value, int pack_dim);
    
    }  // namespace mlir::quant
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Dec 10 05:52:02 UTC 2023
    - 2K bytes
    - Viewed (0)
  3. platforms/core-execution/build-cache/src/main/java/org/gradle/caching/internal/controller/DefaultBuildCacheController.java

            if (!local.canStore() && !remote.canStore()) {
                return;
            }
            tmp.withTempFile(((BuildCacheKeyInternal) key).getHashCodeInternal(), file -> {
                packExecutor.pack(file, key, entity, snapshots, executionTime);
                remote.maybeStore(key, file);
                local.maybeStore(key, file);
            });
        }
    
        @Override
        public void close() throws IOException {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 08:29:47 UTC 2024
    - 14K bytes
    - Viewed (0)
  4. test/linkmain_run.go

    	// helloworld.go is package main
        run("go tool compile -p=main -importcfg", tmp("importcfg"), "-o", tmp("linkmain.o"), "helloworld.go")
    	run("go tool compile -p=main -importcfg", tmp("importcfg"), " -pack -o", tmp("linkmain.a"), "helloworld.go")
    	run("go tool link -importcfg", tmp("importcfg"), "-o", tmp("linkmain.exe"), tmp("linkmain.o"))
    	run("go tool link -importcfg", tmp("importcfg"), "-o", tmp("linkmain.exe"), tmp("linkmain.a"))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  5. src/cmd/pack/pack_test.go

    	"time"
    )
    
    // TestMain executes the test binary as the pack command if
    // GO_PACKTEST_IS_PACK is set, and runs the tests otherwise.
    func TestMain(m *testing.M) {
    	if os.Getenv("GO_PACKTEST_IS_PACK") != "" {
    		main()
    		os.Exit(0)
    	}
    
    	os.Setenv("GO_PACKTEST_IS_PACK", "1") // Set for subprocesses to inherit.
    	os.Exit(m.Run())
    }
    
    // packPath returns the path to the "pack" binary to run.
    func packPath(t testing.TB) string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 04 16:27:35 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/list_std.txt

    ! stdout vendor/golang.org
    ! stdout cmd/vendor
    
    # In GOPATH mode, packages vendored into GOROOT should be reported as standard.
    go list -f '{{if .Standard}}{{.ImportPath}}{{end}}' std cmd
    stdout golang.org/x/net/http2/hpack
    stdout cmd/vendor/golang\.org/x/arch/x86/x86asm
    
    # However, vendored packages should not match wildcard patterns beginning with cmd.
    go list cmd/...
    stdout cmd/compile
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 702 bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/dsl/MetadataDescriptorFactoryTest.groovy

            given:
            MavenModuleResolveMetadata metadata = Stub()
            metadata.getPackaging() >> "pack"
            def factory = new MetadataDescriptorFactory(metadata)
    
            when:
            def descriptor = factory.createDescriptor(PomModuleDescriptor)
    
            then:
            descriptor.packaging == "pack"
        }
    
        def 'does not expose #name descriptor if no #name metadata present'() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tfr/utils/utils.h

    // TFR function name. Examples:
    //   tf.Pack => tf__pack
    //   tf.ConcatV2 => tf__concat_v2
    // TODO(fengliuai): move to an util file.
    std::string GetComposeFuncName(StringRef tf_op_name);
    
    // This is a hardcoded rule for mapping a TFR function op name to the
    // corresponding TF opname. Examples:
    //   tf__pack -> tf.Pack
    //   tf__concat_v2 => tf.ConcatV2
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 03:08:33 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  9. tensorflow/cc/framework/gradients_test.cc

        // Construct forward graph.
        auto a = Const(scope, 1, {4, 2});
        auto b = Const(scope, 2, {4, 2});
        auto c = Const(scope, 3, {4, 2});
    
        auto pack = Stack(scope, {a, b, c});
        auto unpack = Unstack(scope, pack.output, 3);
        TF_ASSERT_OK(scope.status());
    
        // Construct grad inputs.
        auto dx = Const(scope, 4, {4, 2});
        auto dy = Const(scope, 5, {4, 2});
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 15 15:13:38 UTC 2023
    - 25K bytes
    - Viewed (0)
  10. .devcontainer/devcontainer.json

          }
      },
      "customizations": {
          "vscode": {
              "settings": {
                  "java.server.launchMode": "Standard"
              },
              "extensions": [
                  "vscjava.vscode-java-pack",
                  "vscjava.vscode-gradle"
              ]
          }
      }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat May 18 23:34:57 UTC 2024
    - 429 bytes
    - Viewed (0)
Back to top