Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 257 for identity1 (0.4 sec)

  1. pkg/spiffe/spiffe_test.go

    func TestIdentity(t *testing.T) {
    	cases := []struct {
    		input    string
    		expected *Identity
    	}{
    		{
    			"spiffe://td/ns/ns/sa/sa",
    			&Identity{
    				TrustDomain:    "td",
    				Namespace:      "ns",
    				ServiceAccount: "sa",
    			},
    		},
    		{
    			"spiffe://td.with.dots/ns/ns.with.dots/sa/sa.with.dots",
    			&Identity{
    				TrustDomain:    "td.with.dots",
    				Namespace:      "ns.with.dots",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  2. pkg/workloadapi/workload.proto

      string network = 4;
    
      // Protocol that should be used to connect to this workload.
      TunnelProtocol tunnel_protocol = 5;
    
      // The SPIFFE identity of the workload. The identity is joined to form spiffe://<trust_domain>/ns/<namespace>/sa/<service_account>.
      // TrustDomain of the workload. May be elided if this is the mesh wide default (typically cluster.local)
      string trust_domain = 6;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  3. tests/integration/security/file_mounted_certs/main_test.go

          # We need to turn off the XDS Auth because test certificates only have a fixed/hardcoded identity, but the identity of the actual
          # deployed test services changes on each run due to a randomly generated namespace suffixes.
          # Turning the XDS-Auth ON will result in the error messages like:
          # Unauthorized XDS: 10.1.0.159:41960 with identity [spiffe://cluster.local/ns/mounted-certs/sa/client client.mounted-certs.svc]:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/passes/passes.h

    // as GraphDef.
    std::unique_ptr<OperationPass<ModuleOp>>
    CreateMergeInitializerFunctionOpsToMainPass();
    
    // Creates a pass that moves & merges the "@tf_quant__save" function to "@main"
    // function. A new `IdentityOp` will be created. It will have control dependency
    // to the save function and returns the file_prefix argument (typed
    // `tensor<!tf_type.string>`). The file_prefix argument, which can be identified
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  5. src/crypto/tls/ticket.go

    //
    // If the ticket can't be decrypted or parsed, DecryptTicket returns (nil, nil).
    func (c *Config) DecryptTicket(identity []byte, cs ConnectionState) (*SessionState, error) {
    	ticketKeys := c.ticketKeys(nil)
    	stateBytes := c.decryptTicket(identity, ticketKeys)
    	if stateBytes == nil {
    		return nil, nil
    	}
    	s, err := ParseSessionState(stateBytes)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  6. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/vfs/impl/DefaultFileSystemAccess.java

        }
    
        @Override
        public FileSystemLocationSnapshot read(String location) {
            return readSnapshotFromLocation(
                location,
                Function.identity(),
                () -> snapshot(location, SnapshottingFilter.EMPTY)
            );
        }
    
        @Override
        public Optional<HashCode> readRegularFileContentHash(String location) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:35 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/internal/mlir_bridge_pass_util_test.cc

      return FunctionDefHelper::Define(
          /*function_name=*/"PassThroughResource",
          /*arg_def=*/{"in: resource"},
          /*ret_def=*/{"out: resource"},
          /*attr_def=*/{},
          /*node_def=*/
          {{{"out"}, "Identity", {"in"}, {{"T", DataType::DT_RESOURCE}}}});
    }
    
    TEST(IsSupportedByNonReplicatedBridge, NonReplicatedGraph) {
      const FunctionDef& fd = PassThroughResource();
      FunctionDefLibrary flib;
      *flib.add_function() = fd;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 19:51:50 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheTaskSerializationIntegrationTest.groovy

            configurationCacheRun "ok"
            configurationCacheRun "ok"
    
            then:
            outputContains("thisTask = true")
            outputContains("bean.owner = true")
        }
    
        def "retains Property identity for each task"() {
            buildFile << """
                abstract class SomeTask extends DefaultTask {
                    @Internal
                    abstract Property<String> getValue()
    
                    @TaskAction
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  9. guava-testlib/src/com/google/common/testing/FreshValueGenerator.java

        }
    
        @Override
        public int hashCode() {
          return identity;
        }
    
        @Override
        public boolean equals(@Nullable Object obj) {
          if (obj instanceof FreshInvocationHandler) {
            FreshInvocationHandler that = (FreshInvocationHandler) obj;
            return identity == that.identity;
          }
          return false;
        }
    
        @Override
        public String toString() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 17 16:33:44 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  10. android/guava-testlib/src/com/google/common/testing/FreshValueGenerator.java

        }
    
        @Override
        public int hashCode() {
          return identity;
        }
    
        @Override
        public boolean equals(@Nullable Object obj) {
          if (obj instanceof FreshInvocationHandler) {
            FreshInvocationHandler that = (FreshInvocationHandler) obj;
            return identity == that.identity;
          }
          return false;
        }
    
        @Override
        public String toString() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 17 16:33:44 UTC 2024
    - 28K bytes
    - Viewed (0)
Back to top