Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 148 for layers (0.18 sec)

  1. RELEASE.md

     *   Added `jit_compile` as a settable property to `tf.keras.Model`.
     *   Added `synchronized` optional parameter to `layers.BatchNormalization`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  2. cmd/test-utils_test.go

    	}
    }
    
    // ExecObjectLayerAPINilTest - Sets the object layer to `nil`, and calls the registered object layer API endpoint,
    // and assert the error response. The purpose is to validate the API handlers response when the object layer is uninitialized.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. manifests/charts/base/crds/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.6K bytes
    - Viewed (0)
  7. cmd/erasure-object.go

    			markDelete = false
    		}
    		if opts.VersionPurgeStatus() == Complete {
    			markDelete = false
    		}
    		// now, since VersionPurgeStatus() is already set, we can let the
    		// lower layers decide this. This fixes a regression that was introduced
    		// in PR #14555 where !VersionPurgeStatus.Empty() is automatically
    		// considered as Delete marker true to avoid listing such objects by
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  8. releasenotes/notes/otel-builtin-labels.yaml

    zirain <******@****.***> 1718030161 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:36:01 UTC 2024
    - 151 bytes
    - Viewed (0)
  9. pkg/kube/namespace/filter.go

    }
    
    func LabelSelectorAsSelector(ps *meshapi.LabelSelector) (labels.Selector, error) {
    	if ps == nil {
    		return labels.Nothing(), nil
    	}
    	if len(ps.MatchLabels)+len(ps.MatchExpressions) == 0 {
    		return labels.Everything(), nil
    	}
    	requirements := make([]labels.Requirement, 0, len(ps.MatchLabels)+len(ps.MatchExpressions))
    	for k, v := range ps.MatchLabels {
    		r, err := labels.NewRequirement(k, selection.Equals, []string{v})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 17:12:52 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/accesslog_test.go

    		expected *tcp.TcpProxy
    	}{
    		{
    			name: "telemetry",
    			push: env.PushContext(),
    			proxy: &model.Proxy{
    				ConfigNamespace: "default",
    				Labels:          map[string]string{"app": "test"},
    				Metadata:        &model.NodeMetadata{Labels: map[string]string{"app": "test"}},
    			},
    			tcp:   &tcp.TcpProxy{},
    			class: networking.ListenerClassSidecarInbound,
    			expected: &tcp.TcpProxy{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 19.9K bytes
    - Viewed (0)
Back to top