Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 405 for entirely (0.12 sec)

  1. src/path/filepath/path.go

    // returns a non-nil error, Walk stops entirely and returns that error.
    //
    // The err argument reports an error related to path, signaling that Walk
    // will not walk into that directory. The function can decide how to
    // handle that error; as described earlier, returning the error will
    // cause Walk to stop walking the entire tree.
    //
    // Walk calls the function with a non-nil err argument in two cases.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  2. src/cmd/internal/test2json/test2json.go

    // be defensible to suggest they restructure their test or test names.
    //
    // The output buffer must be >= utf8.UTFMax, so that it can
    // accumulate any single UTF8 sequence. Lines that fit entirely
    // within the output buffer are emitted in single output events.
    // Otherwise they are split into multiple events.
    // The output buffer size therefore limits the size of the encoding
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 17:33:07 UTC 2022
    - 14.5K bytes
    - Viewed (0)
  3. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/mapping/DefaultDependencyCoordinateResolverFactory.java

         *       versionMapping tests against both implementations.
         *
         * TODO: Once dependency mapping is stabilized, we should be able to turn this off / remove it entirely
         */
        private static final boolean USE_LEGACY_VERSION_MAPPING = true;
    
        private final ProjectDependencyPublicationResolver projectDependencyResolver;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 22:25:49 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/types_jsonschema.go

    	// This extension must only be used on lists and may have 3 possible values:
    	//
    	// 1) `atomic`: the list is treated as a single entity, like a scalar.
    	//      Atomic lists will be entirely replaced when updated. This extension
    	//      may be used on any type of list (struct, scalar, ...).
    	// 2) `set`:
    	//      Sets are lists that must not have multiple items with the same value. Each
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 22:23:23 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  5. src/slices/slices.go

    	// d are the values that get overwritten, never to be seen again.
    
    	if !overlaps(v, s[i+m:]) {
    		// Easy case - v does not overlap either the c or d regions.
    		// (It might be in some of a or b, or elsewhere entirely.)
    		// The data we copy up doesn't write to v at all, so just do it.
    
    		copy(s[i+m:], s[i:])
    
    		// Now we have
    		// s: aaaaaaaabbbbbbbbcccccccc
    		//            ^   ^       ^   ^
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 29 14:01:59 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  6. LICENSE

    on the Library, the distribution of the whole must be on the terms of
    this License, whose permissions for other licensees extend to the
    entire whole, and thus to each and every part regardless of who wrote
    it.
    
    Thus, it is not the intent of this section to claim rights or contest
    your rights to work written entirely by you; rather, the intent is to
    exercise the right to control the distribution of derivative or
    collective works based on the Library.
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Jan 18 20:25:38 UTC 2016
    - 25.8K bytes
    - Viewed (0)
  7. src/math/big/natdiv.go

    The proof that the calculation even has the desired effect is left to exercises.
    The solutions to those exercises provided at the back of the book are entirely
    calculations, still with no explanation as to what is going on or how you would
    arrive at the idea of doing those exact calculations. Nowhere is it mentioned
    that this test extends the 2-by-1 guess into a 3-by-2 guess. The proof of the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 17:02:38 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  8. src/math/big/arith_arm64.s

    // if 'x' and 'z' happen to share the same underlying storage.
    // The overhead of the checking and branching is visible when 'z' are small (~5%),
    // so set a threshold of 32, and remain the small-sized part entirely untouched.
    TEXT ·addVW(SB),NOSPLIT,$0
    	MOVD	z+0(FP), R3
    	MOVD	z_len+8(FP), R0
    	MOVD	x+24(FP), R1
    	MOVD	y+48(FP), R2
    	CMP	$32, R0
    	BGE	large		// large-sized 'z' and 'x'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  9. docs/bucket/replication/README.md

    meet replication criteria will now be automatically replicated by the MinIO server to the remote destination bucket. Replication can be disabled at any time by disabling specific rules in the configuration or deleting the replication configuration entirely.
    
    When object locking is used in conjunction with replication, both source and destination buckets needs to have [object locking](https://min.io/docs/minio/linux/administration/object-management/object-retention.html) enabled. Similarly...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jan 24 23:46:33 UTC 2023
    - 18.2K bytes
    - Viewed (0)
  10. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/file/TestFileHelper.groovy

            }
            def perms = PosixFilePermissions.fromString(permissions)
            Files.setPosixFilePermissions(file.toPath(), perms)
        }
    
        void setMode(int mode) {
            // TODO: Remove this entirely and use built-in Files.setPosixFilePermissions
            def process = ["chmod", Integer.toOctalString(mode), file.absolutePath].execute()
            def error = process.errorStream.text
            def retval = process.waitFor()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.8K bytes
    - Viewed (0)
Back to top