Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 533 for output0 (0.11 sec)

  1. src/cmd/preprofile/main.go

    // Usage:
    //
    //	go tool preprofile [-v] [-o output] -i input
    //
    //
    
    package main
    
    import (
    	"bufio"
    	"cmd/internal/objabi"
    	"cmd/internal/pgo"
    	"cmd/internal/telemetry"
    	"flag"
    	"fmt"
    	"log"
    	"os"
    )
    
    func usage() {
    	fmt.Fprintf(os.Stderr, "usage: go tool preprofile [-v] [-o output] -i input\n\n")
    	flag.PrintDefaults()
    	os.Exit(2)
    }
    
    var (
    	output = flag.String("o", "", "output file path")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/legalize_tf.cc

            count++;
          } else {
            // Non specified input.
            inputs.push_back(none);
          }
        }
    
        // Populate outputs.
        // UnidirectionalSequenceLstm should only have 1 output, and that is the
        // original ophint converted node's 3rd output.
        SmallVector<Type, 4> result_types;
        result_types.push_back(op->getOpResult(2).getType());
    
        // Populate attributes.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 20:06:54 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  3. tools/istio-clean-iptables/pkg/cmd/testdata/empty.golden

    ip6tables -t nat -X ISTIO_REDIRECT
    ip6tables -t nat -F ISTIO_IN_REDIRECT
    ip6tables -t nat -X ISTIO_IN_REDIRECT
    iptables -t nat -D OUTPUT -p udp -j ISTIO_OUTPUT
    iptables -t raw -D OUTPUT -p udp -j ISTIO_OUTPUT
    ip6tables -t nat -D OUTPUT -p udp -j ISTIO_OUTPUT
    ip6tables -t raw -D OUTPUT -p udp -j ISTIO_OUTPUT
    iptables-save
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 15:51:15 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  4. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/configuration/GradleLauncherMetaData.java

        }
    
        public String getAppName() {
            return appName;
        }
    
        public void describeCommand(Appendable output, String... args) {
            try {
                output.append(appName);
                for (String arg : args) {
                    output.append(' ');
                    output.append(arg);
                }
            } catch (IOException e) {
                throw UncheckedException.throwAsUncheckedException(e);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:55:06 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  5. src/internal/trace/testdata/cmd/gotraceeventstats/main.go

    	flag.Usage = func() {
    		fmt.Fprintf(flag.CommandLine.Output(), "Usage: %s [mode]\n", os.Args[0])
    		fmt.Fprintf(flag.CommandLine.Output(), "\n")
    		fmt.Fprintf(flag.CommandLine.Output(), "Accepts a trace at stdin.\n")
    		fmt.Fprintf(flag.CommandLine.Output(), "\n")
    		fmt.Fprintf(flag.CommandLine.Output(), "Supported modes:")
    		fmt.Fprintf(flag.CommandLine.Output(), "\n")
    		fmt.Fprintf(flag.CommandLine.Output(), "* size  - dumps size stats\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:31:29 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/python/saved_model_to_tfl_flatbuffer.cc

        }
      }
    
      // Get the list of output Op names from the function attribute.
      llvm::SmallVector<llvm::StringRef, 4> function_output_names;
      function_output_names.reserve(model_flags.output_arrays().size());
      auto output_attr = tf_attrs.get("outputs");
      if (!output_attr) {
        return errors::InvalidArgument("no outputs attribute found");
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun May 12 12:39:37 UTC 2024
    - 11K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r44/ToolingApiEclipseModelOutputLocationCrossVersionSpec.groovy

        }
    
        def "Non-Java project has default output location"() {
            when:
            EclipseProject project = loadToolingModel(EclipseProject)
            EclipseOutputLocation output = project.getOutputLocation()
    
            then:
            output.path == 'bin/default'
        }
    
        def "Java project has default output location"() {
            setup:
            buildFile << "apply plugin: 'java'"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  8. platforms/core-execution/build-cache-example-client/src/main/java/org/gradle/caching/example/ExampleBuildCacheClient.java

                });
    
            // Produce some example output (simulate executing cacheable work in a temporary sandbox)
            Path sandboxOutputDirectory = Files.createTempDirectory("sandbox-output");
            Path sandboxOutputTxt = sandboxOutputDirectory.resolve("output.txt");
            Files.write(sandboxOutputTxt, Collections.singleton("contents"));
    
            // Capture the snapshot of the produced output
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 19:35:22 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/util/template_test.go

    				Arch:            "amd64",
    			},
    			output:      doNothing,
    			errExpected: false,
    		},
    		{
    			name:        "invalid syntax, passing nil",
    			template:    invalidTmpl1,
    			data:        nil,
    			output:      "",
    			errExpected: true,
    		},
    		{
    			name:        "invalid syntax",
    			template:    invalidTmpl2,
    			data:        struct{}{},
    			output:      "",
    			errExpected: true,
    		},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. samples/bookinfo/platform/kube/cleanup.sh

    fi
    
    OUTPUT=$(mktemp)
    export OUTPUT
    echo "Application cleanup may take up to one minute"
    kubectl delete -n "${NAMESPACE}" -f "$SCRIPTDIR/bookinfo.yaml" > "${OUTPUT}" 2>&1
    ret=$?
    function cleanup() {
      rm -f "${OUTPUT}"
    }
    
    trap cleanup EXIT
    
    if [[ ${ret} -eq 0 ]];then
      cat "${OUTPUT}"
    else
      # ignore NotFound errors
      OUT2=$(grep -v NotFound "${OUTPUT}")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 16:07:18 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top