Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 254 for tile (0.04 sec)

  1. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

      "TFL::HasOneUseOrUsedByOnlyBinaryOps($0)">>;
    
    // Pattern for skipping Tile if it is mainly for broadcasting and the
    // Op is already supporting broadcasting.
    multiclass FuseTileBroadcastIntoFollowingBinary<Op BinaryOp> {
      def FuseTileBroadcastToBinaryOp1#BinaryOp : Pat<
        (BinaryOp:$result (TFL_TileOp $input, (Arith_ConstantOp $tile)),
         $operand, $act_func),
        (BinaryOp $input, $operand, $act_func),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  2. src/time/time.go

    // that the methods [Time.GobDecode], [Time.UnmarshalBinary], [Time.UnmarshalJSON] and
    // [Time.UnmarshalText] are not concurrency-safe.
    //
    // Time instants can be compared using the [Time.Before], [Time.After], and [Time.Equal] methods.
    // The [Time.Sub] method subtracts two instants, producing a [Duration].
    // The [Time.Add] method adds a Time and a Duration, producing a Time.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  3. cluster/gce/windows/k8s-node-setup.psm1

    # Decodes the base64 $Data string and writes it as binary to $File. Does
    # nothing if $File already exists and $REDO_STEPS is not set.
    function Write_PkiData {
      param (
        [parameter(Mandatory=$true)] [string] $Data,
        [parameter(Mandatory=$true)] [string] $File
      )
    
      if (-not (ShouldWrite-File $File)) {
        return
      }
    
      # This command writes out a PEM certificate file, analogous to "base64
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/cluster_tls_test.go

    			expectTransportSocket:      true,
    			expectTransportSocketMatch: false,
    			validateTLSContext: func(t *testing.T, ctx *tls.UpstreamTlsContext) {
    				rootName := "file-root:" + mutualTLSSettingsWithCerts.CaCertificates
    				certName := fmt.Sprintf("file-cert:%s~%s", mutualTLSSettingsWithCerts.ClientCertificate, mutualTLSSettingsWithCerts.PrivateKey)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 03:53:05 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  5. pkg/kubelet/kuberuntime/kuberuntime_container.go

    	for _, file := range files {
    		if file.IsDir() {
    			continue
    		}
    		matches := restartCountLogFileRegex.FindStringSubmatch(file.Name())
    		if len(matches) == 0 {
    			continue
    		}
    		count, err := strconv.Atoi(matches[1])
    		if err != nil {
    			// unlikely kubelet created this file,
    			// likely custom file with random numbers as a name
    			continue
    		}
    		count++
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    partially provisioned toolchain in place **with a marker file indicating that the toolchain was fully provisioned**. This could lead to strange behavior with the toolchain. In Gradle 8.9, the toolchain is now fully provisioned before the marker file is written. However, in order to not detect potentially broken toolchains, a different marker file (`.ready`) is used. This means that all of your existing toolchains will be re-provisioned the first time you use them with Gradle 8.9. Gradle 8.9 also writes...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  7. src/time/time_test.go

    		} else if !equalTimeAndZone(jsonTime, tt.time) {
    			t.Errorf("Unmarshaled time = %v, want %v", jsonTime, tt.time)
    		}
    	}
    }
    
    func TestUnmarshalInvalidTimes(t *testing.T) {
    	tests := []struct {
    		in   string
    		want string
    	}{
    		{`{}`, "Time.UnmarshalJSON: input is not a JSON string"},
    		{`[]`, "Time.UnmarshalJSON: input is not a JSON string"},
    		{`"2000-01-01T1:12:34Z"`, `<nil>`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/apis/apiserver/validation/validation_test.go

    						Webhook: &api.WebhookConfiguration{
    							Timeout:                                  metav1.Duration{Duration: 5 * time.Second},
    							AuthorizedTTL:                            metav1.Duration{Duration: 5 * time.Minute},
    							UnauthorizedTTL:                          metav1.Duration{Duration: 30 * time.Second},
    							FailurePolicy:                            "NoOpinion",
    							SubjectAccessReviewVersion:               "v1",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 87.2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/css/manual.css

    .subheader,
    .admonitionblock td.content>.title,
    .audioblock>.title,
    .exampleblock>.title,
    .imageblock>.title,
    .listingblock>.title,
    .literalblock>.title,
    .stemblock>.title,
    .openblock>.title,
    .paragraph>.title,
    .quoteblock>.title,
    table.tableblock>.title,
    .verseblock>.title,
    .videoblock>.title,
    .dlist>.title,
    .olist>.title,
    .ulist>.title,
    .qlist>.title,
    .hdlist>.title {
    	line-height: 1.45;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    						"field": "dGhpcyBpcyBwYXNzd29yZA==",
    					}},
    				patchMyCRDV1Beta1Schema{
    					"change `field`'s format to date-time",
    					map[string]interface{}{
    						"properties": map[string]interface{}{
    							"field": map[string]interface{}{
    								"format": "date-time",
    							},
    						},
    					}},
    				applyPatchOperation{
    					"change otherField, ratchet `field`'s invalid byte format",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
Back to top