Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 264 for capture1 (0.28 sec)

  1. tests/integration/ambient/cnirepair/main_test.go

    	// its doing something unique to that specific test.
    	apps = &EchoDeployments{}
    )
    
    type EchoDeployments struct {
    	// Namespace echo apps will be deployed
    	Namespace namespace.Instance
    	// Captured echo service
    	Captured echo.Instances
    	// Uncaptured echo Service
    	Uncaptured echo.Instances
    	// Sidecar echo services with sidecar
    	Sidecar echo.Instances
    
    	// All echo services
    	All echo.Instances
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 09 09:12:45 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/DefaultExecutionStateChangeDetector.java

            BeforeExecutionState thisExecution,
            IncrementalInputProperties incrementalInputProperties
        ) {
            // Capture changes in execution outcome
            ChangeContainer previousSuccessState = new PreviousSuccessChanges(
                lastExecution.isSuccessful());
    
            // Capture changes to implementation
    
            // After validation, the current implementations and previous implementations can't be unknown.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:34 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  3. src/internal/coverage/cfile/testdata/harness.go

    }
    
    // This test is designed to ensure that write errors are properly
    // handled by the code that writes out coverage data. It repeatedly
    // invokes the 'emit to writer' apis using a specially crafted writer
    // that captures the total number of expected writes, then replays the
    // execution N times with a manufactured write error at the
    // appropriate spot.
    func emitToFailingWriter() {
    	log.SetPrefix("emitToFailingWriter: ")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 19:41:02 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  4. releasenotes/notes/50804.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    issue:
      - 50736
    releaseNotes:
    - |
      **Added** Allow pods to be opted out of ambient capture using the `istio.io/dataplane-mode=none` label.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 19:29:42 UTC 2024
    - 387 bytes
    - Viewed (0)
  5. tensorflow/c/tf_status_helper.cc

                          TF_Message(tf_status));
      TF_ForEachPayload(
          tf_status,
          [](const char* key, const char* value, void* capture) {
            absl::Status* status = static_cast<absl::Status*>(capture);
            status->SetPayload(key, absl::Cord(absl::string_view(value)));
          },
          &status);
      return status;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 23 06:12:29 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/LoggingManagerInternal.java

         */
        LoggingManagerInternal captureSystemSources();
    
        /**
         * Sets the log level to capture stdout at. Does not enable capture.
         */
        @Override
        LoggingManagerInternal captureStandardOutput(LogLevel level);
    
        /**
         * Sets the log level to capture stderr at. Does not enable capture.
         */
        @Override
        LoggingManagerInternal captureStandardError(LogLevel level);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. 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)
  8. subprojects/core/src/main/java/org/gradle/internal/operations/trace/BuildOperationTrace.java

         * that will be captured by this trace. When enabled, only operations matching this filter
         * will be captured. This enables capturing a build operation traces of larger builds that
         * would otherwise be too large to capture.
         *
         * When this property is set, a complete build operation tree is not captured. In this
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  9. 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)
  10. cni/pkg/iptables/iptables.go

    // via the nodeIP
    // - kubelet (node-local healthchecks, which we do not capture)
    // - kube-proxy (fowarded/proxied traffic from LoadBalancer-backed services, potentially with public IPs, which we must capture)
    func (cfg *IptablesConfigurator) CreateHostRulesForHealthChecks(hostSNATIP, hostSNATIPV6 *netip.Addr) error {
    	// Append our rules here
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 21:45:18 UTC 2024
    - 19.9K bytes
    - Viewed (0)
Back to top