Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for bookstore (0.17 sec)

  1. pilot/pkg/security/trustdomain/util.go

    // 1. Exact match.
    // 2. Wild character match. "*" matches any string.
    // 3. Prefix match. For example, "book*" matches "bookstore", "bookshop", etc.
    // 4. Suffix match. For example, "*/review" matches "/bookstore/review", "/products/review", etc.
    // This is an extensive version of model.stringMatch(). The pattern can be in the string or the list.
    func stringMatch(a string, list []string) bool {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 13 15:27:59 UTC 2021
    - 2K bytes
    - Viewed (0)
  2. samples/bookinfo/src/productpage/templates/index.html

    {% 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">
            <h3 class="text-2xl">Hello! This is a simple bookstore application consisting of three services as shown below
            </h3>
            {% autoescape false %}
            {{ serviceTable }}
            {% endautoescape %}
            <p>
    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/README.md

    ```bash
    $ kubectl exec -it "$(kubectl get pod -l app=ratings -o jsonpath='{.items[0].metadata.name}')" -c ratings -- curl productpage:9080/productpage | grep -o "<title>.*</title>"
    <title>Simple Bookstore App</title>
    ```
    
    You can also test it by hitting productpage in the browser.
    
    ```bash
    http://192.168.39.116:31395/productpage
    ```
    
    You should see the following in the browser.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:37 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  4. samples/bookinfo/src/productpage/templates/productpage.html

    {% block metas %}
    <meta charset="utf-8">
    <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");
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  5. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/btree/BlockStore.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.cache.internal.btree;
    
    public interface BlockStore {
        /**
         * Opens this store, calling the given action if the store is empty.
         */
        void open(Runnable initAction, Factory factory);
    
        /**
         * Closes this store.
         */
        void close();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/btree/StateCheckBlockStore.java

    public class StateCheckBlockStore implements BlockStore {
        private final BlockStore blockStore;
        private boolean open;
    
        public StateCheckBlockStore(BlockStore blockStore) {
            this.blockStore = blockStore;
        }
    
        @Override
        public void open(Runnable initAction, Factory factory) {
            assert !open;
            open = true;
            blockStore.open(initAction, factory);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  7. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/btree/FreeListBlockStore.java

    import java.util.Collections;
    import java.util.List;
    
    public class FreeListBlockStore implements BlockStore {
        private final BlockStore store;
        private final BlockStore freeListStore;
        private final int maxBlockEntries;
        private FreeListBlock freeListBlock;
    
        public FreeListBlockStore(BlockStore store, int maxBlockEntries) {
            this.store = store;
            freeListStore = this;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:32 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  8. testing/internal-performance-testing/src/test/groovy/org/gradle/performance/results/report/DefaultPerformanceExecutionDataProviderTest.groovy

        @Subject
        DefaultPerformanceExecutionDataProvider provider
    
        File resultsJson = tmpDir.file('results.json')
        ResultsStore mockStore = Mock(ResultsStore)
    
        def setup() {
            resultsJson << '[]'
            provider = new DefaultPerformanceExecutionDataProvider(mockStore, [resultsJson], [] as Set)
        }
    
        def 'can sort scenarios correctly'() {
            when:
            List buildResults = [
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4K bytes
    - Viewed (0)
  9. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/btree/CachingBlockStore.java

    import javax.annotation.Nullable;
    import java.util.Collection;
    import java.util.Iterator;
    import java.util.LinkedHashMap;
    import java.util.Map;
    
    public class CachingBlockStore implements BlockStore {
        private final BlockStore store;
        private final Map<BlockPointer, BlockPayload> dirty = new LinkedHashMap<BlockPointer, BlockPayload>();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  10. pkg/registry/core/pod/storage/eviction_test.go

    }
    
    func (ms *mockStore) List(ctx context.Context, options *metainternalversion.ListOptions) (runtime.Object, error) {
    	return nil, nil
    }
    
    func (ms *mockStore) NewList() runtime.Object {
    	return nil
    }
    
    func (ms *mockStore) ConvertToTable(ctx context.Context, object runtime.Object, tableOptions runtime.Object) (*metav1.Table, error) {
    	return nil, nil
    }
    
    func (ms *mockStore) Destroy() {
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 09:26:37 UTC 2024
    - 40K bytes
    - Viewed (0)
Back to top