Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 179 for sresource (0.21 sec)

  1. src/vendor/golang.org/x/net/dns/dnsmessage/message.go

    	if err != nil {
    		return MXResource{}, &nestedError{"Pref", err}
    	}
    	var mx Name
    	if _, err := mx.unpack(msg, off); err != nil {
    		return MXResource{}, &nestedError{"MX", err}
    	}
    	return MXResource{pref, mx}, nil
    }
    
    // An NSResource is an NS Resource record.
    type NSResource struct {
    	NS Name
    }
    
    func (r *NSResource) realType() Type {
    	return TypeNS
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 69K bytes
    - Viewed (0)
  2. src/net/dnsclient_unix_test.go

    						Header: dnsmessage.ResourceHeader{
    							Name:   dnsmessage.MustNewName("good.golang.org."),
    							Type:   dnsmessage.TypeMX,
    							Class:  dnsmessage.ClassINET,
    							Length: 4,
    						},
    						Body: &dnsmessage.MXResource{
    							MX: dnsmessage.MustNewName("good.golang.org."),
    						},
    					},
    				)
    			case dnsmessage.TypeNS:
    				r.Answers = append(r.Answers,
    					dnsmessage.Resource{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

      // Returns if the given value is a resource that needs lifting.
      bool Contains(Value resource) const {
        return resources_.find(resource) != resources_.end();
      }
    
      // Drops the given resource from lifting.
      void DropResource(Value resource) {
        resources_.erase(resource);
        written_resources_.remove(resource);
      }
    
      // Replaces all resource loads in all regions attached to the op.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/decompose_resource_ops.mlir

    // RUN: tf-opt %s -tf-device-decompose-resource-ops | FileCheck -check-prefixes=CHECK,ALWAYS-DECOMPOSE %s
    // RUN: tf-opt %s -tf-device-decompose-resource-ops-in-cluster | FileCheck -check-prefixes=CHECK,CLUSTER-ONLY %s
    
    // Tests different behavior of two passes if the op is outside cluster
    // tf-device-decompose-resource-ops would always decompose the resource op.
    // tf-device-decompose-resource-ops-in-cluster would not decompose ops outside
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 19:47:48 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/noderesources/fit_test.go

    		v1.ResourceCPU:              *resource.NewMilliQuantity(milliCPU, resource.DecimalSI),
    		v1.ResourceMemory:           *resource.NewQuantity(memory, resource.BinarySI),
    		v1.ResourcePods:             *resource.NewQuantity(pods, resource.DecimalSI),
    		extendedResourceA:           *resource.NewQuantity(extendedA, resource.DecimalSI),
    		v1.ResourceEphemeralStorage: *resource.NewQuantity(storage, resource.BinarySI),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 57.4K bytes
    - Viewed (0)
  6. pkg/kubelet/nodestatus/setters_test.go

    						"negative-resource": *resource.NewQuantity(-1, resource.BinarySI),
    					},
    					Allocatable: v1.ResourceList{
    						v1.ResourceCPU:      *resource.NewMilliQuantity(2000, resource.DecimalSI),
    						v1.ResourceMemory:   *resource.NewQuantity(1024, resource.BinarySI),
    						v1.ResourcePods:     *resource.NewQuantity(110, resource.DecimalSI),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 21:47:24 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  7. api/discovery/aggregated_v2beta1.json

            }
          ]
        },
        {
          "metadata": {
            "creationTimestamp": null,
            "name": "resource.k8s.io"
          },
          "versions": [
            {
              "freshness": "Current",
              "resources": [
                {
                  "resource": "podschedulingcontexts",
                  "responseKind": {
                    "group": "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  8. plugin/pkg/admission/resourcequota/admission_test.go

    			Hard: corev1.ResourceList{
    				corev1.ResourceCPU:    resource.MustParse("3"),
    				corev1.ResourceMemory: resource.MustParse("100Gi"),
    				corev1.ResourcePods:   resource.MustParse("5"),
    			},
    			Used: corev1.ResourceList{
    				corev1.ResourceCPU:    resource.MustParse("1"),
    				corev1.ResourceMemory: resource.MustParse("50Gi"),
    				corev1.ResourcePods:   resource.MustParse("3"),
    			},
    		},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:28:42 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  9. api/discovery/aggregated_v2.json

            }
          ]
        },
        {
          "metadata": {
            "creationTimestamp": null,
            "name": "resource.k8s.io"
          },
          "versions": [
            {
              "freshness": "Current",
              "resources": [
                {
                  "resource": "podschedulingcontexts",
                  "responseKind": {
                    "group": "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 12 17:29:14 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/convert_control_to_data_outputs.mlir

        // CHECK: tf_executor.fetch
        tf_executor.fetch
      }
      // CHECK: return
      func.return
    }
    
    // -----
    
    !tf_res = tensor<!tf_type.resource<tensor<f32>>>
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 18:35:00 UTC 2024
    - 68.9K bytes
    - Viewed (0)
Back to top