Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 128 for corerest (0.12 sec)

  1. src/testing/testing.go

    	}
    	running.Store(t.name, highPrecisionTimeNow())
    
    	// Instead of reducing the running count of this test before calling the
    	// tRunner and increasing it afterwards, we rely on tRunner keeping the
    	// count correct. This ensures that a sequence of sequential tests runs
    	// without being preempted, even when their parent is a parallel test. This
    	// may especially reduce surprises if *parallel == 1.
    	go tRunner(t, f)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  2. src/crypto/tls/handshake_messages.go

    }
    
    // marshalWithoutBinders returns the ClientHello through the
    // PreSharedKeyExtension.identities field, according to RFC 8446, Section
    // 4.2.11.2. Note that m.pskBinders must be set to slices of the correct length.
    func (m *clientHelloMsg) marshalWithoutBinders() ([]byte, error) {
    	bindersLen := 2 // uint16 length prefix
    	for _, binder := range m.pskBinders {
    		bindersLen += 1 // uint8 length prefix
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  3. pkg/apis/admissionregistration/validation/validation.go

    	} else if len(trimmedMessageExpression) != 0 {
    		// use v.MessageExpression instead of trimmedMessageExpression so that
    		// the compiler output shows the correct column.
    		allErrors = append(allErrors, validateMessageExpression(compiler, v.MessageExpression, opts, fldPath.Child("messageExpression"))...)
    	}
    	if len(v.Message) > 0 && len(trimmedMsg) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

      node_builder.Attr("dtype", data_type).Attr("value", dummy_proto);
      Node* node = options.FinalizeBuilder(&node_builder);
      // Add any Enter nodes required to bring the constant to the correct control
      // flow frame.
      while (!control_flow_info[src_node->id()].frame_name.empty()) {
        NodeDebugInfo debug_info(*src_node);
        NodeBuilder enter_builder(options.GetNameForOp("Enter"), "Enter",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

            def r = configuration.getResolvedConfiguration()
    
            then:
            configuration.getResolvedConfiguration() == r
            configuration.state == RESOLVED
        }
    
        def "artifacts have correct build dependencies"() {
            def configuration = conf()
            def artifactTask2 = Mock(Task)
            def artifactTask1 = Mock(Task)
    
            given:
            def otherConfiguration = conf("otherConf")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test_base.py

        # And if bias_size is None, has_bias should be False using XNOR
        assert not ((bias_size is not None) ^ has_bias)
    
        # Verify that bias size is correct
        if bias_size:
          input_height = input_shape[0] if len(input_shape) == 2 else input_shape[1]
          assert input_height * weight_shape[-1] % bias_size == 0
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 08:51:46 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  7. pkg/volume/csi/csi_mounter_test.go

    		podUID           types.UID
    		spec             func(string, []string) *volume.Spec
    		shouldFail       bool
    		exitError        error
    		createAttachment bool
    	}{
    		{
    			name:   "setup with correct persistent volume source should result in finish exit status",
    			podUID: types.UID(fmt.Sprintf("%08X", rand.Uint64())),
    			spec: func(fsType string, options []string) *volume.Spec {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  8. src/math/all_test.go

    	// Check a==b so that at least if a and b are small and identical
    	// we say they match.
    	if a == b {
    		return true
    	}
    	d := a - b
    	if d < 0 {
    		d = -d
    	}
    
    	// note: b is correct (expected) value, a is actual value.
    	// make error tolerance a fraction of b, not a.
    	if b != 0 {
    		e = e * b
    		if e < 0 {
    			e = -e
    		}
    	}
    	return d < e
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 07 17:39:26 UTC 2023
    - 86.8K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources_test.go

    	// Quick-and-dirty workaround for fake client storing ResourceClassParameters and
    	// ResourceClaimParameters as "resourceclassparameterses" and "resourceclaimparameterses":
    	// intercept the correct LIST from the informers and reply to them with the incorrect
    	// LIST result.
    	tc.client.PrependReactor("list", "resourceclaimparameters", createListReactor(tc.client.Tracker(), "ResourceClaimParameters"))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

    // 1) Any resource loads after a store to that same resource is done
    // 2) Any resource stores except the last one.
    // TODO(ycao): Store-load forwarding implemented here is only correct when
    // computation is purely sequential (no concurrency). Need to support concurrent
    // computation as well.
    void ForwardStoreToLoad(Block* block) {
      // resource_handle_to_last_store_op keeps track of the most recent (last)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
Back to top