Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 326 for CheckM (0.35 sec)

  1. tests/integration/security/authz_test.go

    	t.Helper()
    	// Set check now, as FillDefaults requires it
    	b.opts.Check = check.OK()
    	// Fill in the defaults; we need this to get the dest protocol
    	b.opts.FillDefaultsOrFail(t)
    	if b.allow {
    		b.opts.Check = check.And(check.OK(), check.ReachedTargetClusters(t))
    	} else {
    		b.opts.Check = check.Forbidden(b.opts.Port.Protocol)
    	}
    	return b
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 23:36:51 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  2. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    // excluded from being considered for disruption checks by the node controller.
    const labelNodeDisruptionExclusion = "node.kubernetes.io/exclude-disruption"
    
    func isNodeExcludedFromDisruptionChecks(node *v1.Node) bool {
    	if _, ok := node.Labels[labelNodeDisruptionExclusion]; ok {
    		return true
    	}
    	return false
    }
    
    // tryUpdateNodeHealth checks a given node's conditions and tries to update it. Returns grace period to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/quantization/lite/quantize_model_test.cc

                  Eq(TensorType_INT8));
    
      // Check op and versioning.
      EXPECT_THAT(model_.operator_codes, SizeIs(1));
      EXPECT_THAT(GetBuiltinCode(model_.operator_codes[0].get()),
                  Eq(BuiltinOperator_FULLY_CONNECTED));
      ASSERT_THAT(model_.operator_codes[0]->version, Eq(5));
    
      // check the scale
      auto float_input_quant_params =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  4. src/runtime/mgc.go

    // objects.
    func gcMarkDone() {
    	// Ensure only one thread is running the ragged barrier at a
    	// time.
    	semacquire(&work.markDoneSema)
    
    top:
    	// Re-check transition condition under transition lock.
    	//
    	// It's critical that this checks the global work queues are
    	// empty before performing the ragged barrier. Otherwise,
    	// there could be global work that a P could take after the P
    	// has passed the ragged barrier.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_composite_functions.cc

        return success();
      }
    };
    
    // Checks if input weights are quantized only.
    bool IsQuantizedCallforDynamicRange(TF::PartitionedCallOp call_op) {
      bool has_quantized_types_for_weights = false;
      std::unique_ptr<OpQuantSpec> spec = GetTFOpQuantSpec(call_op);
    
      for (int32_t cur_idx = 0; cur_idx < call_op.getArgs().size(); cur_idx++) {
        // Check if the only the weight index has QuantizeCastOp.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

        return success();
      }
    };
    
    
    // The below pattern is equivalent to the DRR rule below
    // The checks are dependent on generated values, so we can't add
    // the checks on intermediate values, ideally we should find equivalent
    // checks that guarantees the resultant ops are valid.
    // The extra conditions are the broadcasting conditions.
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  7. src/time/time_test.go

    	// for nanoseconds in an int64.)
    	if err := quick.Check(f32, cfg); err != nil {
    		t.Fatal(err)
    	}
    	if err := quick.Check(f, cfg); err != nil {
    		t.Fatal(err)
    	}
    }
    
    func TestUnixMilli(t *testing.T) {
    	f := func(msec int64) bool {
    		t := UnixMilli(msec)
    		return t.UnixMilli() == msec
    	}
    	cfg := &quick.Config{MaxCount: 10000}
    	if err := quick.Check(f, cfg); err != nil {
    		t.Fatal(err)
    	}
    }
    
    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. tensorflow/compiler/jit/mark_for_compilation_pass_test.cc

      Output a = ops::Placeholder(root.WithOpName("test/a"), DT_FLOAT);
      Output b = ops::Placeholder(root.WithOpName("test/b"), DT_FLOAT);
      Output check =
          ops::CheckNumerics(root.WithOpName("test/check"), a, "test/check");
      Output ge = ops::GreaterEqual(root.WithOpName("test/greaterequal"), check, b);
      Operation assert = ops::Assert(root.WithOpName("test/assert"), ge, {a, b});
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 10:11:10 UTC 2024
    - 79.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/api_test.go

    		"package p",
    	}
    
    	var conf Config
    	pkg := NewPackage("p", "p")
    	var info Info
    	check := NewChecker(&conf, pkg, &info)
    
    	for _, src := range sources {
    		if err := check.Files([]*syntax.File{mustParse(src)}); err != nil {
    			t.Error(err)
    		}
    	}
    
    	// check InitOrder is [x y]
    	var vars []string
    	for _, init := range info.InitOrder {
    		for _, v := range init.Lhs {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    +
    For the input tracking to ignore these file system checks on the specific paths, the Gradle property `org.gradle.configuration-cache.inputs.unsafe.ignore.file-system-checks`, with the list of the paths, relative to the root project directory and separated by `;`, can be used.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
Back to top