Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 82 for presenter (0.17 sec)

  1. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

      op->setAttr("_xla_has_host_transfer", builder.getBoolAttr(true));
      return op;
    }
    
    // Creates a tf._XlaSendFromHost or tf._XlaSendFromHostV2 op. If device ordinal
    // is present, a tf._XlaSendFromHostV2 op is created instead.
    Operation* CreateSendFromHostOp(OpBuilder& builder, Location loc,
                                    ValueRange inputs, Value compilation_key,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
  2. src/crypto/tls/common.go

    	ClientCAs *x509.CertPool
    
    	// InsecureSkipVerify controls whether a client verifies the server's
    	// certificate chain and host name. If InsecureSkipVerify is true, crypto/tls
    	// accepts any certificate presented by the server and any host name in that
    	// certificate. In this mode, TLS is susceptible to machine-in-the-middle
    	// attacks unless custom verification is used. This should be used only for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  3. cmd/api-errors.go

    		HTTPStatusCode: http.StatusConflict,
    	},
    	ErrNoAccessKey: {
    		Code:           "AccessDenied",
    		Description:    "No AWSAccessKey was presented",
    		HTTPStatusCode: http.StatusForbidden,
    	},
    	ErrInvalidToken: {
    		Code:           "InvalidTokenId",
    		Description:    "The security token included in the request is invalid",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/convert_control_to_data_outputs.mlir

        // CHECK: tf_executor.fetch
        tf_executor.fetch
      }
      // CHECK: return
      func.return
    }
    
    // -----
    
    !tf_res = tensor<!tf_type.resource<tensor<f32>>>
    
    // Test presence of multiple callers of a while loop body
    
    // CHECK-LABEL: func @multiple_callers_while_body
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 18:35:00 UTC 2024
    - 68.9K bytes
    - Viewed (0)
  5. cmd/xl-storage.go

    	fi, err := Lstat(s.formatFile)
    	if err != nil {
    		// If the disk is still not initialized.
    		if osIsNotExist(err) {
    			if err = Access(s.drivePath); err == nil {
    				// Disk is present but missing `format.json`
    				return nil, errUnformattedDisk
    			}
    			if osIsNotExist(err) {
    				return nil, errDiskNotFound
    			} else if osIsPermission(err) {
    				return nil, errDiskAccessDenied
    			}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  6. src/runtime/mgcscavenge.go

    }
    
    // scavengeIndex is a structure for efficiently managing which pageAlloc chunks have
    // memory available to scavenge.
    type scavengeIndex struct {
    	// chunks is a scavChunkData-per-chunk structure that indicates the presence of pages
    	// available for scavenging. Updates to the index are serialized by the pageAlloc lock.
    	//
    	// It tracks chunk occupancy and a generation counter per chunk. If a chunk's occupancy
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  7. src/encoding/json/decode_test.go

    		CaseName: Name(""),
    		in:       `{"embed1": {"Q": 1}}`,
    		ptr:      new(S6),
    		out:      &S6{embed1{1}},
    	}, {
    		// Issue 24153, check that we can still set forwarded fields even in
    		// the presence of a name conflict.
    		//
    		// This relies on obscure behavior of reflect where it is possible
    		// to set a forwarded exported field on an unexported embedded struct
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:40:14 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  8. src/fmt/fmt_test.go

    	{"%+10q", "⌘", `  "\u2318"`},
    	{"%-10q", "⌘", `"⌘"       `},
    	{"%+-10q", "⌘", `"\u2318"  `},
    	{"%010q", "⌘", `0000000"⌘"`},
    	{"%+010q", "⌘", `00"\u2318"`},
    	{"%-010q", "⌘", `"⌘"       `}, // 0 has no effect when - is present.
    	{"%+-010q", "⌘", `"\u2318"  `},
    	{"%#8q", "\n", `    "\n"`},
    	{"%#+8q", "\r", `    "\r"`},
    	{"%#-8q", "\t", "`	`     "},
    	{"%#+-8q", "\b", `"\b"    `},
    	{"%q", "abc\xffdef", `"abc\xffdef"`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  9. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // +optional
      optional string apiVersion = 2;
    }
    
    // UpdateOptions may be provided when updating an API object.
    // All fields in UpdateOptions should also be present in PatchOptions.
    message UpdateOptions {
      // When present, indicates that modifications should not be
      // persisted. An invalid or unrecognized dryRun directive will
      // result in an error response and no further processing of the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // +optional
      optional string apiVersion = 2;
    }
    
    // UpdateOptions may be provided when updating an API object.
    // All fields in UpdateOptions should also be present in PatchOptions.
    message UpdateOptions {
      // When present, indicates that modifications should not be
      // persisted. An invalid or unrecognized dryRun directive will
      // result in an error response and no further processing of the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
Back to top