Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 43 for east (0.07 sec)

  1. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    vfs.cloud9.me-south-1.amazonaws.com
    webview-assets.cloud9.me-south-1.amazonaws.com
    vfs.cloud9.sa-east-1.amazonaws.com
    webview-assets.cloud9.sa-east-1.amazonaws.com
    vfs.cloud9.us-east-1.amazonaws.com
    webview-assets.cloud9.us-east-1.amazonaws.com
    vfs.cloud9.us-east-2.amazonaws.com
    webview-assets.cloud9.us-east-2.amazonaws.com
    vfs.cloud9.us-west-1.amazonaws.com
    webview-assets.cloud9.us-west-1.amazonaws.com
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
  2. pkg/config/validation/validation_test.go

    				Destination: &networking.Destination{Host: "foo.baz.east"},
    				Weight:      75,
    			}},
    		}, valid: true},
    		{name: "total weight > 100", route: &networking.HTTPRoute{
    			Route: []*networking.HTTPRouteDestination{{
    				Destination: &networking.Destination{Host: "foo.baz.south"},
    				Weight:      550,
    			}, {
    				Destination: &networking.Destination{Host: "foo.baz.east"},
    				Weight:      500,
    			}},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  3. pkg/apis/batch/validation/validation_test.go

    		`Australia/South`,
    		`Australia/Sydney`,
    		`Australia/Tasmania`,
    		`Australia/Victoria`,
    		`Australia/West`,
    		`Australia/Yancowinna`,
    		`Brazil/Acre`,
    		`Brazil/DeNoronha`,
    		`Brazil/East`,
    		`Brazil/West`,
    		`Canada/Atlantic`,
    		`Canada/Central`,
    		`Canada/Eastern`,
    		`Canada/Mountain`,
    		`Canada/Newfoundland`,
    		`Canada/Pacific`,
    		`Canada/Saskatchewan`,
    		`Canada/Yukon`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 124.3K bytes
    - Viewed (0)
  4. cmd/server_test.go

    	c.Assert(err, nil)
    	// verify the status of the HTTP response.
    	c.Assert(response.StatusCode, http.StatusOK)
    
    	// retrieve the info of last modification time of the object from the response header.
    	lastModified := response.Header.Get("Last-Modified")
    	// Parse it into time.Time structure.
    	t, err := time.Parse(http.TimeFormat, lastModified)
    	c.Assert(err, nil)
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 115.3K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    	Copy(copy func(AST) AST, skip func(AST) bool) AST
    
    	// Implement the fmt.GoStringer interface.
    	GoString() string
    	goString(indent int, field string) string
    }
    
    // ASTToString returns the demangled name of the AST.
    func ASTToString(a AST, options ...Option) string {
    	tparams := true
    	enclosingParams := true
    	llvmStyle := false
    	max := 0
    	for _, o := range options {
    		switch {
    		case o == NoTemplateParams:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

        Operation* filter_op = filter_value.getDefiningOp();
        auto filter_uniform_quantized_type =
            GetElementType(filter_value).cast<UniformQuantizedPerAxisType>();
        auto filter_constant_value_attr = cast<DenseIntElementsAttr>(
            cast<stablehlo::ConstantOp>(filter_value.getDefiningOp()).getValue());
        const DenseIntElementsAttr new_filter_value_attr =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/transforms/optimize.cc

        return false;
      }
      if (mlir::cast<ShapedType>(sq_op.getType()).getRank() - 1 ==
              *axis.getValues<int>().begin() ||
          *axis.getValues<int>().begin() == -1) {
        return true;
      }
      if (mlir::cast<ShapedType>(sq_op.getType()).getRank() !=
          axis.getNumElements()) {
        return false;
      }
      auto shape = mlir::cast<ShapedType>(sq_op.getType());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

        if (!mlir::cast<ShapedType>(conv_op.getRhs().getType()).hasStaticShape()) {
          return false;
        }
        if (!mlir::cast<ShapedType>(conv_op.getLhs().getType()).hasStaticShape() &&
            !mlir::cast<ShapedType>(conv_op.getType()).hasStaticShape()) {
          auto dnums = conv_op.getDimensionNumbers();
          auto lhs_type = mlir::cast<ShapedType>(conv_op.getLhs().getType());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

                               array[i].cast<mlir::StringAttr>().getValue().str());
        } else if (llvm::isa<mlir::vhlo::BooleanV1Attr>(array[i])) {
          flex_builder->Bool(name.c_str(),
                             array[i].cast<mlir::vhlo::BooleanV1Attr>().getValue());
        } else if (llvm::isa<mlir::vhlo::StringV1Attr>(array[i])) {
          flex_builder->String(
              name.c_str(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

      }
    
      // Get the tensor types.
      const auto input_type = input_tensor.getType().cast<ShapedType>();
      const auto weights_type = weights_tensor.getType().cast<ShapedType>();
      const auto bias_type =
          has_bias ? bias_tensor.getType().cast<ShapedType>() : ShapedType{};
    
      const auto output_type = getType(0).cast<ShapedType>();
    
      // Folding only implemented for float tensors.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
Back to top