Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 196 for keep1 (0.02 seconds)

  1. src/test/java/jcifs/smb/ShareEnumIteratorTest.java

            List<FileEntry> entries = Arrays.asList(entry("keep1", SmbConstants.TYPE_SHARE), entry("skip1", SmbConstants.TYPE_SHARE),
                    entry("keep2", SmbConstants.TYPE_SHARE));
    
            // Filter accepts names starting with "keep"
            when(filter.accept(any())).thenAnswer(inv -> {
                SmbResource res = inv.getArgument(0);
                return res.getName().startsWith("keep");
            });
    
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 8.1K bytes
    - Click Count (0)
  2. src/main/webapp/WEB-INF/conf/.keep

    Shinsuke Sugaya <******@****.***> 1523506789 +0900
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Apr 12 04:19:49 GMT 2018
    - Click Count (0)
  3. src/main/webapp/WEB-INF/thumbnails/.keep

    Shinsuke Sugaya <******@****.***> 1523506789 +0900
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Apr 12 04:19:49 GMT 2018
    - Click Count (0)
  4. src/main/webapp/WEB-INF/plugin/.keep

    Shinsuke Sugaya <******@****.***> 1729734430 +0900
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Oct 24 01:47:10 GMT 2024
    - Click Count (0)
  5. docs/en/docs/tutorial/stream-json-lines.md

        App->>App: Produce Item 3
        Client->>Client: Process Item 2
        App->>Client: Send Item 3
        Client->>Client: Process Item 3
        Note over App: Keeps producing...
        Note over Client: Keeps consuming...
    ```
    
    It could even be an infinite stream, where you keep sending data.
    
    ## JSON Lines { #json-lines }
    
    In these cases, it's common to send "**JSON Lines**", which is a format where you send one JSON object per line.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 4.3K bytes
    - Click Count (0)
  6. cmd/metacache-bucket.go

    package cmd
    
    import (
    	"context"
    	"errors"
    	"maps"
    	"runtime/debug"
    	"sort"
    	"sync"
    	"time"
    
    	"github.com/minio/minio/internal/logger"
    	"github.com/minio/pkg/v3/console"
    )
    
    // a bucketMetacache keeps track of all caches generated
    // for a bucket.
    type bucketMetacache struct {
    	// Name of bucket
    	bucket string
    
    	// caches indexed by id.
    	caches map[string]metacache
    	// cache ids indexed by root paths
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Fri Aug 29 02:39:48 GMT 2025
    - 6.6K bytes
    - Click Count (0)
  7. android/guava-tests/test/com/google/common/base/FinalizableReferenceQueueTest.java

        MockReference(FinalizableReferenceQueue frq) {
          super(new Object(), frq);
        }
    
        @Override
        public void finalizeReferent() {
          finalizeReferentCalled = true;
        }
      }
    
      /**
       * Keeps a weak reference to the underlying reference queue. When this reference is cleared, we
       * know that the background thread has stopped and released its strong reference.
       */
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Feb 27 21:20:19 GMT 2026
    - 8.6K bytes
    - Click Count (0)
  8. docs/en/docs/environment-variables.md

    For example, when you type `python` in the terminal, the operating system looks for a program called `python` in the **first directory** in that list.
    
    If it finds it, then it will **use it**. Otherwise it keeps looking in the **other directories**.
    
    ### Installing Python and Updating the `PATH` { #installing-python-and-updating-the-path }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 7.9K bytes
    - Click Count (0)
  9. docs/ko/llm-prompt.md

    - Do not add trailing punctuation to headings.
    
    ### Quotes
    
    - Keep quote style consistent with the existing Korean docs.
    - Never change quotes inside inline code, code blocks, URLs, or file paths.
    
    ### Ellipsis
    
    - Keep ellipsis style consistent with existing Korean docs (often `...`).
    - Never change `...` in code, URLs, or CLI examples.
    
    ### Preferred translations / glossary
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Jan 24 21:17:54 GMT 2026
    - 1.7K bytes
    - Click Count (0)
  10. docs/tr/llm-prompt.md

    - If you translate a concept one way, keep it consistent across all occurrences.
    
    ### Links and references
    
    - Never modify link syntax like `{.internal-link target=_blank}`.
    - Keep markdown link structure intact: `[text](url){.internal-link}`.
    
    ### Preferred translations / glossary
    
    Do not translate technical terms like path, route, request, response, query, body, cookie, and header, keep them as is.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Tue Jan 20 20:34:03 GMT 2026
    - 2.7K bytes
    - Click Count (0)
Back to Top