Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 35 for assign_id (0.72 sec)

  1. src/runtime/mfinal.go

    // new, by taking the address of a composite literal, or by taking the
    // address of a local variable.
    // The argument finalizer must be a function that takes a single argument
    // to which obj's type can be assigned, and can have arbitrary ignored return
    // values. If either of these is not true, SetFinalizer may abort the
    // program.
    //
    // Finalizers are run in dependency order: if A points at B, both have
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 01:56:56 UTC 2024
    - 19K bytes
    - Viewed (0)
  2. cmd/bucket-replication-utils.go

    type TargetReplicationResyncStatus struct {
    	StartTime  time.Time `json:"startTime" msg:"st"`
    	LastUpdate time.Time `json:"lastUpdated" msg:"lst"`
    	// Resync ID assigned to this reset
    	ResyncID string `json:"resyncID" msg:"id"`
    	// ResyncBeforeDate - resync all objects created prior to this date
    	ResyncBeforeDate time.Time `json:"resyncBeforeDate" msg:"rdt"`
    	// Status of resync operation
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/gateway/conversion.go

    		},
    	}
    
    	if gatewayErr != nil {
    		gatewayConditions[string(k8s.GatewayConditionAccepted)].error = gatewayErr
    	}
    
    	if len(internal) > 0 {
    		msg := fmt.Sprintf("Resource programmed, assigned to service(s) %s", humanReadableJoin(internal))
    		gatewayConditions[string(k8s.GatewayReasonProgrammed)].message = msg
    	}
    
    	if len(gatewayServices) == 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/passes.h

    std::unique_ptr<OperationPass<ModuleOp>>
    CreateTFExecutorUpdateControlDependenciesPass();
    
    }  // namespace tf_executor
    
    namespace TFDevice {
    // Creates a pass that forms clusters from instructions that are assigned to
    // same device.
    std::unique_ptr<OperationPass<ModuleOp>> CreateClusterFormationPass();
    
    // Sinks `tf.Const` operations in the ClusterOp region using them. This is
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  5. pkg/kubelet/container/runtime.go

    type PodStatus struct {
    	// ID of the pod.
    	ID types.UID
    	// Name of the pod.
    	Name string
    	// Namespace of the pod.
    	Namespace string
    	// All IPs assigned to this pod
    	IPs []string
    	// Status of containers in the pod.
    	ContainerStatuses []*Status
    	// Status of the pod sandbox.
    	// Only for kuberuntime now, other runtime may keep it nil.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java

            assertTrue(cancellationSuccess.get());
            // cancellation can interleave in 3 ways
            // 1. prior to setFuture
            // 2. after setFuture before set() on the future assigned
            // 3. after setFuture and set() are called but before the listener completes.
            if (!setFutureSetSuccess.get() || !setFutureCompletionSuccess.get()) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 46.7K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java

            assertTrue(cancellationSuccess.get());
            // cancellation can interleave in 3 ways
            // 1. prior to setFuture
            // 2. after setFuture before set() on the future assigned
            // 3. after setFuture and set() are called but before the listener completes.
            if (!setFutureSetSuccess.get() || !setFutureCompletionSuccess.get()) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 46.7K bytes
    - Viewed (0)
  8. cluster/gce/windows/k8s-node-setup.psm1

      $pod_gateway = Get_Endpoint_Gateway_From_CIDR(${env:POD_CIDR})
    
      # Explanation of the CNI config values:
      #   POD_CIDR: the pod CIDR assigned to this node.
      #   POD_GATEWAY: the gateway IP.
      #   MGMT_IP: the IP address assigned to the node's primary network interface
      #     (i.e. the internal IP of the GCE VM).
      #   SERVICE_CIDR: the CIDR used for kubernetes services.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

                        // receiver is needed by the resolver. The dispatch and extension receivers are only assigned after resolution when a
                        // candidate is selected.
                        source = ******@****.***
                        annotations.addAll(******@****.***tions)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/data.go

    	ldr.SetSymSect(ldr.LookupOrCreateSym("runtime.ebss", 0), sect)
    	bssGcEnd := state.datsize - int64(sect.Vaddr)
    
    	// Emit gcdata for bss symbols now that symbol values have been assigned.
    	gcsToEmit := []struct {
    		symName string
    		symKind sym.SymKind
    		gcEnd   int64
    	}{
    		{"runtime.gcdata", sym.SDATA, dataGcEnd},
    		{"runtime.gcbss", sym.SBSS, bssGcEnd},
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
Back to top