Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,036 for only (0.01 sec)

  1. src/archive/tar/testdata/hdr-only.tar

    Joe Tsai <******@****.***> 1446603151 -0800
    Registered: 2025-05-27 11:13
    - Last Modified: 2015-12-01 20:16
    - 10K bytes
    - Viewed (0)
  2. cmd/object-api-interface.go

    	MTime                time.Time // Is only set in POST/PUT operations
    	Expires              time.Time // Is only used in POST/PUT operations
    
    	DeleteMarker            bool // Is only set in DELETE operations for delete marker replication
    	CheckDMReplicationReady bool // Is delete marker ready to be replicated - set only during HEAD
    Registered: 2025-05-25 19:28
    - Last Modified: 2025-03-30 00:56
    - 17.3K bytes
    - Viewed (0)
  3. cmd/os-reliable.go

    		case isSysErrNotDir(err):
    			// File path cannot be verified since one of
    			// the parents is a file.
    			return errFileAccessDenied
    		case isSysErrPathNotFound(err):
    			// This is a special case should be handled only for
    			// windows, because windows API does not return "not a
    			// directory" error message. Handle this specifically
    			// here.
    			return errFileAccessDenied
    		}
    	}
    	return err
    }
    
    Registered: 2025-05-25 19:28
    - Last Modified: 2024-04-22 17:49
    - 5.8K bytes
    - Viewed (0)
  4. docs/en/docs/advanced/testing-dependencies.md

    You don't want the original dependency to run (nor any of the sub-dependencies it might have).
    
    Instead, you want to provide a different dependency that will be used only during tests (possibly only some specific tests), and will provide a value that can be used where the value of the original dependency was used.
    
    ### Use cases: external service
    
    Registered: 2025-05-25 07:19
    - Last Modified: 2024-11-10 17:40
    - 2.2K bytes
    - Viewed (0)
  5. src/main/resources/fess_env.properties

    environment.title = Local Development
    
    # Does it enable the Framework internal debug? (true only when emergency)
    framework.debug = false
    
    # one day: 86400000, three days: 259200000, five days: 432000000, one week: 604800000, one year: 31556926000
    # special script :: absolute mode: $(2014/07/10), relative mode: addDay(3).addMonth(4)
    # The milliseconds for (relative or absolute) adjust time (set only when test) @LongType *dynamic in development
    time.adjust.time.millis = 0
    
    Registered: 2025-05-26 08:04
    - Last Modified: 2021-08-07 04:53
    - 2.2K bytes
    - Viewed (0)
  6. android/guava-testlib/src/com/google/common/collect/testing/testers/CollectionSerializationEqualTester.java

    @Ignore("test runners must not instantiate and run this directly, only via suites we build")
    // @Ignore affects the Android test runner, which respects JUnit 4 annotations on JUnit 3 tests.
    @SuppressWarnings("JUnit4ClassUsedInJUnit3")
    public class CollectionSerializationEqualTester<E> extends AbstractCollectionTester<E> {
      @CollectionFeature.Require(SERIALIZABLE)
      /*
       * As the class docs say, this test only makes sense for collections that define equals().
    Registered: 2025-05-30 12:43
    - Last Modified: 2025-02-12 21:10
    - 1.9K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/flowcontrol/v1beta1/generated.proto

    // target non-resource URL. A NonResourcePolicyRule matches a request if and only if both (a) at least one member
    // of verbs matches the request and (b) at least one member of nonResourceURLs matches the request.
    message NonResourcePolicyRule {
      // `verbs` is a list of matching verbs and may not be empty.
      // "*" matches all verbs. If it is present, it must be the only entry.
      // +listType=set
      // Required.
      repeated string verbs = 1;
    
    Registered: 2025-05-28 22:53
    - Last Modified: 2024-03-11 18:43
    - 19.4K bytes
    - Viewed (0)
  8. src/cmd/asm/internal/lex/slice.go

    	// Cannot happen because we only have slices of already-scanned text,
    	// but be prepared.
    	s.base = base
    }
    
    func (s *Slice) Line() int {
    	return s.line
    }
    
    func (s *Slice) Col() int {
    	// TODO: Col is only called when defining a macro and all it cares about is increasing
    	// position to discover whether there is a blank before the parenthesis.
    	// We only get here if defining a macro inside a macro.
    Registered: 2025-05-27 11:13
    - Last Modified: 2023-06-29 22:49
    - 1.6K bytes
    - Viewed (0)
  9. src/builtin/builtin.go

    // IntegerType is here for the purposes of documentation only. It is a stand-in
    // for any integer type: int, uint, int8 etc.
    type IntegerType int
    
    // FloatType is here for the purposes of documentation only. It is a stand-in
    // for either float type: float32 or float64.
    type FloatType float32
    
    // ComplexType is here for the purposes of documentation only. It is a
    // stand-in for either complex type: complex64 or complex128.
    Registered: 2025-05-27 11:13
    - Last Modified: 2024-12-30 23:59
    - 12.8K bytes
    - Viewed (0)
  10. docs/bucket/lifecycle/README.md

    ```
    mc ilm rule add --noncurrent-expire-days 30 --noncurrent-expire-newer 5 --prefix "user-uploads/" myminio/mydata
    ```
    
    #### 3.2.a Automatic removal of noncurrent versions keeping only most recent ones immediately (MinIO only extension)
    
    This is available only on MinIO as an extension to the NewerNoncurrentVersions feature. The following rule makes it possible to remove older noncurrent versions
    Registered: 2025-05-25 19:28
    - Last Modified: 2025-04-03 14:56
    - 9K bytes
    - Viewed (0)
Back to top