Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 454 for zeroed (0.11 sec)

  1. maven-core/src/main/java/org/apache/maven/model/plugin/DefaultLifecycleBindingsInjector.java

                    List<Plugin> tgt = target.getPlugins();
    
                    Map<Object, Plugin> merged = new LinkedHashMap<>((src.size() + tgt.size()) * 2);
    
                    for (Plugin element : tgt) {
                        Object key = getPluginKey().apply(element);
                        merged.put(key, element);
                    }
    
                    Map<Object, Plugin> added = new LinkedHashMap<>();
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation_test.go

    						ListKind: "PluralList",
    					},
    					Versions: []apiextensions.CustomResourceDefinitionVersion{
    						{
    							Name:    "version",
    							Served:  true,
    							Storage: true,
    						},
    						{
    							Name:    "version2",
    							Served:  true,
    							Storage: false,
    						},
    					},
    					Conversion: &apiextensions.CustomResourceConversion{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 349.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/tpu_merge_variables_with_execute.cc

      // merged execute.
      Operation* new_parallel_execute_op = new_parallel_execute.getOperation();
      for (int i = 0; i < num_results_before_region; ++i)
        parallel_execute_op->getResult(i).replaceAllUsesWith(
            new_parallel_execute_op->getResult(i));
    
      // Replace the uses of the original parallel_execute after region containing
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 29 17:52:11 UTC 2024
    - 27K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/rbac/v1beta1/generated.proto

    // ClusterRole is a cluster level, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding or ClusterRoleBinding.
    // Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 ClusterRole, and will no longer be served in v1.22.
    message ClusterRole {
      // Standard object's metadata.
      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
    
      // Rules holds all the PolicyRules for this ClusterRole
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/client/applyconfiguration/apiextensions/v1/customresourcedefinitionversion.go

    // with apply.
    type CustomResourceDefinitionVersionApplyConfiguration struct {
    	Name                     *string                                            `json:"name,omitempty"`
    	Served                   *bool                                              `json:"served,omitempty"`
    	Storage                  *bool                                              `json:"storage,omitempty"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/rbac/v1beta1/generated.proto

    // ClusterRole is a cluster level, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding or ClusterRoleBinding.
    // Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 ClusterRole, and will no longer be served in v1.22.
    message ClusterRole {
      // Standard object's metadata.
      // +optional
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
    
      // Rules holds all the PolicyRules for this ClusterRole
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/rbac/v1alpha1/generated.proto

    // ClusterRole is a cluster level, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding or ClusterRoleBinding.
    // Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 ClusterRole, and will no longer be served in v1.22.
    message ClusterRole {
      // Standard object's metadata.
      // +optional
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
    
      // Rules holds all the PolicyRules for this ClusterRole
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  8. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/MavenMetadata.java

            Metadata recessive = read(existing);
    
            merge(recessive);
    
            write(result, metadata);
    
            merged = true;
        }
    
        @Override
        public boolean isMerged() {
            return merged;
        }
    
        protected abstract void merge(Metadata recessive);
    
        static Metadata read(Path metadataPath) throws RepositoryException {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  9. pkg/config/mesh/mesh_test.go

    		config.DefaultConfig.ProxyMetadata = map[string]string{
    			"merged":  "original",
    			"default": "foo",
    		}
    		mc, err := mesh.ApplyProxyConfig(`proxyMetadata: {"merged":"override","override":"bar"}`, config)
    		assert.NoError(t, err)
    		// Ensure we didn't modify the passed in mesh config
    		assert.Equal(t, mc.DefaultConfig.ProxyMetadata, map[string]string{
    			"merged":   "override",
    			"default":  "foo",
    			"override": "bar",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/client/applyconfiguration/apiextensions/v1beta1/customresourcedefinitionversion.go

    // with apply.
    type CustomResourceDefinitionVersionApplyConfiguration struct {
    	Name                     *string                                            `json:"name,omitempty"`
    	Served                   *bool                                              `json:"served,omitempty"`
    	Storage                  *bool                                              `json:"storage,omitempty"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top