Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 91 for constructs (0.19 sec)

  1. src/crypto/x509/x509_test.go

    			// the RawSubject of the certificate to RawIssuer on the parsed CRL.
    			// However, this doesn't work with our hacked issuers above (that
    			// aren't parsed from a proper DER bundle but are instead manually
    			// constructed). Prefer RawSubject when it is set.
    			if len(tc.issuer.RawSubject) > 0 {
    				issuerSubj, err := subjectBytes(tc.issuer)
    				if err != nil {
    					t.Fatalf("failed to get issuer subject: %s", err)
    				}
    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. CHANGELOG/CHANGELOG-1.5.md

    * kubelet: don't reject pods without adding them to the pod manager ([#37661](https://github.com/kubernetes/kubernetes/pull/37661), [@yujuhong](https://github.com/yujuhong))
    * Fix photon controller plugin to construct with correct PdID ([#37167](https://github.com/kubernetes/kubernetes/pull/37167), [@luomiao](https://github.com/luomiao))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

        )
    
        representative_samples = [
            {
                'input_tensor': random_ops.random_uniform(shape=(1, 1024)),
            }
            for _ in range(8)
        ]
    
        # Construct a tf.data.Dataset from the representative samples.
        representative_dataset = dataset_ops.DatasetV2.from_generator(
            lambda: representative_samples,
            output_signature={
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  4. src/net/http/server.go

    // an error, panic with the value [ErrAbortHandler].
    type Handler interface {
    	ServeHTTP(ResponseWriter, *Request)
    }
    
    // A ResponseWriter interface is used by an HTTP handler to
    // construct an HTTP response.
    //
    // A ResponseWriter may not be used after [Handler.ServeHTTP] has returned.
    type ResponseWriter interface {
    	// Header returns the header map that will be sent by
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

      // Allow the type inferred to not match exactly the inferred type as the
      // inferred type is from the element attribute's type while the op may have
      // gotten constructed from TF const op or be in a partial state of shape
      // refinement, so allow it to only be compatible. The op will be refined
      // during shape inference and casts inserted as needed to satisfy type
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  6. src/reflect/value.go

    		if t.IfaceIndir() {
    			recv = Value{t, p, fl | flagIndir}
    		} else {
    			recv = Value{t, *(*unsafe.Pointer)(p), fl}
    		}
    	}
    	return chosen, recv, recvOK
    }
    
    /*
     * constructors
     */
    
    // implemented in package runtime
    
    //go:noescape
    func unsafe_New(*abi.Type) unsafe.Pointer
    
    //go:noescape
    func unsafe_NewArray(*abi.Type, int) unsafe.Pointer
    
    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. src/main/webapp/js/admin/jquery-3.6.3.min.map

    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 17 12:13:41 UTC 2023
    - 135.2K bytes
    - Viewed (0)
  8. src/main/webapp/js/jquery-3.6.3.min.map

    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 17 12:13:41 UTC 2023
    - 135.2K bytes
    - Viewed (0)
  9. src/net/http/transport_test.go

    			if err != nil {
    				t.Fatal("Expected error to be nil but was:", err)
    			}
    		},
    	}
    
    	c := ts.Client()
    	req, err := NewRequest("GET", ts.URL, nil)
    	if err != nil {
    		t.Fatal("Unable to construct test request:", err)
    	}
    	req = req.WithContext(httptrace.WithClientTrace(req.Context(), trace))
    
    	r, err := c.Do(req)
    	if err != nil {
    		t.Fatal("Unexpected error making request:", err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/x86/asm6.go

    		return strings.HasPrefix(s.Name, "libc_")
    	}
    	return ctxt.Arch.Family == sys.I386 && !ctxt.Flag_shared
    }
    
    // single-instruction no-ops of various lengths.
    // constructed by hand and disassembled with gdb to verify.
    // see http://www.agner.org/optimize/optimizing_assembly.pdf for discussion.
    var nop = [][16]uint8{
    	{0x90},
    	{0x66, 0x90},
    	{0x0F, 0x1F, 0x00},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
Back to top