Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for Other2 (0.16 sec)

  1. pkg/kubelet/kubelet_pods.go

    // If the tool is not installed, or there are no IDs configured, the default mapping is returned.
    // The default mapping includes the entire IDs range except IDs below 65536.
    func (kl *Kubelet) getKubeletMappings() (uint32, uint32, error) {
    	// default mappings to return if there is no specific configuration
    	const defaultFirstID = 1 << 16
    	const defaultLen = 1<<32 - defaultFirstID
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  2. pilot/pkg/xds/delta.go

    		// loading request, concurrency=1. Once that request is done, concurrency is enabled.
    		// However, the XDS stream is long lived, so the first request would block all others. As a
    		// result, we should exit the first request immediately; clients will retry.
    		firstRequest.Store(false)
    		return status.Error(codes.Unavailable, "server warmup not complete; try again")
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  3. pilot/pkg/model/telemetry_test.go

    			computedTelemetries: &computedTelemetries{},
    			args: args{
    				other: &computedTelemetries{},
    			},
    			want: true,
    		},
    		{
    			name:                "computedTelemetries is nil and other computedTelemetries is not",
    			computedTelemetries: nil,
    			args: args{
    				other: &computedTelemetries{
    					Metrics: []*tpb.Metrics{
    						{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet.go

    	// changes and to update pod status. On the other hand, a shorter period
    	// will cause more frequent relisting (e.g., container runtime operations),
    	// leading to higher cpu usage.
    	// Note that even though we set the period to 1s, the relisting itself can
    	// take more than 1s to finish if the container runtime responds slowly
    	// and/or when there are many container changes in one cycle.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  5. tensorflow/c/experimental/stream_executor/stream_executor.cc

                              SP_ALLOCATORSTATS_STRUCT_SIZE);
      // All other fields could theoretically be zero/null.
      return absl::OkStatus();
    }
    
    absl::Status ValidateSPDeviceMemoryBase(const SP_DeviceMemoryBase& mem) {
      TF_VALIDATE_STRUCT_SIZE(SP_DeviceMemoryBase, mem,
                              SP_DEVICE_MEMORY_BASE_STRUCT_SIZE);
      // All other fields could theoretically be zero/null.
      return absl::OkStatus();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 14 07:39:19 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/gateway/conversion.go

    // If there is an IP, we will set the `loadBalancerIP` type.
    // While there is no defined standard for this in the API yet, it is tracked in https://github.com/kubernetes-sigs/gateway-api/issues/892.
    // So far, this mirrors how out of clusters work (address set means to use existing IP, unset means to provision one),
    // and there has been growing consensus on this model for in cluster deployments.
    //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/examples/client-go/pkg/client/clientset/versioned/typed/cr/v1/example.go

    	return &examples{
    		client: c.RESTClient(),
    		ns:     namespace,
    	}
    }
    
    // Get takes name of the example, and returns the corresponding example object, and an error if there is any.
    func (c *examples) Get(ctx context.Context, name string, options metav1.GetOptions) (result *v1.Example, err error) {
    	result = &v1.Example{}
    	err = c.client.Get().
    		Namespace(c.ns).
    		Resource("examples").
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 10:52:54 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/typed/apiextensions/v1/customresourcedefinition.go

    	return &customResourceDefinitions{
    		client: c.RESTClient(),
    	}
    }
    
    // Get takes name of the customResourceDefinition, and returns the corresponding customResourceDefinition object, and an error if there is any.
    func (c *customResourceDefinitions) Get(ctx context.Context, name string, options metav1.GetOptions) (result *v1.CustomResourceDefinition, err error) {
    	result = &v1.CustomResourceDefinition{}
    	err = c.client.Get().
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 10:52:54 UTC 2024
    - 12K bytes
    - Viewed (0)
  9. tensorflow/c/experimental/stream_executor/stream_executor_internal.h

      absl::Status RecordEvent(Event* event) override {
        return static_cast<CEvent*>(event)->Record(stream_handle_);
      }
    
      absl::Status WaitFor(Stream* other) override {
        tensorflow::TF_StatusPtr c_status(TF_NewStatus());
        SP_Stream other_handle = static_cast<CStream*>(other)->Handle();
        stream_executor_->create_stream_dependency(device_, stream_handle_,
                                                   other_handle, c_status.get());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 14 07:39:19 UTC 2024
    - 8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/typed/apiextensions/v1beta1/customresourcedefinition.go

    	return &customResourceDefinitions{
    		client: c.RESTClient(),
    	}
    }
    
    // Get takes name of the customResourceDefinition, and returns the corresponding customResourceDefinition object, and an error if there is any.
    func (c *customResourceDefinitions) Get(ctx context.Context, name string, options v1.GetOptions) (result *v1beta1.CustomResourceDefinition, err error) {
    	result = &v1beta1.CustomResourceDefinition{}
    	err = c.client.Get().
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 10:52:54 UTC 2024
    - 12.1K bytes
    - Viewed (0)
Back to top