Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 97 for lombok (0.11 sec)

  1. cmd/erasure-server-pool.go

    			return z.serverPools[poolIdx].CopyObject(ctx, srcBucket, srcObject, dstBucket, dstObject, srcInfo, srcOpts, dstOpts)
    		}
    		// Destination is versioned, source is not destination version,
    		// as a special case look for if the source object is not legacy
    		// from older format, for older format we will rewrite them as
    		// newer using PutObject() - this is an optimization to save space
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
  2. src/cmd/cgo/out.go

    	for _, name := range typedefNames {
    		def := typedef[name]
    		fmt.Fprintf(fgo2, "type %s ", name)
    		// We don't have source info for these types, so write them out without source info.
    		// Otherwise types would look like:
    		//
    		// type _Ctype_struct_cb struct {
    		// //line :1
    		//        on_test *[0]byte
    		// //line :1
    		// }
    		//
    		// Which is not useful. Moreover we never override source info,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  3. src/go/build/build.go

    	// For efficiency, if path is a standard library package, let the usual lookup code handle it.
    	if dir := ctxt.joinPath(ctxt.GOROOT, "src", path); ctxt.isDir(dir) {
    		return errNoModules
    	}
    
    	// If GO111MODULE=auto, look to see if there is a go.mod.
    	// Since go1.13, it doesn't matter if we're inside GOPATH.
    	if go111Module == "auto" {
    		var (
    			parent string
    			err    error
    		)
    		if ctxt.Dir == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    		t.Fatalf("GetProxyServiceTargets() wrong service instance returned => hostname %q, want %q",
    			serviceInstances[0].Service.Hostname, hostname)
    	}
    
    	// Test that we can look up instances just by Proxy metadata
    	metaServices := controller.GetProxyServiceTargets(&model.Proxy{
    		Type:            "sidecar",
    		IPAddresses:     []string{"1.1.1.1"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    The Gradle failure output includes a clickable link to the report.
    This report is useful and allows you to drill down into problems, understand what is causing them.
    
    Let's look at a simple example build script that contains a couple problems:
    
    ====
    include::sample[dir="snippets/configurationCache/problemsKotlin/kotlin",files="build.gradle.kts[]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  6. cmd/xl-storage.go

    	if pathName == "." || pathName == ".." || pathName == slashSeparator {
    		return errFileAccessDenied
    	}
    
    	// Check each path segment length is > 255 on all Unix
    	// platforms, look for this value as NAME_MAX in
    	// /usr/include/linux/limits.h
    	var count int64
    	for _, p := range pathName {
    		switch p {
    		case '/':
    			count = 0 // Reset
    		case '\\':
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

         * read operations anyway:
         *
         * - All (unsynchronized) read operations must first read the "count" field, and should not
         * look at table entries if it is 0.
         *
         * - All (synchronized) write operations should write to the "count" field after structurally
         * changing any bin. The operations must not take any action that could even momentarily
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  8. pkg/controller/statefulset/stateful_set_utils_test.go

    }
    
    // getClaimPodName gets the name of the Pod associated with the Claim, or an empty string if this doesn't look matching.
    func getClaimPodName(set *apps.StatefulSet, claim *v1.PersistentVolumeClaim) string {
    	podName := ""
    
    	statefulClaimRegex := regexp.MustCompile(fmt.Sprintf(".*-(%s-[0-9]+)$", set.Name))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 50.9K bytes
    - Viewed (0)
  9. configure.py

        write_to_bazelrc('build --copt=-Wno-gnu-offsetof-extensions')
    
    
    def set_tf_cuda_paths(environ_cp):
      """Set TF_CUDA_PATHS."""
      ask_cuda_paths = (
          'Please specify the comma-separated list of base paths to look for CUDA '
          'libraries and headers. [Leave empty to use the default]: ')
      tf_cuda_paths = get_from_env_or_user_or_default(environ_cp, 'TF_CUDA_PATHS',
                                                      ask_cuda_paths, '')
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  10. src/cmd/go/internal/test/test.go

    	    run too, so that -run=X/Y matches and runs and reports the result
    	    of all tests matching X, even those without sub-tests matching Y,
    	    because it must run them to look for those sub-tests.
    	    See also -skip.
    
    	-short
    	    Tell long-running tests to shorten their run time.
    	    It is off by default but set during all.bash so that installing
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
Back to top