Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 568 for Dedicated (0.19 sec)

  1. pkg/kubelet/server/stats/handler.go

    	// ImageFsStats returns the stats of the image filesystem.
    	// Kubelet allows three options for container filesystems
    	// Everything is on node fs (so no image filesystem)
    	// Container storage is on a dedicated disk (imageFs is separate from root)
    	// Container Filesystem is on root and Images are stored on ImageFs
    	// First return parameter is the image filesystem and
    	// second parameter is the container filesystem
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 14 21:31:38 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  2. testing/performance/docs/performance-bisect.md

    //            }
            }
            baselineVersions
        }
    ...
    ```
    
    ## Perform the search
    
    While doing the search no other activity should be done on the machine. Therefore, it
    is best to have a dedicated machine running the search, e.g., using the CI infrastructure.
    
    In order to check if the test passes for the current revision you can use [check-rev.sh](check-rev.sh).
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  3. pkg/util/taints/taints_test.go

    			expectedTaintsToRemove: []v1.Taint{
    				{
    					Key:    "foo",
    					Effect: v1.TaintEffectNoSchedule,
    				},
    				{
    					Key:    "bar",
    					Effect: v1.TaintEffectNoSchedule,
    				},
    				{
    					Key:    "qux",
    					Effect: v1.TaintEffectNoSchedule,
    				},
    				{
    					Key: "dedicated",
    				},
    			},
    			expectedErr: false,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 16 09:23:35 UTC 2022
    - 22.6K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/dataflow_actions.adoc

    <2> All other parameters must be annotated with link:{javadocPath}/org/gradle/api/tasks/Input.html[`@Input`].
    
    == Using lifecycle event providers
    
    Besides the usual value providers, Gradle provides dedicated providers for build lifecycle events, like build completion.
    These providers are intended for dataflow actions and provide additional ordering guarantees when used as inputs.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:10 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  5. pkg/kubelet/stats/provider.go

    		UsedBytes:      &rootFsInfo.Usage,
    		InodesFree:     rootFsInfo.InodesFree,
    		Inodes:         rootFsInfo.Inodes,
    		InodesUsed:     nodeFsInodesUsed,
    	}, nil
    }
    
    // HasDedicatedImageFs returns true if a dedicated image filesystem exists for storing images.
    // KEP Issue Number 4191: Enhanced this to allow for the containers to be separate from images.
    func (p *Provider) HasDedicatedImageFs(ctx context.Context) (bool, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 13:56:22 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  6. docs/en/docs/how-to/nosql-databases-couchbase.md

    * Take a username.
    * Generate a document ID from it.
    * Get the document with that ID.
    * Put the contents of the document in a `UserInDB` model.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 6K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuildingHelper.java

                     * loaded into the core and hence available to plugins, in contrast to bigger extensions that were
                     * loaded into a dedicated realm which is invisible to plugins (MNG-2749).
                     */
                    publicArtifacts.addAll(artifacts);
                }
            }
    
            if (logger.isDebugEnabled()) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:55:54 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tfr/README.md

    converter, CPU kernels, etc.). Writing shape functions and gradients for these
    ops is extremely difficult. `tf.function` makes some parts of the implementation
    simpler, but it introduces runtime overhead and it cannot easily be used to
    apply dedicated optimizations to op kernels.
    
    The composable TF framework allows the user to define portable TF ops as
    compositions of other TF ops. It translates a Python function used to define the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 29 18:32:13 UTC 2022
    - 6.2K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/DefaultConfigurationMetadata.java

        // eagerly because it's very likely that those methods would only be called on the selected variant. Therefore it's a waste of time
        // to compute them eagerly when those filtering methods are called. We cannot use a dedicated, lazy wrapper over configuration metadata
        // because we need the attributes to be computes lazily too, because of component metadata rules.
        private final DependencyFilter dependencyFilter;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/internal/concurrent/TaskQueue.kt

    import okhttp3.internal.assertNotHeld
    import okhttp3.internal.okHttpName
    
    /**
     * A set of tasks that are executed in sequential order.
     *
     * Work within queues is not concurrent. This is equivalent to each queue having a dedicated thread
     * for its work; in practice a set of queues may share a set of threads to save resources.
     */
    class TaskQueue internal constructor(
      internal val taskRunner: TaskRunner,
      internal val name: String,
    ) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 7.5K bytes
    - Viewed (0)
Back to top