Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 96 of 96 for getOther (0.14 sec)

  1. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

          // EXPLICIT padding mode and the associated attribute is limited to
          // Conv2D. So, fetch attribute by identifier instead of the
          // op.explicit_paddings() attribute getter.
          explicit_paddings =
              op->template getAttrOfType<ArrayAttr>("explicit_paddings").getValue();
        }
    
        SmallVector<int64_t, num_spatial_dims> spatial_dim_indices;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/Project.java

     * <code>rootProject</code> property.  The properties of this scope are readable or writable depending on the presence
     * of the corresponding getter or setter method.</li>
     *
     * <li>The extra properties of the project.  Each project maintains a map of extra properties, which
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

      );
    
      TF_DerivedOperandSizeAttr N = TF_DerivedOperandSizeAttr<0>;
    }
    
    
    // Following ops are manually defined as the ops are using inputs with name `t`
    // that will lead to conflict with getter for attribute `T` as both becomes
    // getT().
    def TF_BatchNormWithGlobalNormalizationOp : TF_Op<"BatchNormWithGlobalNormalization", [Pure]> {
      let summary = "Batch normalization.";
    
      let description = [{
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    The old convention object defines the `distsDirName`, `libsDirName` and `archivesBaseName` properties with simple getter and setter methods.
    Those methods are available in the extension only to maintain backwards compatibility.
    Build scripts should solely use the properties of type `Property`:
    
    ====
    [.multi-language-sample]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  5. pkg/scheduler/internal/queue/scheduling_queue_test.go

    				for _, pInfo := range test.operands[i] {
    					op(t, logger, queue, pInfo)
    				}
    			}
    
    			recorder.FlushMetrics()
    
    			if err := testutil.GatherAndCompare(metrics.GetGather(), strings.NewReader(test.wants), test.metricsName); err != nil {
    				t.Fatal(err)
    			}
    		})
    	}
    }
    
    // TestPerPodSchedulingMetrics makes sure pod schedule attempts is updated correctly while
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet_pods_test.go

    					testMetric(t, k, v)
    				}
    			}
    		})
    	}
    }
    
    func testMetric(t *testing.T, metricName string, expectedMetric string) {
    	t.Helper()
    	err := testutil.GatherAndCompare(metrics.GetGather(), strings.NewReader(expectedMetric), metricName)
    	if err != nil {
    		t.Error(err)
    	}
    }
    
    func TestGetNonExistentImagePullSecret(t *testing.T) {
    	secrets := make([]*v1.Secret, 0)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
Back to top