Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 533 for output0 (0.16 sec)

  1. tools/istio-clean-iptables/pkg/cmd/testdata/outbound-owner-groups.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 -t nat -D ISTIO_OUTPUT -p udp --dport 53 -m owner --uid-owner 1337 -j RETURN
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 15:51:15 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. tools/istio-clean-iptables/pkg/cmd/cleanup.go

    	// Remove UDP jumps from OUTPUT chain to ISTIOOUTPUT chain
    	ext.RunQuietlyAndIgnore(constants.IPTables, iptV, nil, "-t", constants.NAT, "-D", constants.OUTPUT, "-p", constants.UDP, "-j", constants.ISTIOOUTPUT)
    	ext.RunQuietlyAndIgnore(constants.IPTables, iptV, nil, "-t", constants.RAW, "-D", constants.OUTPUT, "-p", constants.UDP, "-j", constants.ISTIOOUTPUT)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 15:51:15 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/PropertyIntegrationTest.groovy

            when:
            run("thing")
    
            then:
            output.count("calculating value") == 1
    
            when:
            run("thing")
    
            then:
            result.assertTaskSkipped(":thing")
            output.count("calculating value") == 1
    
            when:
            run("help")
    
            then:
            output.count("calculating value") == 0
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  4. src/internal/coverage/cfile/emit.go

    // also opens the counter data output file, setting 'cf' and 'cfname'
    // in the state struct.
    func (s *emitState) openOutputFiles(metaHash [16]byte, metaLen uint64, which fileType) error {
    	fi, err := os.Stat(s.outdir)
    	if err != nil {
    		return fmt.Errorf("output directory %q inaccessible (err: %v); no coverage data written", s.outdir, err)
    	}
    	if !fi.IsDir() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:57:47 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/file/FileCollectionSymlinkIntegrationTest.groovy

            def output = file("output.txt")
    
            buildFile << """
                class CustomTask extends DefaultTask {
                    @InputDirectory File inputDirectoryWithBrokenLink
    
                    @OutputFile File output
    
                    @TaskAction execute() {
                        output.text = inputDirectoryWithBrokenLink.list()
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  6. tools/istio-clean-iptables/pkg/cmd/testdata/dns.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 -t nat -D ISTIO_OUTPUT -p udp --dport 53 -m owner --uid-owner 1337 -j RETURN
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 15:51:15 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. tools/istio-clean-iptables/pkg/cmd/testdata/outbound-owner-groups-exclude.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 -t nat -D ISTIO_OUTPUT -p udp --dport 53 -m owner --uid-owner 1337 -j RETURN
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 15:51:15 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  8. tensorflow/c/experimental/ops/gen/cpp/views/op_view.cc

          output_args_(op_.Outputs().begin(), op_.Outputs().end()),
          argument_attrs_(op_.Attributes().begin(), op_.Attributes().end()) {
      // Initialize function arguments
      all_arguments_.push_back(OpArgumentView("AbstractContext*", "ctx"));
      for (const auto& arg : op_.Inputs()) {
        all_arguments_.push_back(OpArgumentView(arg));
      }
      for (const auto& arg : op_.Outputs()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 03 07:02:00 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  9. platforms/software/testing-base-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/redirector/TestOutputRedirectorTest.groovy

            redirector.errForwarder.outputOwner == "2"
        }
    
        def "passes output events"() {
            def f = new TestOutputRedirector.Forwarder(processor, TestOutputEvent.Destination.StdErr)
            f.outputOwner = "5"
    
            when: f.onOutput("ala")
    
            then:
            1 * processor.output("5", { DefaultTestOutputEvent e ->
                e.destination == TestOutputEvent.Destination.StdErr
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheIntegrationTest.groovy

            when:
            configurationCacheRun ":a:b:help", ":a:c:help"
    
            then:
            result.groupedOutput.task(":a:b:help").output == firstRunOutput.task(":a:b:help").output
            result.groupedOutput.task(":a:c:help").output == firstRunOutput.task(":a:c:help").output
        }
    
        def "captures changes applied in task graph whenReady listener"() {
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 12.7K bytes
    - Viewed (0)
Back to top