Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 276 for practice (0.15 sec)

  1. platforms/documentation/docs/src/docs/userguide/dep-man/dependency_management_terminology.adoc

    == Module version
    
    A module version represents a distinct set of changes of a released <<#sub:terminology_module,module>>.
    For example `18.0` represents the version of the module with the coordinates `com.google:guava:18.0`.
    In practice there's no limitation to the scheme of the module version.
    Timestamps, numbers, special suffixes like `-GA` are all allowed identifiers.
    The most widely-used versioning strategy is link:https://semver.org/[semantic versioning].
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 18:45:05 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  2. src/net/http/cgi/host.go

    		// the environment in any case, as Go represents the
    		// environment as a slice of "key=value" strings.
    		return '_'
    	}
    	// TODO: other transformations in spec or practice?
    	return r
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 20:46:32 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  3. cmd/naughty-disk_test.go

    	"sync"
    	"time"
    
    	"github.com/minio/madmin-go/v3"
    )
    
    // naughtyDisk wraps a POSIX disk and returns programmed errors
    // specified by the developer. The purpose is to simulate errors
    // that are hard to simulate in practice like DiskNotFound.
    // Programmed errors are stored in errors field.
    type naughtyDisk struct {
    	// The real disk
    	disk StorageAPI
    	// Programmed errors: API call number => error to return
    	errors map[int]error
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/internal/publicsuffix/PublicSuffixDatabase.kt

          if (rule != null) {
            exactMatch = rule
            break
          }
        }
    
        // In theory, wildcard rules are not restricted to having the wildcard in the leftmost position.
        // In practice, wildcards are always in the leftmost position. For now, this implementation
        // cheats and does not attempt every possible permutation. Instead, it only considers wildcards
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  5. docs/distributed/README.md

    - Servers running distributed MinIO instances should be less than 15 minutes apart. You can enable [NTP](http://www.ntp.org/) service as a best practice to ensure same times across servers.
    - `MINIO_DOMAIN` environment variable should be defined and exported for bucket DNS style support.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/apis/meta/fuzzer/fuzzer.go

    				// sorts and deduplicates the values, so we need to make sure ours are
    				// sorted and deduplicated as well here to preserve round-trip comparison.
    				// In practice, not sorting doesn't hurt anything...
    
    				for i := range j.MatchExpressions {
    					req := metav1.LabelSelectorRequirement{}
    					c.Fuzz(&req)
    					req.Key = randomLabelKey(c)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 15:12:26 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_resolution.adoc

    [[sub:ephemeral-ci-cache]]
    == Dealing with ephemeral builds
    
    It's a common practice to run builds in ephemeral containers.
    A container is typically spawned to only execute a single build before it is destroyed.
    This can become a practical problem when a build depends on a lot of dependencies which each container has to re-download.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 22.1K bytes
    - Viewed (0)
  8. src/cmd/trace/pprof.go

    //
    // Because slices aren't comparable and we want to leverage maps for deduplication,
    // we have to choose a fixed constant upper bound on the amount of frames we want
    // to support. In practice this is fine because there's a maximum depth to these
    // stacks anyway.
    const pprofMaxStack = 128
    
    // stackMap is a map of trace.Stack to some value V.
    type stackMap struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  9. src/crypto/x509/verify.go

    			return mailbox, false
    		}
    	}
    
    	if len(in) == 0 || in[0] != '@' {
    		return mailbox, false
    	}
    	in = in[1:]
    
    	// The RFC species a format for domains, but that's known to be
    	// violated in practice so we accept that anything after an '@' is the
    	// domain part.
    	if _, ok := domainToReverseLabels(in); !ok {
    		return mailbox, false
    	}
    
    	mailbox.local = string(localPartBytes)
    	mailbox.domain = in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:39 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-death-test.h

    // The death testing framework causes this to have interesting semantics,
    // since the sideeffects of the call are only visible in opt mode, and not
    // in debug mode.
    //
    // In practice, this can be used to test functions that utilize the
    // LOG(DFATAL) macro using the following style:
    //
    // int DieInDebugOr12(int* sideeffect) {
    //   if (sideeffect) {
    //     *sideeffect = 12;
    //   }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 11.3K bytes
    - Viewed (0)
Back to top