Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 377 for checkMin (0.14 sec)

  1. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/collections/UnpackingVisitor.java

        }
    
        public void add(@Nullable Object element) {
            if (element instanceof FileCollectionInternal) {
                // FileCollection is-a Iterable, Buildable and TaskDependencyContainer, so check before checking for these things
                visitor.accept((FileCollectionInternal) element);
                return;
            }
            if (element instanceof DirectoryTree) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 07:32:50 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  2. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/AbstractPluginValidationIntegrationSpec.groovy

                    contextualLabel == 'Type \'MyTask\' property \'badTime\' is missing an input or output annotation'
                    details == 'A property without annotation isn\'t considered during up-to-date checking'
                    solutions == [
                        'Add an input or output annotation',
                        'Mark it as @Internal',
                    ]
                    additionalData.asMap == [
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 40.7K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/alias.go

    	assert(rhs != nil)
    	a := new(Alias)
    	a.obj = obj
    	a.orig = a
    	a.fromRHS = rhs
    	if obj.typ == nil {
    		obj.typ = a
    	}
    
    	// Ensure that a.actual is set at the end of type checking.
    	if check != nil {
    		check.needsCleanup(a)
    	}
    
    	return a
    }
    
    // newAliasInstance creates a new alias instance for the given origin and type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 5K bytes
    - Viewed (0)
  4. src/encoding/gob/type.go

    	checkId(16, tWireType)
    	checkId(17, mustGetTypeInfo(reflect.TypeFor[arrayType]()).id)
    	checkId(18, mustGetTypeInfo(reflect.TypeFor[CommonType]()).id)
    	checkId(19, mustGetTypeInfo(reflect.TypeFor[sliceType]()).id)
    	checkId(20, mustGetTypeInfo(reflect.TypeFor[structType]()).id)
    	checkId(21, mustGetTypeInfo(reflect.TypeFor[fieldType]()).id)
    	checkId(23, mustGetTypeInfo(reflect.TypeFor[mapType]()).id)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 02:00:26 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  5. src/go/types/typexpr.go

    	if isTypeParam(typ) {
    		return
    	}
    
    	// We don't want to call under() or complete interfaces while we are in
    	// the middle of type-checking parameter declarations that might belong
    	// to interface methods. Delay this check to the end of type-checking.
    	check.later(func() {
    		if t, _ := under(typ).(*Interface); t != nil {
    			tset := computeInterfaceTypeSet(check, e.Pos(), t) // TODO(gri) is this the correct position?
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/phases/certs/renewal/manager.go

    		if err != nil {
    			return false, errors.Wrapf(err, "Error checking external CA condition for %s certificate authority", caBaseName)
    		}
    		return externallyManaged, nil
    	case kubeadmconstants.FrontProxyCACertAndKeyBaseName:
    		externallyManaged, err := certsphase.UsingExternalFrontProxyCA(rm.cfg)
    		if err != nil {
    			return false, errors.Wrapf(err, "Error checking external CA condition for %s certificate authority", caBaseName)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 15K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/transforms/prepare_quantize_dynamic_range.cc

        if (!(quantizeOps(rewriter, op, quantizable_ops))) {
          return failure();
        }
    
        // 3. Apply post-processing required for each inference type.
        // TODO(b/212514817): refactor mode checking to improve code quality
        if (quant_specs_.inference_type == tensorflow::DT_QINT8 &&
            (setAsymmetricQuantizeInputAttr(rewriter, quantizable_ops))) {
          return failure();
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/properties/annotations/MissingPropertyAnnotationHandler.java

                .documentedAt(userManual("validation_problems", TextUtil.toLowerCaseLocaleSafe(missingAnnotation)))
                .severity(ERROR)
                .details("A property without annotation isn't considered during up-to-date checking")
                .solution("Add " + displayName)
                .solution("Mark it as @Internal");
        });
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:36 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  9. src/go/types/alias.go

    	assert(rhs != nil)
    	a := new(Alias)
    	a.obj = obj
    	a.orig = a
    	a.fromRHS = rhs
    	if obj.typ == nil {
    		obj.typ = a
    	}
    
    	// Ensure that a.actual is set at the end of type checking.
    	if check != nil {
    		check.needsCleanup(a)
    	}
    
    	return a
    }
    
    // newAliasInstance creates a new alias instance for the given origin and type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/feature/feature_support_checker_test.go

    			rounds: []testCase{
    				{endpointsVersion: []mockEndpointVersion{
    					{Version: "3.6.0", Endpoint: "localhost:2390", Error: fmt.Errorf("some error")}},
    					expectedResult: false,
    					expectedError:  fmt.Errorf("failed checking etcd version, endpoint: %q: %w", "localhost:2390", fmt.Errorf("some error")),
    				},
    				{endpointsVersion: []mockEndpointVersion{
    					{Version: "3.5.14", Endpoint: "localhost:2391"}},
    					expectedResult: true}},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 11:56:42 UTC 2024
    - 8.3K bytes
    - Viewed (0)
Back to top