Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for tailwind (0.15 sec)

  1. samples/bookinfo/src/productpage/static/tailwind/tailwind.css

    g):xi(i)&&i.config!==void 0&&xi(i.config)?null:ef(i)?Z.resolve(i):i0()}function i0(){for(let i of t0)try{let e=Z.resolve(i);return te.accessSync(e),e}catch(e){}return null}var t0,tf=C(()=>{l();je();gt();t0=["./tailwind.config.js","./tailwind.config.cjs","./tailwind.config.mjs","./tailwind.config.ts"]});var rf={};Ae(rf,{default:()=>gs});var gs,ys=C(()=>{l();gs={parse:i=>({href:i})}});var ws=v(()=>{l()});var ki=v((VE,af)=>{l();"use strict";var nf=(ci(),yu),sf=ws(),_t=class extends Error{constructo...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 357.1K bytes
    - Viewed (1)
  2. samples/bookinfo/src/productpage/templates/index.html

            padding: .5em;
        }
    
        table th,
        table td {
            padding: .5em;
            border: 1px solid lightgrey;
        }
    </style>
    {% endblock %}
    
    {% block scripts %}
    <script src="static/tailwind/tailwind.css"></script>
    {% endblock %}
    
    {% block content %}
    <div class="mx-auto px-4 sm:px-6 lg:px-8">
        <div class="flex flex-col space-y-5 py-32 mx-auto max-w-7xl">
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  3. samples/bookinfo/src/productpage/templates/productpage.html

    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    {% endblock %}
    
    <title>Simple Bookstore App</title>
    {% block scripts %}
    <script src="static/tailwind/tailwind.css"></script>
    <script type="text/javascript">
      window.addEventListener("DOMContentLoaded", (event) => {
        const dialog = document.querySelector("dialog");
        const showButton = document.querySelector("#sign-in-button");
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  4. platforms/core-runtime/daemon-protocol/src/test/groovy/org/gradle/launcher/daemon/diagnostics/DaemonDiagnosticsTest.groovy

    import org.junit.Rule
    import spock.lang.Specification
    
    class DaemonDiagnosticsTest extends Specification {
    
        @Rule TestNameTestDirectoryProvider temp = new TestNameTestDirectoryProvider(getClass())
    
        def "tailing the daemon log is always safe"() {
            given:
            def diagnostics = new DaemonDiagnostics(new File("does not exist"), 123)
    
            when:
            def description = diagnostics.describe()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 10:50:51 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  5. internal/config/certs.go

    	// Read certificate file.
    	var data []byte
    	if data, err = os.ReadFile(certFile); err != nil {
    		return nil, err
    	}
    
    	// Trimming leading and tailing white spaces.
    	data = bytes.TrimSpace(data)
    
    	// Parse all certs in the chain.
    	current := data
    	for len(current) > 0 {
    		var pemBlock *pem.Block
    		if pemBlock, current = pem.Decode(current); pemBlock == nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  6. platforms/native/testing-native/src/test/groovy/org/gradle/nativeplatform/test/xctest/internal/execution/XCTestSelectionTest.groovy

            where:
            testFilter << ['/abc', 'a/bc', 'ab/c', 'a/b/c', 'a/bc', 'a.b/c']
        }
    
        def "leaves filter as-is when filter has tailing dot"() {
            expect:
            select('a.b.').includedTests == ['a.b.']
        }
    
        private static XCTestSelection select(String... commandLinePattern) {
            new XCTestSelection([], Arrays.asList(commandLinePattern))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  7. src/crypto/subtle/xor_ppc64x.s

    	// Case for n ≥ 64 bytes
    preloop64:
    	SRD	$6, R6, R7	// Set up loop counter
    	MOVD	R7, CTR
    	MOVD	$16, R10
    	MOVD	$32, R14
    	MOVD	$48, R15
    	ANDCC	$63, R6, R9	// Check for tailing bytes for later
    	PCALIGN $16
    	// Case for >= 64 bytes
    	// Process 64 bytes per iteration
    	// Load 4 vectors of a and b
    	// XOR the corresponding vectors
    	// from a and b and store the result
    loop64:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_config.h

      // when `inference_type` is different from DT_FLOAT. This flag can only be set
      // to DT_FLOAT or as same as `inference_type`. If this flag is different
      // from `inference_type`, adaptor ops are inserted as heading and tailing ops
      // in the result model.
      tensorflow::DataType inference_input_type = tensorflow::DT_FLOAT;
    
      // Input node ranges. These ranges are stored as the same order of function
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 13 10:16:19 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/transforms/optimize.cc

          rewriter.setInsertionPoint(fc_op);
          auto new_bias = rewriter.create<TF::MulOp>(loc, bias, gamma);
          fc_op.getOperation()->replaceUsesOfWith(bias, new_bias);
        }
    
        // Remove the tailing mul op.
        mul_op.replaceAllUsesWith(fc_op.getResult());
        return success();
      }
    };
    
    using FuseConv2DAndMulWithQDQs = FuseAffinOpAndMulWithQDQs<TFL::Conv2DOp>;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

                                                 "unsupported slice sizes");
            }
          }
          ++index;
        }
    
        // Verify that offset_dims are the tailing dimensions in the output tensor.
        auto offset_dims = gather_op.getDimensionNumbers().getOffsetDims();
        SmallVector<int64_t, 4> offset_dims_vector(offset_dims.begin(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
Back to top