Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 855 for SELF (5.37 sec)

  1. staging/src/k8s.io/api/core/v1/well_known_labels.go

    	LabelNamespaceSuffixKubelet = "kubelet.kubernetes.io"
    	// LabelNamespaceSuffixNode is an allowed label namespace suffix kubelets can self-set ([*.]node.kubernetes.io/*)
    	LabelNamespaceSuffixNode = "node.kubernetes.io"
    
    	// LabelNamespaceNodeRestriction is a forbidden label namespace that kubelets may not self-set when the NodeRestriction admission plugin is enabled
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 19 00:36:22 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  2. pkg/apis/certificates/fuzzer/fuzzer.go

    var Funcs = func(codecs runtimeserializer.CodecFactory) []interface{} {
    	return []interface{}{
    		func(obj *certificates.CertificateSigningRequestSpec, c fuzz.Continue) {
    			c.FuzzNoCustom(obj) // fuzz self without calling this function again
    			obj.Usages = []certificates.KeyUsage{certificates.UsageKeyEncipherment}
    			obj.SignerName = "example.com/custom-sample-signer"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 02 03:38:15 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfr/python/tfr_gen_test.py

      return y
    
    
    class TFRGenTestBase(test.TestCase):
    
      def _check_code(self, tfr_code, exp_tfr_code):
        return self.assertTrue(fw.check(str(tfr_code), exp_tfr_code), str(tfr_code))
    
    
    class TFRGenTensorTest(TFRGenTestBase):
      """MLIR Generation Tests for MLIR TFR Program."""
    
      def test_tfr_loc(self):
        mlir_code = tfr_gen(sys.modules[__name__], '_tfr_loc', [test_ops])
        mlir_code_exp = r"""
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 13 16:33:28 UTC 2021
    - 28.8K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/graph/GraphConstants.java

              + "that allows parallel edges, call allowsParallelEdges(true) on the Builder.";
      static final String SELF_LOOPS_NOT_ALLOWED =
          "Cannot add self-loop edge on node %s, as self-loops are not allowed. To construct a graph "
              + "that allows self-loops, call allowsSelfLoops(true) on the Builder.";
      static final String NOT_AVAILABLE_ON_UNDIRECTED =
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  5. pkg/apis/flowcontrol/fuzzer/fuzzer.go

    var Funcs = func(codecs runtimeserializer.CodecFactory) []interface{} {
    	return []interface{}{
    		func(obj *flowcontrol.LimitedPriorityLevelConfiguration, c fuzz.Continue) {
    			c.FuzzNoCustom(obj) // fuzz self without calling this function again
    
    			// NOTE: setting a zero value here will cause the roundtrip
    			// test (from internal to v1beta2, v1beta1) to fail
    			if obj.NominalConcurrencyShares == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfr/examples/customization/test_ops_test.py

    from tensorflow.python.framework import test_ops
    from tensorflow.python.platform import test
    
    
    class TestOpsDefsTest(test_utils.OpsDefsTest):
    
      def test_test_ops(self):
        attr = tf.function(test_ops.test_attr)(tf.float32)
        self.assertAllClose(attr.numpy(), 100.0)
    
    
    if __name__ == '__main__':
      os.environ['TF_MLIR_TFR_LIB_DIR'] = (
          'tensorflow/compiler/mlir/tfr/examples/customization')
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 17 22:41:04 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  7. platforms/jvm/plugins-groovy/src/integTest/groovy/org/gradle/groovy/GroovyLibraryIntegrationTest.groovy

                package support
                import groovy.transform.CompileStatic
    
                @CompileStatic
                class FrenchStrings {
                    static int getTaille(String self) { self.length() }
                }
            """
            file("src/main/groovy/Consumer.groovy") << """
                import groovy.transform.CompileStatic
    
                ${cs ? '@CompileStatic' : ''}
                void check() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 18:44:49 UTC 2023
    - 3K bytes
    - Viewed (0)
  8. cmd/erasure-coding.go

    				fmt.Fprintf(os.Stderr, "%v: error on self-test [d:%d,p:%d]: want %#v, got %#v\n", algo, conf[0], conf[1], a, b)
    				ok = false
    				continue
    			}
    			// Delete first shard and reconstruct...
    			first := encoded[0]
    			encoded[0] = nil
    			failOnErr(e.DecodeDataBlocks(encoded))
    			if a, b := first, encoded[0]; !bytes.Equal(a, b) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jan 31 02:11:45 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  9. subprojects/core/src/testInterceptors/java/org/gradle/internal/classpath/CallInterceptionFilteringTestBytecodeUpgradeDeclaration.java

        @InterceptCalls
        @CallableKind.InstanceMethod
        @SuppressWarnings("NewMethodNamingConvention")
        public static void intercept_testBytecodeUpgrade(@ParameterKind.Receiver CallInterceptionFilteringTestReceiver self) {
            self.intercepted = "testBytecodeUpgrade()";
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 17:53:39 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tfr/examples/mnist/mnist_train_test.py

    ]
    
    
    class MnistTrainTest(test_util.TensorFlowTestCase, parameterized.TestCase):
    
      @combinations.generate(combinations.combine(strategy=strategies))
      def testMnistTrain(self, strategy):
        accuracy = mnist_train.main(strategy)
        self.assertGreater(accuracy, 0.7, 'accuracy sanity check')
    
    
    if __name__ == '__main__':
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jul 24 03:38:45 UTC 2021
    - 1.5K bytes
    - Viewed (0)
Back to top