Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 98 for assign_id (0.54 sec)

  1. pkg/registry/core/service/ipallocator/cidrallocator.go

    	tree   *iptree.Tree[*Allocator]
    
    	ipFamily api.IPFamily
    }
    
    var _ Interface = &MetaAllocator{}
    
    // NewMetaAllocator returns an IP allocator that use the IPAddress
    // and ServiceCIDR objects to track the assigned IP addresses,
    // using an informer cache as storage.
    func NewMetaAllocator(
    	client networkingv1alpha1client.NetworkingV1alpha1Interface,
    	serviceCIDRInformer networkingv1alpha1informers.ServiceCIDRInformer,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  2. pilot/pkg/model/service.go

    	// the automatically allocated IPv4/IPv6 address out of the reserved
    	// Class E subnet (240.240.0.0/16) or reserved Benchmarking IP range
    	// (2001:2::/48) in RFC5180.for service entries with non-wildcard
    	// hostnames. The IPs assigned to services are not
    	// synchronized across istiod replicas as the DNS resolution
    	// for these service entries happens completely inside a pod
    	// whose proxy is managed by one istiod. That said, the algorithm
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/cpumanager/policy_static_test.go

    			stAssignments:   state.ContainerCPUAssignments{},
    			stDefaultCPUSet: cpuset.New(0, 1),
    			expErr:          fmt.Errorf("not all reserved cpus: \"0,6\" are present in defaultCpuSet: \"0-1\""),
    		},
    		{
    			description: "assigned core 2 is still present in available cpuset",
    			topo:        topoDualSocketHT,
    			stAssignments: state.ContainerCPUAssignments{
    				"fakePod": map[string]cpuset.CPUSet{
    					"0": cpuset.New(0, 1, 2),
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  4. pkg/test/framework/components/echo/deployment/builder.go

    	WithClusters(...cluster.Cluster) Builder
    
    	// Build and initialize all Echo Instances. Upon returning, the Instance pointers
    	// are assigned and all Instances are ready to communicate with each other.
    	Build() (echo.Instances, error)
    	BuildOrFail(t test.Failer) echo.Instances
    }
    
    var _ Builder = &builder{}
    
    // New builder for echo deployments.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 12K bytes
    - Viewed (0)
  5. pkg/config/model.go

    	// The data store may compactify old revisions in the interest of storage optimization.
    	//
    	// An empty revision carries a special meaning that the associated object has
    	// not been stored and assigned a revision.
    	ResourceVersion string `json:"resourceVersion,omitempty"`
    
    	// CreationTimestamp records the creation time
    	CreationTimestamp time.Time `json:"creationTimestamp,omitempty"`
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/internal/connection/RealCall.kt

        private set
      private var timeoutEarlyExit = false
    
      /**
       * This is the same value as [exchange], but scoped to the execution of the network interceptors.
       * The [exchange] field is assigned to null when its streams end, which may be before or after the
       * network interceptors return.
       */
      internal var interceptorScopedExchange: Exchange? = null
        private set
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssagen/pgen.go

    	s.stkptrsize = 0
    	s.stkalign = int64(types.RegSize)
    	fn := s.curfn
    
    	// Mark the PAUTO's unused.
    	for _, ln := range fn.Dcl {
    		if ln.OpenDeferSlot() {
    			// Open-coded defer slots have indices that were assigned
    			// upfront during SSA construction, but the defer statement can
    			// later get removed during deadcode elimination (#61895). To
    			// keep their relative offsets correct, treat them all as used.
    			continue
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  8. cmd/storage-datatypes.go

    	// TransitionedObjName is the object name on the remote tier corresponding
    	// to object (version) on the source tier.
    	TransitionedObjName string `msg:"to"`
    	// TransitionTier is the storage class label assigned to remote tier.
    	TransitionTier string `msg:"tt"`
    	// TransitionVersionID stores a version ID of the object associate
    	// with the remote tier.
    	TransitionVersionID string `msg:"tv"`
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/flags.cc

               "(this is unsound)."),
          Flag("tf_xla_deterministic_cluster_names",
               &mark_for_compilation_flags->tf_xla_deterministic_cluster_names,
               "Causes the function names assigned by auto clustering to be "
               "deterministic from run to run."),
          Flag("tf_xla_persistent_cache_directory",
               &mark_for_compilation_flags->tf_xla_persistent_cache_directory,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/transforms/tf2xla_rewriter.cc

      // TensorValue in inputs are backed by tensors which in turn depend on
      // expressions. So, pre-allocate them to the required size. Subtle note:
      // Since these are assigned to params_, these have to live past the kernel
      // compilation.
      std::vector<tensorflow::XlaExpression> expressions;
      std::vector<tensorflow::Tensor> tensors;
      std::vector<tensorflow::TensorValue> inputs;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:16:07 UTC 2024
    - 18.9K bytes
    - Viewed (0)
Back to top