Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 20 for unrenamed (0.29 sec)

  1. src/crypto/x509/x509_test.go

    	if err != nil {
    		t.Fatalf("failed to parse test CRL: %s", err)
    	}
    
    	if err = crl.CheckSignatureFrom(cert); err != nil {
    		t.Errorf("unexpected error: %s", err)
    	}
    
    	// This is an unrelated OCSP response, which will fail signature verification
    	// but shouldn't return an InsecureAlgorithmError, since SHA1 should be allowed
    	// for OCSP.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

          mlir::vhlo::PadOpV1 pad_op, const std::vector<int32_t>& operands,
          const std::vector<int32_t>& results,
          mlir::VhloToStablehloTypeConverter& vhlo_type_converter);
    
      // create a subgraph given a unnamed mlir region, return the corresponding
      // subgraph index
      int32_t UnnamedRegionToSubgraph(mlir::Region* region,
                                      tflite::BuiltinOperator op_code);
    
      ModuleOp module_;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  3. pkg/scheduler/internal/queue/scheduling_queue_test.go

    						{
    							PluginName:     "fooPlugin1",
    							QueueingHintFn: queueHintReturnQueue,
    						},
    					},
    					NodeAdd: { // not executed because NodeAdd is unrelated.
    						{
    							PluginName:     "fooPlugin1",
    							QueueingHintFn: queueHintReturnQueue,
    						},
    					},
    				},
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  4. doc/go1.17_spec.html

    </p>
    
    <p>
    For instance, given the declarations
    </p>
    
    <pre>
    var x = I(T{}).ab()   // x has an undetected, hidden dependency on a and b
    var _ = sideEffect()  // unrelated to x, a, or b
    var a = b
    var b = 42
    
    type I interface      { ab() []int }
    type T struct{}
    func (T) ab() []int   { return []int{a, b} }
    </pre>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/endpoints/apiserver_test.go

    var accessor = meta.NewAccessor()
    var namer runtime.Namer = accessor
    var admissionControl admission.Interface
    
    func init() {
    	metav1.AddToGroupVersion(scheme, metav1.SchemeGroupVersion)
    
    	// unnamed core group
    	scheme.AddUnversionedTypes(grouplessGroupVersion, &metav1.Status{})
    	metav1.AddToGroupVersion(scheme, grouplessGroupVersion)
    
    	utilruntime.Must(example.AddToScheme(scheme))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 20:15:22 UTC 2023
    - 158.7K bytes
    - Viewed (0)
  6. src/reflect/value.go

    // Bytes returns v's underlying value.
    // It panics if v's underlying value is not a slice of bytes or
    // an addressable array of bytes.
    func (v Value) Bytes() []byte {
    	// bytesSlow is split out to keep Bytes inlineable for unnamed []byte.
    	if v.typ_ == bytesType { // ok to use v.typ_ directly as comparison doesn't cause escape
    		return *(*[]byte)(v.ptr)
    	}
    	return v.bytesSlow()
    }
    
    func (v Value) bytesSlow() []byte {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

        self.assertTrue(self._contains_quantized_function_call(output_graphdef))
    
        # Makes sure that the original function identified by the signature key
        # `main` is renamed to `main_0` (see `InsertMainFunctionPass` for details).
        self.assertTrue(
            any(
                map(
                    lambda func: func.signature.name == 'main_0',
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  8. src/cmd/go/alldocs.go

    // and only using an import path that omits the prefix up to and
    // including the vendor element.
    //
    // Here's the example from the previous section,
    // but with the "internal" directory renamed to "vendor"
    // and a new foo/vendor/crash/bang directory added:
    //
    //	/home/user/go/
    //	    src/
    //	        crash/
    //	            bang/              (go code in package bang)
    //	                b.go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/x86/asm6.go

    		// here, the assembly has failed.
    		// if it's a byte instruction that has
    		// unaddressable registers, try to
    		// exchange registers and reissue the
    		// instruction with the operands renamed.
    		pp := *p
    
    		unbytereg(&pp.From, &pp.Ft)
    		unbytereg(&pp.To, &pp.Tt)
    
    		z := int(p.From.Reg)
    		if p.From.Type == obj.TYPE_REG && z >= REG_BP && z <= REG_DI {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  10. src/reflect/all_test.go

    	var h func() <-chan int
    	h = MakeFunc(TypeOf(h), func([]Value) []Value {
    		return []Value{ValueOf(make(chan int))}
    	}).Interface().(func() <-chan int)
    	h()
    
    	// Unnamed types should be promotable to named types.
    	type T struct{ a, b, c int }
    	var i func() T
    	i = MakeFunc(TypeOf(i), func([]Value) []Value {
    		return []Value{ValueOf(struct{ a, b, c int }{a: 1, b: 2, c: 3})}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
Back to top