Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 1,001 for registered_ (0.23 sec)

  1. releasenotes/notes/autoregistered-workload-entry-locality.yaml

    kind: feature
    
    area: traffic-management
    
    issue:
    - https://github.com/istio/istio/pull/33426
    - 33426
    
    releaseNotes:
    - |
      **Added** support for overriding the locality of the WorkloadGroup template in
      auto registered WorkloadEntries. Locality overrides can be passed in through
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 22 18:59:18 UTC 2021
    - 342 bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/runtime/negotiate.go

    type NegotiateError struct {
    	ContentType string
    	Stream      bool
    }
    
    func (e NegotiateError) Error() string {
    	if e.Stream {
    		return fmt.Sprintf("no stream serializers registered for %s", e.ContentType)
    	}
    	return fmt.Sprintf("no serializers registered for %s", e.ContentType)
    }
    
    type clientNegotiator struct {
    	serializer     NegotiatedSerializer
    	encode, decode GroupVersioner
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 29 19:55:06 UTC 2020
    - 3.7K bytes
    - Viewed (0)
  3. pkg/controlplane/import_known_versions_test.go

    	}
    
    	if err := apinamingtest.VerifyGroupNames(legacyscheme.Scheme, legacyUnsuffixedGroups); err != nil {
    		t.Errorf("%v", err)
    	}
    }
    
    // These types are registered in external versions, and therefore include json tags,
    // but are also registered in internal versions (or referenced from internal types),
    // so we explicitly allow tags for them
    var typesAllowedTags = map[reflect.Type]bool{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 22 18:47:31 UTC 2021
    - 3.1K bytes
    - Viewed (0)
  4. src/main/java/jcifs/netbios/NbtAddress.java

     * ---------------------------------------------
     * JMORRIS2        <00>  UNIQUE      Registered
     * BILLING-NY      <00>  GROUP       Registered
     * JMORRIS2        <03>  UNIQUE      Registered
     * JMORRIS2        <20>  UNIQUE      Registered
     * BILLING-NY      <1E>  GROUP       Registered
     * JMORRIS         <03>  UNIQUE      Registered
     * 
     * MAC Address = 00-B0-34-21-FA-3B
     * </pre>
     * 
     * </blockquote>
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 15.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/admission/v1beta1/types.go

    	// `apiGroups:["apps"], apiVersions:["v1"], resources: ["deployments"]` and `matchPolicy: Equivalent`,
    	// an API request to apps/v1beta1 deployments would be converted and sent to the webhook
    	// with `kind: {group:"apps", version:"v1", kind:"Deployment"}` (matching the rule the webhook registered for),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 01 16:14:06 UTC 2020
    - 9.6K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/TestDB.h

     *  each other in a CU_TestRegistry.  As a result, suites are run in the 
     *  order in which they are registered (see CU_add_suite()).<br /><br />
     *
     *  It is recommended that name of each CU_Suite in a test registry have 
     *  a unique name.  Otherwise, only the first-registered suite having a 
     *  given name will be accessible by name.  There are no restrictions on 
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 40.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/admission/v1/types_swagger_doc_generated.go

    performed.\n\nFor example, if deployments can be modified via apps/v1 and apps/v1beta1, and a webhook registered a rule of `apiGroups:[\"apps\"], apiVersions:[\"v1\"], resources: [\"deployments\"]` and `matchPolicy: Equivalent`, an API request to apps/v1beta1 deployments would be converted and sent to the webhook with `kind: {group:\"apps\", version:\"v1\", kind:\"Deployment\"}` (matching the rule the webhook registered for), and `requestKind: {group:\"apps\", version:\"v1beta1\", kind:\"Deployment\"}` (indicating...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/unregistered_kernel.pbtxt

    # This test verifies the upgrade function would not error out for functional
    # library with unregister op. With lazy loading, some functions might not be
    # invoked.
    
    # CHECK-NOT: Op type not registered 'UnregisteredOp'
    
    node {
      name: "input"
      op: "Placeholder"
      attr {
        key: "dtype"
        value {
          type: DT_BOOL
        }
      }
    }
    library {
      function {
        node_def {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 21 19:20:28 UTC 2021
    - 526 bytes
    - Viewed (0)
  9. pkg/kubelet/cm/dra/plugin/plugin.go

    	handler.controller = startNodeResourcesController(context.TODO(), kubeClient, getNode)
    
    	return handler
    }
    
    // RegisterPlugin is called when a plugin can be registered.
    func (h *RegistrationHandler) RegisterPlugin(pluginName string, endpoint string, versions []string, pluginClientTimeout *time.Duration) error {
    	klog.InfoS("Register new DRA plugin", "name", pluginName, "endpoint", endpoint)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 19 16:27:05 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  10. pkg/printers/tablegenerator.go

    func (h *HumanReadableGenerator) With(fns ...func(PrintHandler)) *HumanReadableGenerator {
    	for _, fn := range fns {
    		fn(h)
    	}
    	return h
    }
    
    // GenerateTable returns a table for the provided object, using the printer registered for that type. It returns
    // a table that includes all of the information requested by options, but will not remove rows or columns. The
    // caller is responsible for applying rules related to filtering rows or columns.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 5.9K bytes
    - Viewed (0)
Back to top