Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 24 for accesskey (0.16 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

    def PromoteResourcesToArgsPass : Pass<"tf-promote-resources-to-args", "ModuleOp"> {
      let summary = "Promote resources reads/writes to function inputs/outputs.";
      let description = [{
        This pass promotes resource accesses in function(s) (by default, the main)
        to input arguments and outputs of the function(s).
    
        Two types of resources are supported:
        (1) A function argument of TF::ResourceType type (this pass).
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/ppc64/asm9.go

    			c.instoffset = a.Offset
    			if a.Sym == nil {
    				break
    			} else if a.Sym.Type == objabi.STLSBSS {
    				// For PIC builds, use 12 byte got initial-exec TLS accesses.
    				if c.ctxt.Flag_shared {
    					return C_TLS_IE
    				}
    				// Otherwise, use 8 byte local-exec TLS accesses.
    				return C_TLS_LE
    			} else {
    				return C_ADDR
    			}
    
    		case obj.NAME_AUTO:
    			a.Reg = REGSP
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_pods.go

    	// Append the env vars
    	for k, v := range tmpEnv {
    		result = append(result, kubecontainer.EnvVar{Name: k, Value: v})
    	}
    
    	// Append remaining service env vars.
    	for k, v := range serviceEnv {
    		// Accesses apiserver+Pods.
    		// So, the master may set service env vars, or kubelet may.  In case both are doing
    		// it, we skip the key from the kubelet-generated ones so we don't have duplicate
    		// env vars.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

            "topologyKey",
            "whenUnsatisfiable"
          ],
          "type": "object"
        },
        "io.k8s.api.core.v1.Volume": {
          "description": "Volume represents a named volume in a pod that may be accessed by any container in the pod.",
          "properties": {
            "awsElasticBlockStore": {
              "$ref": "#/definitions/io.k8s.api.core.v1.AWSElasticBlockStoreVolumeSource",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        /** The key of the message: Ignored Failure Type */
        public static final String LABELS_IGNORE_FAILURE_TYPE = "{labels.ignoreFailureType}";
    
        /** The key of the message: Last Accessed */
        public static final String LABELS_LAST_ACCESS_TIME = "{labels.lastAccessTime}";
    
        /** The key of the message: Notification To */
        public static final String LABELS_NOTIFICATION_TO = "{labels.notificationTo}";
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 146.4K bytes
    - Viewed (0)
  6. guava/src/com/google/common/cache/LocalCache.java

       * higher than performing just the operation without enforcing the capacity constraint.
       *
       * This implementation uses a per-segment queue to record a memento of the additions, removals,
       * and accesses that were performed on the map. The queue is drained on writes and when it exceeds
       * its capacity threshold.
       *
       * The Least Recently Used page replacement algorithm was chosen due to its simplicity, high hit
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.5.md

    * When CORS Handler is enabled, we now add a new HTTP header named "Access-Control-Expose-Headers" with a value of "Date". This allows the "Date" HTTP header to be accessed from XHR/JavaScript. ([#33242](https://github.com/kubernetes/kubernetes/pull/33242), [@dims](https://github.com/dims))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    			}),
    			errors: []string{"Invalid value: \"object\": failed rule: self.m == 2"},
    		},
    		// unescapable field names that are not accessed by the CEL rule are allowed and should not impact CEL rule validation
    		{name: "invalid rule under unescapable field name",
    			obj: map[string]interface{}{
    				"a@b": map[string]interface{}{
    					"m": 1,
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  9. src/cmd/go/internal/load/pkg.go

    // because of global mutable state that cannot safely be read and written
    // concurrently. In particular, packageDataCache may be cleared by "go get"
    // in GOPATH mode, and modload.loaded (accessed via modload.Lookup) may be
    // modified by modload.LoadPackages.
    type preload struct {
    	cancel chan struct{}
    	sema   chan struct{}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  10. src/net/http/server.go

    	// which may be retained and mutated even after WriteHeader.
    	// handlerHeader is copied into cw.header at WriteHeader
    	// time, and privately mutated thereafter.
    	handlerHeader Header
    	calledHeader  bool // handler accessed handlerHeader via Header
    
    	written       int64 // number of bytes written in body
    	contentLength int64 // explicitly-declared Content-Length; or -1
    	status        int   // status code passed to WriteHeader
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
Back to top