Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 74 for resource_type (0.18 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

        }
    
        TensorType resource_subtype = mlir::cast<TensorType>(value.getType());
        ResourceType resource_type =
            ResourceType::get({resource_subtype}, op.getContext());
        UnrankedTensorType new_resource_type =
            UnrankedTensorType::get(resource_type);
    
        Type refined_type = TypeMeet(resource.getType(), new_resource_type);
        if (refined_type == resource.getType()) continue;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  2. pkg/config/analysis/analyzers/annotations/annotations.go

    		if candidate.Name == ann {
    			return candidate
    		}
    	}
    
    	return nil
    }
    
    func resourceTypesAsStrings(resourceTypes []annotation.ResourceTypes) []string {
    	retval := []string{}
    	for _, resourceType := range resourceTypes {
    		if s := resourceType.String(); s != "Unknown" {
    			retval = append(retval, s)
    		}
    	}
    	return retval
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 25 13:14:31 UTC 2023
    - 5K bytes
    - Viewed (0)
  3. pilot/pkg/xds/debug.go

    							}
    						}
    						dumps[resourceType] = append(dumps[resourceType], &discoveryv3.Resource{
    							Name:     w.Config.Name,
    							Resource: protoconv.MessageToAny(w),
    						})
    					default:
    						dumps[resourceType] = append(dumps[resourceType], rr)
    					}
    				default:
    					dumps[resourceType] = append(dumps[resourceType], rr)
    				}
    			}
    		} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  4. internal/arn/arn_test.go

    			arn: ARN{
    				Partition:    "minio",
    				Service:      "iam",
    				Region:       "us-east-1",
    				ResourceType: "role",
    				ResourceID:   "my-role",
    			},
    			want: "arn:minio:iam:us-east-1::role/my-role",
    		},
    		{
    			arn: ARN{
    				Partition:    "minio",
    				Service:      "",
    				Region:       "us-east-1",
    				ResourceType: "role",
    				ResourceID:   "my-role",
    			},
    			want: "arn:minio::us-east-1::role/my-role",
    		},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 08:31:34 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  5. pilot/pkg/model/credentials/resource.go

    	SdsCaSuffix = "-cacert"
    )
    
    // SecretResource defines a reference to a secret
    type SecretResource struct {
    	// ResourceType is the type of secret. One of KubernetesSecretType or KubernetesGatewaySecretType
    	ResourceType string
    	// Name is the name of the secret
    	Name string
    	// Namespace is the namespace the secret resides in. For implicit namespace references (such as in KubernetesSecretType),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 28 20:33:15 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  6. internal/arn/arn.go

    		Region:       serverRegion,
    		ResourceType: arnResourceTypeRole,
    		ResourceID:   resourceID,
    	}, nil
    }
    
    // String - returns string representation of the ARN.
    func (arn ARN) String() string {
    	return strings.Join(
    		[]string{
    			arnPrefixArn,
    			arn.Partition,
    			arn.Service,
    			arn.Region,
    			"", // account-id is always empty in this implementation
    			arn.ResourceType + "/" + arn.ResourceID,
    		},
    		":",
    	)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 08:31:34 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  7. operator/pkg/translate/translate.go

    			"Components.{{.ComponentName}}.K8S.PriorityClassName":   {OutPath: "[{{.ResourceType}}:{{.ResourceName}}].spec.template.spec.priorityClassName."},
    			"Components.{{.ComponentName}}.K8S.ReadinessProbe":      {OutPath: "[{{.ResourceType}}:{{.ResourceName}}].spec.template.spec.containers.[name:{{.ContainerName}}].readinessProbe"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 12 19:43:09 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/memorymanager/memory_manager.go

    	for resourceType := range totalMemoryType {
    		commonMemoryTypeSet[resourceType] = true
    	}
    
    	for resourceType := range nodeAllocatableReservation {
    		if !(corev1helper.IsHugePageResourceName(resourceType) || resourceType == v1.ResourceMemory) {
    			continue
    		}
    		commonMemoryTypeSet[resourceType] = true
    	}
    
    	for resourceType := range commonMemoryTypeSet {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 00:50:45 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  9. pilot/pkg/model/credentials/resource_test.go

    			expected: SecretResource{
    				ResourceType: KubernetesSecretType,
    				Name:         "cert",
    				Namespace:    "default",
    				ResourceName: "kubernetes://cert",
    				Cluster:      "cluster",
    			},
    		},
    		{
    			name:             "with namespace",
    			resource:         "kubernetes://namespace/cert",
    			defaultNamespace: "default",
    			expected: SecretResource{
    				ResourceType: KubernetesSecretType,
    				Name:         "cert",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 28 20:33:15 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/tpu_partitioned_op_conversion.cc

      } else {
        first_operand_type = op.getOperand().getType();
      }
    
      auto element_type = getElementTypeOrSelf(first_operand_type);
      if (mlir::isa<TF::ResourceType>(element_type)) {
        first_operand_type =
            mlir::cast<TF::ResourceType>(element_type).getSubtypes().front();
      }
    
      auto tensor_type = mlir::dyn_cast_or_null<TensorType>(first_operand_type);
      if (!(tensor_type && tensor_type.hasRank())) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.1K bytes
    - Viewed (0)
Back to top