Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 90 for identity1 (0.2 sec)

  1. cmd/iam.go

    	"github.com/minio/minio/internal/color"
    	"github.com/minio/minio/internal/config"
    	xldap "github.com/minio/minio/internal/config/identity/ldap"
    	"github.com/minio/minio/internal/config/identity/openid"
    	idplugin "github.com/minio/minio/internal/config/identity/plugin"
    	xtls "github.com/minio/minio/internal/config/identity/tls"
    	"github.com/minio/minio/internal/config/policy/opa"
    	polplugin "github.com/minio/minio/internal/config/policy/plugin"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/load.go

    //
    // After all available packages have been loaded, we examine the results to
    // identify any requested or imported packages that are still missing, and if
    // so, which modules we could add to the module graph in order to make the
    // missing packages available. We add those to the module graph and iterate,
    // until either all packages resolve successfully or we cannot identify any
    // module that would resolve any remaining missing package.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  3. pkg/workloadapi/workload.pb.go

    	TunnelProtocol TunnelProtocol `protobuf:"varint,5,opt,name=tunnel_protocol,json=tunnelProtocol,proto3,enum=istio.workload.TunnelProtocol" json:"tunnel_protocol,omitempty"`
    	// 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)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

      Location loc = orig_while_op->getLoc();
    
      OpBuilder builder(module);
    
      // A special fix for models that pass resources into helper functions and
      // return the same resource (after passing it through multiple identity ops).
      // Some subsequent ops use the original resource and others use the returned
      // version. Pipelining splits these uses across loop iterations resulting in
      // terrible things.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    [[sec:task_input_validation]]
    === Validation at runtime
    
    When executing the build Gradle checks if task types are declared with the proper annotations.
    It tries to identify problems where e.g. annotations are used on incompatible types, or on setters etc.
    Any getter not annotated with an input/output annotation is also flagged.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/quantization/lite/quantize_model_test.cc

      EXPECT_THAT(subgraph->tensors[0]->quantization->zero_point, SizeIs(1));
    
      // Output Tensor. The name given in the generated
      // .bin test file is 'Identity' and should be preserved
      EXPECT_THAT(subgraph->tensors[2]->type, Eq(tensor_type_));
      EXPECT_THAT(subgraph->tensors[2]->name, Eq("Identity"));
      EXPECT_THAT(subgraph->tensors[2]->quantization->scale, SizeIs(1));
      EXPECT_THAT(subgraph->tensors[2]->quantization->zero_point, SizeIs(1));
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  7. src/index/suffixarray/sais2.go

    	//
    	// The backward scan lets us maintain the current type,
    	// update it when we see c0 != c1, and otherwise leave it alone.
    	// We want to identify all S positions with a preceding L.
    	// Position len(text) is one such position by definition, but we have
    	// nowhere to write it down, so we eliminate it by untruthfully
    	// setting isTypeS = false at the start of the loop.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  8. src/net/http/request.go

    	// also treated as unknown.
    	ContentLength int64
    
    	// TransferEncoding lists the transfer encodings from outermost to
    	// innermost. An empty list denotes the "identity" encoding.
    	// TransferEncoding can usually be ignored; chunked encoding is
    	// automatically added and removed as necessary when sending and
    	// receiving requests.
    	TransferEncoding []string
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/lower_tf.mlir

      func.return %0 : tensor<4xf32>
    }
    
    
    // CHECK-LABEL: @round_int
    func.func @round_int(%arg0: tensor<2xi32>) -> tensor<2xi32> {
      // CHECK: [[IDENTITY:%.+]] = "tf.Identity"(%arg0)
      %0 = "tf.Round"(%arg0) : (tensor<2xi32>) -> tensor<2xi32>
      // CHECK: return [[IDENTITY]]
      func.return %0 : tensor<2xi32>
    }
    
    // CHECK-LABEL: @round
    func.func @round(%arg0: tensor<2xf32>) -> tensor<2xf32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 05 18:35:42 UTC 2024
    - 92K bytes
    - Viewed (0)
  10. src/net/url/url_test.go

    		actual := QueryEscape(tt.in)
    		if tt.out != actual {
    			t.Errorf("QueryEscape(%q) = %q, want %q", tt.in, actual, tt.out)
    		}
    
    		// for bonus points, verify that escape:unescape is an identity.
    		roundtrip, err := QueryUnescape(actual)
    		if roundtrip != tt.in || err != nil {
    			t.Errorf("QueryUnescape(%q) = %q, %s; want %q, %s", actual, roundtrip, err, tt.in, "[no error]")
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:52:38 UTC 2024
    - 52.1K bytes
    - Viewed (0)
Back to top