Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 323 for capture2 (0.16 sec)

  1. guava-tests/test/com/google/common/reflect/TypeVisitorTest.java

      public <T> void testVisitGenericArrayType() {
        Type type = new TypeCapture<T[]>() {}.capture();
        assertVisited(type);
        new BaseTypeVisitor() {
          @Override
          void visitGenericArrayType(GenericArrayType t) {}
        }.visit(type);
      }
    
      public <T> void testVisitParameterizedType() {
        Type type = new TypeCapture<Iterable<T>>() {}.capture();
        assertVisited(type);
        new BaseTypeVisitor() {
          @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 3.7K bytes
    - Viewed (0)
  2. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/capturing/objectFunction.capturing.txt

    No captured values...
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Aug 07 16:22:01 UTC 2023
    - 18 bytes
    - Viewed (0)
  3. pkg/test/framework/components/echo/workloadclass.go

    	TProxy      WorkloadClass = "tproxy"
    	Naked       WorkloadClass = "naked"
    	External    WorkloadClass = "external"
    	StatefulSet WorkloadClass = "statefulset"
    	Headless    WorkloadClass = "headless"
    	Captured    WorkloadClass = "captured"
    	Waypoint    WorkloadClass = "waypoint"
    	Standard    WorkloadClass = "standard"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 29 23:48:45 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  4. platforms/core-runtime/logging-api/src/main/java/org/gradle/api/logging/LoggingManager.java

         *
         * @return The log level. Returns null when standard output capture is disabled.
         */
        LogLevel getStandardOutputCaptureLevel();
    
        /**
         * Returns the log level that output written to System.err will be mapped to.
         *
         * @return The log level. Returns null when standard error capture is disabled.
         */
        LogLevel getStandardErrorCaptureLevel();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  5. tests/integration/iop-ambient-test-defaults.yaml

    spec:
      profile: ambient
      components:
        ingressGateways:
          - name: istio-ingressgateway
            enabled: true
      values:
        cni:
          ambient:
            # Some of the tests require DNS capture
            # For that, DNS capture must be enabled in the CNI
            # and DNS proxying must be enabled in ztunnel
            dnsCapture: true
        ztunnel:
          meshConfig:
            defaultConfig:
              proxyMetadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 17:12:52 UTC 2024
    - 952 bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/AbstractUserInputRenderer.java

            // This does leave a small window where some text may be captured prior to the prompt being fully displayed, however this is
            // better than doing things in the other order, where there will be a small window where text may not be captured after prompt is fully displayed.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 30 05:02:18 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  7. subprojects/core/src/testFixtures/groovy/org/gradle/test/fixtures/FileMetadataTestFixture.groovy

    class FileMetadataTestFixture {
        static maybeRoundLastModified(long lastModified) {
            // Some Java 8 versions on Unix only capture the seconds in lastModified, so we cut off the milliseconds returned from the filesystem as well.
            // For example, Oracle JDK 1.8.0_181-b13 does not capture milliseconds, while OpenJDK 1.8.0_242-b08 does.
            return (JavaVersion.current().java9Compatible || OperatingSystem.current().windows)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 04 02:08:21 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/integTest/resources/org/gradle/internal/logging/LoggingIntegrationTest/logging/project1/build.gradle

            System.err.println('A task error message which is logged at WARN level')
        }
    }
    
    // START SNIPPET task-capture-stdout
    task logInfo {
        logging.captureStandardOutput LogLevel.INFO
        doFirst {
            println 'A task message which is logged at INFO level'
        }
    }
    // END SNIPPET task-capture-stdout
    
    task nestedBuildLog(type: GradleBuild) {
        startParameter.currentDir = rootProject.file('nestedBuild')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  9. tools/istio-iptables/pkg/log/command.go

    	JumpOutbound            = Command{"JumpOutbound", "direct all traffic through ISTIO_OUTBOUND chain"}
    	ExcludeInboundPort      = Command{"ExcludeInboundPort", "exclude inbound port from capture"}
    	IncludeInboundPort      = Command{"IncludeInboundPort", "include inbound port for capture"}
    	InboundCapture          = Command{"InboundCapture", "redirect inbound request to proxy"}
    	KubevirtCommand         = Command{"KubevirtCommand", "Kubevirt outbound redirect"}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 15 16:33:57 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  10. releasenotes/notes/vm-iptables-inbound.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: networking
    issue:
    - 29412
    releaseNotes:
    - |
      **Improved** the `istioctl x workload` command to configure VMs to disable inbound `iptables` capture
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 05 06:42:43 UTC 2021
    - 254 bytes
    - Viewed (0)
Back to top