Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,657 for layers (0.14 sec)

  1. cluster/gce/config-default.sh

    # Optional: Install Pigz on Windows.
    # Pigz is a multi-core optimized version of unzip.exe.
    # It improves container image pull performance since most time is spent
    # unzipping the image layers to disk.
    export WINDOWS_ENABLE_PIGZ="${WINDOWS_ENABLE_PIGZ:-true}"
    
    # Enable Windows DSR (Direct Server Return)
    export WINDOWS_ENABLE_DSR="${WINDOWS_ENABLE_DSR:-false}"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 20:16:32 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  2. architecture/networking/pilot.md

    `PushContext` is built up by querying the above layers. For some simple use cases, this is as simple as storing something like `configstore.List(SomeType)`; in this case, the only difference from directly exposing the configstore is to snapshot the current state. In other cases, some pre-computations and indexes are computed to make later accesses efficient.
    
    #### Endpoints
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 17:53:24 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/utils/lstm_utils.cc

    LogicalResult ConvertKerasLSTMLayer(mlir::func::FuncOp func_op,
                                        OpBuilder* builder, bool indy) {
      // For argument order, please check out standard_lstm under
      // tensorflow/python/keras/layers/recurrent_v2.py
      Value input = func_op.getArgument(0);
      Value output_init_state = func_op.getArgument(1);
      Value hidden_init_state = func_op.getArgument(2);
      Value weight_kernel = func_op.getArgument(3);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 36.2K bytes
    - Viewed (0)
  4. cluster/gce/config-test.sh

    # Optional: Install Pigz on Windows.
    # Pigz is a multi-core optimized version of unzip.exe.
    # It improves container image pull performance since most time is spent
    # unzipping the image layers to disk.
    export WINDOWS_ENABLE_PIGZ="${WINDOWS_ENABLE_PIGZ:-true}"
    
    # Enable Windows DSR (Direct Server Return)
    export WINDOWS_ENABLE_DSR="${WINDOWS_ENABLE_DSR:-false}"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 17:20:24 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  5. pkg/wasm/cache_test.go

    	* could not parse as compat variant: invalid media type application/vnd.oci.image.layer.v1.tar (expect application/vnd.oci.image.layer.v1.tar+gzip)
    	* could not parse as oci variant: number of layers must be 2 but got 1`,
    			wantVisitServer: true,
    		},
    	}
    
    	for _, c := range cases {
    		t.Run(c.name, func(t *testing.T) {
    			tmpDir := t.TempDir()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache.go

    // e.g. validation underneath). Similarly computing object fields and
    // labels. To avoid computing them multiple times (to serve the event
    // in different List/Watch requests), in the underlying store we are
    // keeping structs (key, object, labels, fields).
    type storeElement struct {
    	Key    string
    	Object runtime.Object
    	Labels labels.Set
    	Fields fields.Set
    }
    
    func storeElementKey(obj interface{}) (string, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 10:20:57 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  7. src/internal/abi/type.go

    		copy(tb[tagLenLen:], tag)
    	}
    
    	return Name{Bytes: &b[0]}
    }
    
    const (
    	TraceArgsLimit    = 10 // print no more than 10 args/components
    	TraceArgsMaxDepth = 5  // no more than 5 layers of nesting
    
    	// maxLen is a (conservative) upper bound of the byte stream length. For
    	// each arg/component, it has no more than 2 bytes of data (size, offset),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 21:09:59 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  8. cmd/api-errors.go

    		HTTPStatusCode: http.StatusBadRequest,
    	},
    }
    
    // toAPIErrorCode - Converts embedded errors. Convenience
    // function written to handle all cases where we have known types of
    // errors returned by underlying layers.
    func toAPIErrorCode(ctx context.Context, err error) (apiErr APIErrorCode) {
    	if err == nil {
    		return ErrNone
    	}
    
    	// Errors that are generated by net.Conn and any context errors must be handled here.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/testing/watcher_tests.go

    			{nil, true, watch.Deleted},
    		},
    		pred: storage.SelectionPredicate{
    			Label: labels.SelectorFromSet(labels.Set{"select": "true"}),
    			Field: fields.Everything(),
    			GetAttrs: func(obj runtime.Object) (labels.Set, fields.Set, error) {
    				pod := obj.(*example.Pod)
    				return labels.Set(pod.Labels), nil, nil
    			},
    		},
    	}}
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  10. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                      of a service.
                    items:
                      properties:
                        labels:
                          additionalProperties:
                            type: string
                          description: Labels apply a filter over the endpoints of a service
                            in the service registry.
                          type: object
                        name:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.7K bytes
    - Viewed (0)
Back to top