Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for classy (0.12 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProblemReportingIntegrationTest.groovy

            given:
            buildFile << """
                class SomeBean {
                    Gradle gradle
                    def nested = new NestedBean()
                }
    
                class NestedBean {
                    Gradle gradle
                    Project project
                }
    
                class SomeTask extends DefaultTask {
                    private final bean = new SomeBean()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

        public void beforeExecute(@DelegatesTo(GradleExecuter.class) Closure action) {
            beforeExecute.add(new ClosureBackedAction<>(action));
        }
    
        @Override
        public void afterExecute(Action<? super GradleExecuter> action) {
            afterExecute = afterExecute.add(action);
        }
    
        @Override
        public void afterExecute(@DelegatesTo(GradleExecuter.class) Closure action) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  3. cmd/erasure-object.go

    	disks := er.getDisks()
    	// Assume (N/2 + 1) quorum for Delete()
    	// this is a theoretical assumption such that
    	// for delete's we do not need to honor storage
    	// class for objects that have reduced quorum
    	// due to storage class - this only needs to be honored
    	// for Read() requests alone that we already do.
    	writeQuorum := len(disks)/2 + 1
    
    	g := errgroup.WithNErrs(len(disks))
    	for index := range disks {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/gateway/conversion.go

    	namespaceLabelReferences := sets.New[string]()
    	classes := getGatewayClasses(r.GatewayResources, gatewaySupportedFeatures)
    	for _, obj := range r.Gateway {
    		obj := obj
    		kgw := obj.Spec.(*k8s.GatewaySpec)
    		controllerName, f := classes[string(kgw.GatewayClassName)]
    		if !f {
    			// No gateway class found, this may be meant for another controller; should be skipped.
    			continue
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  5. pilot/pkg/model/telemetry_logging_test.go

    				Providers: []*tpb.ProviderRef{
    					{
    						Name: "envoy-json",
    					},
    				},
    			},
    		},
    	}
    	tests := []struct {
    		name             string
    		cfgs             []config.Config
    		class            networking.ListenerClass
    		proxy            *Proxy
    		defaultProviders []string
    		want             []string
    	}{
    		{
    			"empty",
    			nil,
    			networking.ListenerClassSidecarOutbound,
    			sidecar,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 54K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

    import org.apache.maven.api.services.model.*;
    import org.apache.maven.model.v4.MavenModelVersion;
    import org.apache.maven.model.v4.MavenTransformer;
    
    /**
     */
    @Named
    @Singleton
    public class DefaultModelValidator implements ModelValidator {
    
        public static final List<String> VALID_MODEL_VERSIONS =
                Collections.unmodifiableList(Arrays.asList("4.0.0", "4.1.0"));
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  7. configure.py

    ]
    
    # List of files to move when building for iOS.
    IOS_FILES = [
        'tensorflow/lite/objc/TensorFlowLiteObjC.podspec',
        'tensorflow/lite/swift/TensorFlowLiteSwift.podspec',
    ]
    
    
    class UserInputError(Exception):
      pass
    
    
    def is_windows():
      return platform.system() == 'Windows'
    
    
    def is_linux():
      return platform.system() == 'Linux'
    
    
    def is_macos():
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  8. cmd/batch-handlers.go

    	_, err = j.UnmarshalMsg(job)
    	return err
    }
    
    func batchReplicationOpts(ctx context.Context, sc string, objInfo ObjectInfo) (putOpts miniogo.PutObjectOptions, err error) {
    	// TODO: support custom storage class for remote replication
    	putOpts, err = putReplicationOpts(ctx, "", objInfo, 0)
    	if err != nil {
    		return putOpts, err
    	}
    	putOpts.Internal = miniogo.AdvancedPutOptions{
    		SourceVersionID:    objInfo.VersionID,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 56K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/debug.go

    	// register (or context register for rangefunc bodies) to the
    	// stack, along with the value being stored.
    	isRegMoveLike := func(v *Value) (bool, ID) {
    		n, ok := v.Aux.(*ir.Name)
    		var r ID
    		if (!ok || n.Class != ir.PPARAM) && !needCloCtx {
    			return false, r
    		}
    		regInputs, memInputs, spInputs := 0, 0, 0
    		for _, a := range v.Args {
    			if a.Op == OpArgIntReg || a.Op == OpArgFloatReg ||
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
Back to top