Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 47 for content_es (0.14 sec)

  1. guava/src/com/google/common/cache/CacheBuilder.java

     *
     * <p>The caches produced by {@code CacheBuilder} are serializable, and the deserialized caches
     * retain all the configuration properties of the original cache. Note that the serialized form does
     * <i>not</i> include cache contents, but only configuration.
     *
     * <p>See the Guava User Guide article on <a
     * href="https://github.com/google/guava/wiki/CachesExplained">caching</a> for a higher-level
     * explanation.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  2. cmd/kubelet/app/server.go

    		// the kubeconfig file be managed by this process. For backwards compatibility with kubeadm,
    		// which provides a high powered kubeconfig on the master with cert/key data, we must
    		// bootstrap the cert manager with the contents of the initial client config.
    
    		klog.InfoS("Client rotation is on, will bootstrap in background")
    		certConfig, clientConfig, err := bootstrap.LoadClientConfig(s.KubeConfig, s.BootstrapKubeconfig, s.CertDirectory)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  3. src/cmd/dist/build.go

    	}
    	if excluded(okgoos, goos) || excluded(okgoarch, goarch) {
    		return false
    	}
    
    	// Omit test files.
    	if strings.Contains(name, "_test") {
    		return false
    	}
    
    	// Check file contents for //go:build lines.
    	for _, p := range strings.Split(readfile(file), "\n") {
    		p = strings.TrimSpace(p)
    		if p == "" {
    			continue
    		}
    		code := p
    		i := strings.Index(code, "//")
    		if i > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  4. src/go/types/expr.go

    				// Don't type-check right away because the function may
    				// be part of a type definition to which the function
    				// body refers. Instead, type-check as soon as possible,
    				// but before the enclosing scope contents changes (go.dev/issue/22992).
    				check.later(func() {
    					check.funcBody(decl, "<function literal>", sig, e.Body, iota)
    				}).describef(e, "func literal")
    			}
    			x.mode = value
    			x.typ = sig
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  5. okhttp/src/test/java/okhttp3/HttpUrlTest.kt

        assertThat(parse("http://user:password@[::1]/").password).isEqualTo("password")
        assertThat(parse("http://user:password@[::1]:8080/").host).isEqualTo("::1")
    
        // Permit the contents of IPv6 addresses to be percent-encoded...
        assertThat(parse("http://[%3A%3A%31]/").host).isEqualTo("::1")
    
        // Including the Square braces themselves! (This is what Chrome does.)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  6. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/BuildScriptBuilder.java

                super(comment);
            }
    
            @Override
            public void writeCodeTo(PrettyPrinter printer) {
                // NO OP
            }
        }
    
        /**
         * Represents the contents of a block.
         */
        private interface BlockBody {
            void writeBodyTo(PrettyPrinter printer);
    
            List<Statement> getStatements();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 12:02:29 UTC 2023
    - 90K bytes
    - Viewed (0)
  7. src/runtime/mprof.go

    )
    
    // NOTE(rsc): Everything here could use cas if contention became an issue.
    var (
    	// profInsertLock protects changes to the start of all *bucket linked lists
    	profInsertLock mutex
    	// profBlockLock protects the contents of every blockRecord struct
    	profBlockLock mutex
    	// profMemActiveLock protects the active field of every memRecord struct
    	profMemActiveLock mutex
    	// profMemFutureLock is a set of locks that protect the respective elements
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types_swagger_doc_generated.go

    	"includeObject": "includeObject decides whether to include each object along with its columnar information. Specifying \"None\" will return no object, specifying \"Object\" will return the full object contents, and specifying \"Metadata\" (the default) will return the object's metadata in the PartialObjectMetadata kind in version v1beta1 of the meta.k8s.io API group.",
    }
    
    func (TableOptions) SwaggerDoc() map[string]string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 49.2K bytes
    - Viewed (0)
  9. src/cmd/internal/testdir/testdir_test.go

    			execCmd = []string{path}
    		}
    	})
    	return execCmd
    }
    
    // checkExpectedOutput compares the output from compiling and/or running with the contents
    // of the corresponding reference output file, if any (replace ".go" with ".out").
    // If they don't match, fail with an informative message.
    func (t test) checkExpectedOutput(gotBytes []byte) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  10. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

    message TableOptions {
      // includeObject decides whether to include each object along with its columnar information.
      // Specifying "None" will return no object, specifying "Object" will return the full object contents, and
      // specifying "Metadata" (the default) will return the object's metadata in the PartialObjectMetadata kind
      // in version v1beta1 of the meta.k8s.io API group.
      optional string includeObject = 1;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
Back to top