Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 34 for RAW (0.04 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    		uuidString := string(uuid.NewUUID())
    		sentinelName := "__ratcheting_sentinel_field__"
    		sch.Properties[sentinelName] = apiextensionsv1.JSONSchemaProps{
    			Type: "string",
    			Enum: []apiextensionsv1.JSON{{
    				Raw: []byte(`"` + uuidString + `"`),
    			}},
    		}
    
    		for _, v := range myCRD.Spec.Versions {
    			if v.Name != myCRDV1Beta1.Version {
    				continue
    			}
    			v.Schema.OpenAPIV3Schema = sch
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/quantization/lite/quantize_model_test.cc

        model_ = UnPackFlatBufferModel(*readonly_model_);
      }
    
      std::unique_ptr<FlatBufferModel> input_model_;
      const Model* readonly_model_;
      tflite::ModelT model_;
      std::string output_buffer_;  // Raw buffer for quantized output model.
    };
    
    void ExpectEqualTensor(TensorT* tensor, TensorT* expected_tensor) {
      const float eps = 1e-7;
      EXPECT_THAT(expected_tensor, NotNull());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

         $input,
         (Arith_ConstantOp I32ElementsAttr:$axis),
         ConstBoolAttrFalse,
         $reverse),
      (replaceWithValue $input),
      [(AreInputDimensionsOneInAxes $input, $axis)]>;
    
    // Fusing raw computation of GELU op into one native tfl_gelu op.
    //
    // Requires constants to be exact match and only one use of all of the
    // intermediate results.
    //
    // For GeluApproximate, replaces
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  4. src/crypto/tls/handshake_server_test.go

    	if len(peerCerts) == len(test.expectedPeerCerts) {
    		for i, peerCert := range peerCerts {
    			block, _ := pem.Decode([]byte(test.expectedPeerCerts[i]))
    			if !bytes.Equal(block.Bytes, peerCert.Raw) {
    				t.Fatalf("%s: mismatch on peer cert %d", test.name, i+1)
    			}
    		}
    	} else {
    		t.Fatalf("%s: mismatch on peer list length: %d (wanted) != %d (got)", test.name, len(test.expectedPeerCerts), len(peerCerts))
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  5. src/crypto/tls/conn.go

    	clientFinished [12]byte
    	serverFinished [12]byte
    
    	// clientProtocol is the negotiated ALPN protocol.
    	clientProtocol string
    
    	// input/output
    	in, out   halfConn
    	rawInput  bytes.Buffer // raw input, starting with a record header
    	input     bytes.Reader // application data waiting to be read, from rawInput.Next
    	hand      bytes.Buffer // handshake data waiting to be read
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

        return success();
      }
    
      bool enable_dynamic_update_slice;
    };
    
    // Rewrites op of the template type initializing a TensorList with a list of ops
    // to generate an equivalent raw tensor. Derived classes are required to
    // override GetNumElements method.
    template <typename OpT>
    struct ConvertTensorListInitOp : public TensorListOpConverterBase<OpT> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  7. src/net/http/request.go

    		// in TestParseMultipartFormOrder and others.
    	}
    	return
    }
    
    // ParseForm populates r.Form and r.PostForm.
    //
    // For all requests, ParseForm parses the raw query from the URL and updates
    // r.Form.
    //
    // For POST, PUT, and PATCH requests, it also reads the request body, parses it
    // as a form and puts the results into both r.PostForm and r.Form. Request body
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  8. src/net/http/httputil/reverseproxy_test.go

    		body, _ := io.ReadAll(res.Body)
    		wantQuery := test.rawQuery
    		if wantCleanQuery {
    			wantQuery = test.cleanQuery
    		}
    		if got, want := string(body), wantQuery; got != want {
    			t.Errorf("proxy forwarded raw query %q as %q, want %q", test.rawQuery, got, want)
    		}
    	}
    }
    
    type testResponseWriter struct {
    	h           http.Header
    	writeHeader func(int)
    	write       func([]byte) (int, error)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  9. src/crypto/tls/common.go

    	GetConfigForClient func(*ClientHelloInfo) (*Config, error)
    
    	// VerifyPeerCertificate, if not nil, is called after normal
    	// certificate verification by either a TLS client or server. It
    	// receives the raw ASN.1 certificates provided by the peer and also
    	// any verified chains that normal processing found. If it returns a
    	// non-nil error, the handshake is aborted and that error results.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  10. src/runtime/mgcscavenge.go

    // set and the rest of the controller's internal state will be fully reset.
    func (c *piController) next(input, setpoint, period float64) (float64, bool) {
    	// Compute the raw output value.
    	prop := c.kp * (setpoint - input)
    	rawOutput := prop + c.errIntegral
    
    	// Clamp rawOutput into output.
    	output := rawOutput
    	if isInf(output) || isNaN(output) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
Back to top