Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 184 for capsule (0.08 sec)

  1. tools/istio-iptables/pkg/capture/run.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    package capture
    
    import (
    	"fmt"
    	"net"
    	"net/netip"
    	"os"
    	"strings"
    
    	"github.com/vishvananda/netlink"
    
    	"istio.io/istio/pkg/log"
    	"istio.io/istio/tools/istio-iptables/pkg/builder"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  2. istioctl/pkg/workload/workload.go

    	configureCmd.PersistentFlags().BoolVar(&autoRegister, "autoregister", false, "Creates a WorkloadEntry upon connection to istiod (if enabled in pilot).")
    	configureCmd.PersistentFlags().BoolVar(&dnsCapture, "capture-dns", true, "Enables the capture of outgoing DNS packets on port 53, redirecting to istio-agent")
    	configureCmd.PersistentFlags().StringVar(&internalIP, "internalIP", "", "Internal IP address of the workload")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/internal/work/DefaultAsyncWorkTrackerTest.groovy

            e.causes.size() == 1
    
            and:
            e.causes.get(0).message == "BOOM!"
    
            and:
            instant.waitFinished >= instant.completeWorker2
        }
    
        def "can capture failures from work that is already complete"() {
            def operation1 = Mock(BuildOperationRef)
    
            given:
            asyncWorkTracker.registerWork(operation1, new AsyncWorkCompletion() {
                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 06 04:53:10 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/integTest/groovy/org/gradle/integtests/ExecIntegrationTest.groovy

            and:
            run "run"
            then:
            executedAndNotSkipped ":run"
        }
    
        @UnsupportedWithConfigurationCache(iterationMatchers = [".*Task", ".*ProjectMethod"])
        def "can capture output of #task"() {
    
            given:
            buildFile << """
                import org.gradle.internal.jvm.Jvm
                import static org.gradle.util.internal.TextUtil.normaliseFileAndLineSeparators
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 20:01:36 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  5. guava/src/com/google/common/reflect/Types.java

            if (new TypeCapture<Entry<String, int[][]>>() {}.capture()
                .toString()
                .contains("java.util.Map.java.util.Map")) {
              CURRENT = JAVA8;
            } else {
              CURRENT = JAVA9;
            }
          } else if (new TypeCapture<int[]>() {}.capture() instanceof Class) {
            CURRENT = JAVA7;
          } else {
            CURRENT = JAVA6;
          }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 17 16:33:44 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  6. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/AbstractJUnitCategoriesOrTagsCoverageIntegrationSpec.groovy

                return source
            }
        }
    
        /**
         * Fixture for capturing simple test class requirements.  Note that this class should be used only for simple test classes
         * and should not be enhanced to capture complex test classes with arbitrary features.  Complex test classes should be captured
         * with a raw {@link TestSource} fixture.
         */
        class TestClass {
            final String name
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 01 14:54:49 UTC 2023
    - 15.2K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/artifacts/repositories/IvyArtifactRepository.java

         *
         * @return The meta-data provider for this repository.
         */
        IvyArtifactRepositoryMetaDataProvider getResolve();
    
        /**
         * Sets a custom metadata rule, which is capable of supplying the metadata of a component (status, status scheme, changing flag)
         * whenever a dynamic version is requested. It can be used to provide metadata directly, instead of having to parse the Ivy
         * descriptor.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 02 20:32:11 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/xla_device_context.cc

          cpu_tensor, &literal));
    
      TensorReference ref(*device_tensor);
      const bool device_allows_sync_on_completion =
          device->AllowsSyncOnCompletion();
      // Explicitly capture device_to_host_stream to make sure the stream is alive
      // before the transfer finishes.
      transfer_manager_->TransferLiteralFromDevice(
          device_to_host_stream.get(), xla_tensor->shaped_buffer(), literal,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 00:36:08 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  9. pkg/istio-agent/agent.go

    	// to XDS istio.io/debug.
    	ProxyXDSDebugViaAgent bool
    	// Port value for the debugging endpoint.
    	ProxyXDSDebugViaAgentPort int
    	// DNSCapture indicates if the XDS proxy has dns capture enabled or not
    	DNSCapture bool
    	// DNSAddr is the DNS capture address
    	DNSAddr string
    	// DNSForwardParallel indicates whether the agent should send parallel DNS queries to all upstream nameservers.
    	DNSForwardParallel bool
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  10. src/internal/trace/trace_test.go

    	testPath := filepath.Join("./testdata/testprog", progName)
    	testName := progName
    	runTest := func(t *testing.T, stress bool, extraGODEBUG string) {
    		// Run the program and capture the trace, which is always written to stdout.
    		cmd := testenv.Command(t, testenv.GoToolPath(t), "run")
    		if race.Enabled {
    			cmd.Args = append(cmd.Args, "-race")
    		}
    		cmd.Args = append(cmd.Args, testPath)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 18.5K bytes
    - Viewed (0)
Back to top