Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for cherries (0.13 sec)

  1. pkg/scheduler/framework/plugins/feature/feature.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package feature
    
    // Features carries feature gate values used by various plugins.
    // This struct allows us to break the dependency of the plugins on
    // the internal k8s features pkg.
    type Features struct {
    	EnableDynamicResourceAllocation              bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  2. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/UncheckedException.java

    import javax.annotation.Nullable;
    import java.io.IOException;
    import java.lang.reflect.InvocationTargetException;
    import java.util.concurrent.Callable;
    
    /**
     * Wraps a checked exception. Carries no other context.
     */
    public final class UncheckedException extends RuntimeException {
        private UncheckedException(Throwable cause) {
            super(cause);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/schedulinggates/scheduling_gates.go

    	"k8s.io/kubernetes/pkg/scheduler/util"
    )
    
    // Name of the plugin used in the plugin registry and configurations.
    const Name = names.SchedulingGates
    
    // SchedulingGates checks if a Pod carries .spec.schedulingGates.
    type SchedulingGates struct {
    	enableSchedulingQueueHint bool
    }
    
    var _ framework.PreEnqueuePlugin = &SchedulingGates{}
    var _ framework.EnqueueExtensions = &SchedulingGates{}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/schedulinggates/scheduling_gates_test.go

    		name string
    		pod  *v1.Pod
    		want *framework.Status
    	}{
    		{
    			name: "pod does not carry scheduling gates",
    			pod:  st.MakePod().Name("p").Obj(),
    			want: nil,
    		},
    		{
    			name: "pod carries scheduling gates",
    			pod:  st.MakePod().Name("p").SchedulingGates([]string{"foo", "bar"}).Obj(),
    			want: framework.NewStatus(framework.UnschedulableAndUnresolvable, "waiting for scheduling gates: [foo bar]"),
    		},
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheFileCollectionIntegrationTest.groovy

            "files.empty"           | "false"
            "files.contains(file1)" | "true"
        }
    
        @Issue('https://github.com/gradle/gradle/issues/26352')
        def 'intricate ConfigurableFileCollection filter chain carries task dependencies'() {
            given:
            def configurationCache = newConfigurationCacheFixture()
    
            and:
            buildFile '''
                abstract class ConcatTask extends DefaultTask {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  6. cmd/storage-datatypes.go

    	FSType     string
    	RootDisk   bool
    	Healing    bool
    	Scanning   bool
    	Endpoint   string
    	MountPath  string
    	ID         string
    	Rotational bool
    	Metrics    DiskMetrics
    	Error      string // carries the error over the network
    }
    
    // DiskMetrics has the information about XL Storage APIs
    // the number of calls of each API and the moving average of
    // the duration of each API.
    type DiskMetrics struct {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  7. platforms/core-runtime/daemon-server/src/main/java/org/gradle/launcher/daemon/bootstrap/DaemonMain.java

            loggingManager.attachSystemOutAndErr();
    
            // Making the daemon infrastructure log with DEBUG. This is only for the infrastructure!
            // Each build request carries it's own log level and it is used during the execution of the build (see LogToClient)
            loggingManager.setLevelInternal(LogLevel.DEBUG);
    
            loggingManager.start();
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/DefaultConfigurationCache.kt

            // We are preserving the original value if it had to be created,
            // because it carries information required by dependency resolution
            // to ensure project artifacts are actually created the first time around.
            // When the value is loaded from the store, the dependency information is lost.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  9. pkg/security/security.go

    		if meta, ok := metadata.FromIncomingContext(ac.GrpcContext); ok {
    			return meta.Get(header)
    		}
    	} else if ac.Request != nil {
    		return ac.Request.Header.Values(header)
    	}
    	return nil
    }
    
    // Caller carries the identity and authentication source of a caller.
    type Caller struct {
    	AuthSource AuthSource
    	Identities []string
    
    	KubernetesInfo KubernetesInfo
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  10. cmd/xl-storage.go

    	// bigFileThreshold is the point where we add readahead to put operations.
    	bigFileThreshold = 128 * humanize.MiByte
    
    	// XL metadata file carries per object metadata.
    	xlStorageFormatFile = "xl.meta"
    
    	// XL metadata file backup file carries previous per object metadata.
    	xlStorageFormatFileBackup = "xl.meta.bkp"
    )
    
    var alignedBuf []byte
    
    func init() {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
Back to top