Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 151 for assign_id (0.29 sec)

  1. staging/src/k8s.io/api/networking/v1beta1/generated.proto

    // used to indicate that an IngressClass should be considered default. When a
    // single IngressClass resource has this annotation set to true, new Ingress
    // resources without a class specified will be assigned this default class.
    message IngressClass {
      // Standard object's metadata.
      // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/tpu_validate_inputs.cc

        }
        if (sharding.tile_assignment_devices_size() != 1) {
          op->emitOpError("TF/XLA TPU bridge input check: There must be ")
              << "exactly 1 device for MAXIMAL sharding."
              << " Number of devices assigned are "
              << sharding.tile_assignment_devices_size() << "\n";
          return false;
        } else {
          int sharding_device = sharding.tile_assignment_devices(0);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 06:51:01 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  3. src/encoding/xml/xml_test.go

    	}
    	testCase := `<example>
    			<title>Example</title>
    			<link>http://example.com/default</link> <!-- not assigned -->
    			<link>http://example.com/home</link> <!-- not assigned -->
    			<ns:link xmlns:ns="http://www.w3.org/2005/Atom">http://example.com/ns</ns:link>
    		</example>`
    
    	var dest ExampleConflict
    	d := NewDecoder(strings.NewReader(testCase))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  4. pkg/controller/nodeipam/ipam/range_allocator.go

    				logger.Error(releaseErr, "Error when releasing CIDR", "index", idx, "CIDR", cidr)
    			}
    		}
    		return nil
    	}
    
    	// If we reached here, it means that the node has no CIDR currently assigned. So we set it.
    	for i := 0; i < cidrUpdateRetries; i++ {
    		if err = nodeutil.PatchNodeCIDRs(ctx, r.client, types.NodeName(node.Name), cidrsString); err == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 10:06:15 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  5. cmd/kube-proxy/app/server_linux.go

    func waitForPodCIDR(ctx context.Context, client clientset.Interface, nodeName string) (*v1.Node, error) {
    	// since allocators can assign the podCIDR after the node registers, we do a watch here to wait
    	// for podCIDR to be assigned, instead of assuming that the Get() on startup will have it.
    	ctx, cancelFunc := context.WithTimeout(ctx, timeoutForNodePodCIDR)
    	defer cancelFunc()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/xla_device.cc

      }
      return registrations;
    }
    
    XlaDeviceOpRegistrations* RegisterXlaDeviceKernels(const char* device,
                                                       const char* jit_device) {
      // Any op assigned to the device that isn't rewritten by the graph rewriter
      // gets executed by an XlaCompileOnDemandOp, which compiles it and executes
      // it just-in-time.
      auto factory = [](OpKernelConstruction* context) -> OpKernel* {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 21:05:42 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  7. pkg/controlplane/instance_test.go

    // their various strategies properly wired up. This surfaced as a bug where strategies defined Export functions, but
    // they were never used outside of unit tests because the export strategies were not assigned inside the Store.
    func TestLegacyRestStorageStrategies(t *testing.T) {
    	_, etcdserver, apiserverCfg, _ := newInstance(t)
    	defer etcdserver.Terminate(t)
    
    	storageProvider, err := corerest.New(corerest.Config{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:50:04 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf_patterns.td

    // PartitionedCall and LegacyCall op patterns.
    //===----------------------------------------------------------------------===//
    
    def ArgTypesMatchCallee : Constraint<
        // $0 is a resultset (possibly empty), and $_op isn't assigned. So retrieve
        // the op using the builder.
        CPred<"ArgTypesMatchCallee(&*$_builder.getInsertionPoint(), $1, $2)">>;
    
    foreach callOp = [TF_PartitionedCallOp, TF_StatefulPartitionedCallOp] in {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/schedule.go

    			}
    			break
    		}
    		w = w.MemoryArg()
    	}
    	var stack []*Value
    	for _, v := range values {
    		if sset.contains(v.ID) {
    			// in sset means v is a store, or already pushed to stack, or already assigned a store number
    			continue
    		}
    		stack = append(stack, v)
    		sset.add(v.ID)
    
    		for len(stack) > 0 {
    			w := stack[len(stack)-1]
    			if storeNumber[w.ID] != 0 {
    				stack = stack[:len(stack)-1]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 15:53:17 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/internal/ws/RealWebSocket.kt

      private val originalRequest: Request,
      internal val listener: WebSocketListener,
      private val random: Random,
      private val pingIntervalMillis: Long,
      /**
       * For clients this is initially null, and will be assigned to the agreed-upon extensions. For
       * servers it should be the agreed-upon extensions immediately.
       */
      private var extensions: WebSocketExtensions?,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 01 14:21:25 UTC 2024
    - 22.1K bytes
    - Viewed (0)
Back to top