Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 321 for managed (0.15 sec)

  1. src/runtime/extern.go

    The GOMEMLIMIT variable sets a soft memory limit for the runtime. This memory limit
    includes the Go heap and all other memory managed by the runtime, and excludes
    external memory sources such as mappings of the binary itself, memory managed in
    other languages, and memory held by the operating system on behalf of the Go
    program. GOMEMLIMIT is a numeric value in bytes with an optional unit suffix.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/policy/v1/types.go

    	// evictions by specifying "100%".
    	// +optional
    	MinAvailable *intstr.IntOrString `json:"minAvailable,omitempty" protobuf:"bytes,1,opt,name=minAvailable"`
    
    	// Label query over pods whose evictions are managed by the disruption
    	// budget.
    	// A null selector will match no pods, while an empty ({}) selector will select
    	// all pods within the namespace.
    	// +patchStrategy=replace
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  3. manifests/addons/dashboards/pilot-dashboard.gen.json

          },
          {
             "datasource": {
                "type": "datasource",
                "uid": "-- Mixed --"
             },
             "description": "Count of active and pending proxies managed by each instance.\nPending is expected to converge to zero.\n",
             "gridPos": {
                "h": 10,
                "w": 8,
                "x": 8,
                "y": 14
             },
             "id": 13,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/resource/v1alpha2/generated.proto

      optional string name = 1;
    }
    
    // NamedResourcesAttribute is a combination of an attribute name and its value.
    message NamedResourcesAttribute {
      // Name is unique identifier among all resource instances managed by
      // the driver on the node. It must be a DNS subdomain.
      optional string name = 1;
    
      optional NamedResourcesAttributeValue attributeValue = 2;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 22:07:50 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/ingress/controller.go

    	"istio.io/istio/pkg/kube/controllers"
    	"istio.io/istio/pkg/kube/kclient"
    	"istio.io/istio/pkg/util/sets"
    )
    
    // In 1.0, the Gateway is defined in the namespace where the actual controller runs, and needs to be managed by
    // user.
    // The gateway is named by appending "-istio-autogenerated-k8s-ingress" to the name of the ingress.
    //
    // Currently the gateway namespace is hardcoded to istio-system (model.IstioIngressNamespace)
    //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 03:53:05 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/aot/codegen_test_h.golden

      //   with dim indices specifying which value. No bounds checking is performed
      //   on dim indices.
      //
      // Unlike the arg methods, there is no set_resultN_data method. The result
      // buffers are managed internally, and may change after each call to Run.
    
      tensorflow::uint32* result0_data() {
        return static_cast<tensorflow::uint32*>(result_data(0));
      }
      tensorflow::uint32& result0(size_t dim0, size_t dim1) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 01:20:01 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  7. pkg/kubelet/logs/container_log_manager.go

    	// tmpSuffix is the suffix for temporary file.
    	tmpSuffix = ".tmp"
    )
    
    // ContainerLogManager manages lifecycle of all container logs.
    //
    // Implementation is thread-safe.
    type ContainerLogManager interface {
    	// TODO(random-liu): Add RotateLogs function and call it under disk pressure.
    	// Start container log manager.
    	Start()
    	// Clean removes all logs of specified container.
    	Clean(ctx context.Context, containerID string) error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 15K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/directory_layout.adoc

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    [[directory_layout]]
    = Gradle-managed Directories
    
    Gradle uses two main directories to perform and manage its work: the <<#dir:gradle_user_home>> and the <<#dir:project_root>>.
    
    image::author-gradle-2.png[]
    
    [[dir:gradle_user_home]]
    == Gradle User Home directory
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 23:00:38 UTC 2024
    - 13K bytes
    - Viewed (0)
  9. maven-core/src/test/java/org/apache/maven/project/ProjectBuilderTest.java

            assertNotNull(result.getProject().getParentFile());
        }
    
        @Test
        void testVersionlessManagedDependency() throws Exception {
            File pomFile = new File("src/test/resources/projects/versionless-managed-dependency.xml");
            MavenSession mavenSession = createMavenSession(null);
            ProjectBuildingRequest configuration = new DefaultProjectBuildingRequest();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:06:12 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  10. pkg/volume/volume.go

    	// need to fill it.
    	Message *string
    }
    
    // Attributes represents the attributes of this mounter.
    type Attributes struct {
    	ReadOnly       bool
    	Managed        bool
    	SELinuxRelabel bool
    }
    
    // MounterArgs provides more easily extensible arguments to Mounter
    type MounterArgs struct {
    	// When FsUser is set, the ownership of the volume will be modified to be
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 11.8K bytes
    - Viewed (0)
Back to top