Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 431 for assign_id (0.22 sec)

  1. tensorflow/compiler/mlir/tensorflow/utils/xla_sharding_util.cc

             (sharding.tile_assignment_devices(0) < 0)))
          return cluster_func.emitError(llvm::formatv(
              "incorrect sharding format for outputs. Maximal "
              "sharding should be assigned to device id in range "
              "[0, {0}). Currently assigned to {1}",
              num_cores_per_replica, sharding.tile_assignment_devices(0)));
    
        output_sharding_list->emplace_back(std::move(sharding));
      }
      return mlir::success();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 21:28:13 UTC 2024
    - 34K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/testdata/tls.status.yaml.golden

      conditions:
      - lastTransitionTime: fake
        message: Resource accepted
        reason: Accepted
        status: "True"
        type: Accepted
      - lastTransitionTime: fake
        message: Resource programmed, assigned to service(s) istio-ingressgateway.istio-system.svc.domain.suffix:34000
        reason: Programmed
        status: "True"
        type: Programmed
      listeners:
      - attachedRoutes: 2
        conditions:
        - lastTransitionTime: fake
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 01 20:54:36 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/analysis/transformation/OriginReplacementTest.kt

                val result = replaceInnerReceiverWithTopLevel(assignments.single().rhs)
                val valAssignedFunction = ((result as ObjectOrigin.FromLocalValue).assigned) as ObjectOrigin.NewObjectFromMemberFunction
                val functionReceiver = valAssignedFunction.receiver as ObjectOrigin.ImplicitThisReceiver
                assertEquals(topLevelReceiver, functionReceiver.resolvedTo)
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 17:31:36 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/xla_device_context.h

    #include "tensorflow/core/framework/allocator.h"
    #include "tensorflow/core/framework/device_base.h"
    #include "tensorflow/core/lib/core/status.h"
    
    namespace tensorflow {
    
    // The allocator used for Tensors assigned to the XLA device. The allocator
    // ignores the alignment and size of the request and always returns a new,
    // empty, XlaTensor.
    class XlaDeviceAllocator : public Allocator {
     public:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  5. pkg/proxy/util/nodeport_addresses.go

    type NodePortAddresses struct {
    	cidrStrings []string
    
    	cidrs                []*net.IPNet
    	containsIPv4Loopback bool
    	matchAll             bool
    }
    
    // RFC 5735 127.0.0.0/8 - This block is assigned for use as the Internet host loopback address
    var ipv4LoopbackStart = net.IPv4(127, 0, 0, 0)
    
    // NewNodePortAddresses takes an IP family and the `--nodeport-addresses` value (which is
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  6. pkg/registry/core/pod/strategy.go

    	if err != nil {
    		return nil, nil, err
    	}
    
    	nodeName := types.NodeName(pod.Spec.NodeName)
    	if len(nodeName) == 0 {
    		// If pod has not been assigned a host, return an empty location
    		return nil, nil, errors.NewBadRequest(fmt.Sprintf("pod %s does not have a host assigned", name))
    	}
    	nodeInfo, err := connInfo.GetConnectionInfo(ctx, nodeName)
    	if err != nil {
    		return nil, nil, err
    	}
    	params := url.Values{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 17:51:48 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  7. pkg/controller/nodeipam/ipam/range_allocator_test.go

    			// nothing further expected
    			return
    		}
    		for _, updatedNode := range tc.fakeNodeHandler.GetUpdatedNodesCopy() {
    			if len(updatedNode.Spec.PodCIDRs) == 0 {
    				continue // not assigned yet
    			}
    			//match
    			for podCIDRIdx, expectedPodCIDR := range tc.expectedAllocatedCIDR {
    				if updatedNode.Spec.PodCIDRs[podCIDRIdx] != expectedPodCIDR {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 10:06:15 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  8. pkg/apis/core/types.go

    	// reports this record in Assigned. Assigned only updates in the status after
    	// the record has been checkpointed to disk. When the Kubelet is restarted,
    	// it tries to make the Assigned config the Active config by loading and
    	// validating the checkpointed payload identified by Assigned.
    	// +optional
    	Assigned *NodeConfigSource
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  9. plugin/pkg/admission/serviceaccount/admission_test.go

    	if err != nil {
    		t.Errorf("Unexpected error: %v", err)
    	}
    	if pod.Spec.ServiceAccountName != DefaultServiceAccountName {
    		t.Errorf("Expected service account %s assigned, got %s", DefaultServiceAccountName, pod.Spec.ServiceAccountName)
    	}
    }
    
    func TestDeniesInvalidServiceAccount(t *testing.T) {
    	ns := "myns"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 12 17:49:30 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  10. cni/pkg/util/podutil.go

    			"status",
    		)
    	if errors.IsNotFound(err) {
    		return nil
    	}
    	return err
    }
    
    // Get any IPs currently assigned to the Pod.
    //
    // If 'PodIPs' exists, it is preferred (and should be guaranteed to contain the address in 'PodIP'),
    // otherwise fallback to 'PodIP'.
    //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 17:18:11 UTC 2024
    - 4.4K bytes
    - Viewed (0)
Back to top