Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 387 for capsule (0.7 sec)

  1. 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)
  2. 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)
  3. android/guava-tests/test/com/google/common/reflect/TypesTest.java

        ParameterizedType ourType =
            Types.newParameterizedTypeWithOwner(Map.class, Entry.class, String.class, int[][].class);
    
        new EqualsTester()
            .addEqualityGroup(jvmType, ourType)
            .addEqualityGroup(new TypeCapture<Entry<String, String>>() {}.capture())
            .addEqualityGroup(new TypeCapture<Map<String, Integer>>() {}.capture())
            .testEquals();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/reflect/TypesTest.java

        ParameterizedType ourType =
            Types.newParameterizedTypeWithOwner(Map.class, Entry.class, String.class, int[][].class);
    
        new EqualsTester()
            .addEqualityGroup(jvmType, ourType)
            .addEqualityGroup(new TypeCapture<Entry<String, String>>() {}.capture())
            .addEqualityGroup(new TypeCapture<Map<String, Integer>>() {}.capture())
            .testEquals();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  5. 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)
  6. istioctl/pkg/util/formatting/formatter_test.go

    		diag.MockResource("GrandCastle"),
    		"the castle is too old",
    	)
    
    	msgs := diag.Messages{firstMsg, secondMsg}
    	output, _ := Print(msgs, LogFormat, false)
    
    	g.Expect(output).To(Equal(
    		"Error [B1] (SoapBubble) Explosion accident: the bubble is too big\n" +
    			"Warning [C1] (GrandCastle) Collapse danger: the castle is too old",
    	))
    }
    
    func TestFormatter_PrintLogWithColor(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/server/scaninfo/DaemonScanInfoIntegrationSpec.groovy

            buildFile << """
            ${imports()}
    
            ${captureTask("capture", 1, 1, true)}
            """
    
            when:
            result = executer.withArgument('--no-daemon').withTasks('capture').run()
    
            then:
            executed(':capture')
            outputContains(SingleUseDaemonClient.MESSAGE)
    
            and:
            daemons.daemon.stops()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  8. 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)
  9. internal/s3select/sql/parser.go

    import (
    	"strings"
    
    	"github.com/alecthomas/participle"
    	"github.com/alecthomas/participle/lexer"
    )
    
    // Types with custom Capture interface for parsing
    
    // Boolean is a type for a parsed Boolean literal
    type Boolean bool
    
    // Capture interface used by participle
    func (b *Boolean) Capture(values []string) error {
    	*b = Boolean(strings.EqualFold(values[0], "true"))
    	return nil
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  10. 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)
Back to top