Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 248 for getRand (0.15 sec)

  1. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/Library.java

            setSourcePath(fileReferenceFactory.fromPath((String) node.attribute("sourcepath")));
        }
    
        public Library(FileReference library) {
            super(library);
        }
    
        @Override
        public String getKind() {
            return "lib";
        }
    
        @Override
        public String toString() {
            return "Library" + super.toString();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. platforms/jvm/java-compiler-plugin/src/main/java/org/gradle/internal/compiler/java/listeners/constants/ConstantsCollector.java

            return mapping;
        }
    
        @Override
        public void started(TaskEvent e) {
    
        }
    
        @Override
        public void finished(TaskEvent e) {
            if (e.getKind() == Kind.ANALYZE) {
                Trees trees = Trees.instance(task);
                ConstantsTreeVisitor visitor = new ConstantsTreeVisitor(task.getElements(), trees, constantDependentsConsumer);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:06:26 UTC 2023
    - 2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/matching/matching.go

    		isMatch       bool
    		matchResource schema.GroupVersionResource
    		matchKind     schema.GroupVersionKind
    		matchErr      error
    	)
    	if len(matchResources.ResourceRules) == 0 {
    		isMatch = true
    		matchKind = attr.GetKind()
    		matchResource = attr.GetResource()
    	} else {
    		isMatch, matchResource, matchKind, matchErr = matchesResourceRules(matchResources.ResourceRules, matchPolicy, attr, o)
    	}
    	if matchErr != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_tensor_helper.cc

      // Output type is unranked if input type is not ranked.
      auto ranked_ty = mlir::dyn_cast<RankedTensorType>(input_ty);
      if (!ranked_ty) return UnrankedTensorType::get(element_ty);
      int64_t rank = ranked_ty.getRank();
    
      DenseIntElementsAttr indices;
      if (!matchPattern(reduction_indices, m_Constant(&indices))) {
        // Output type is unranked if reduction indices are not constant and reduced
        // dimensions are not kept.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/plugin/namespace/lifecycle/admission.go

    	if a.GetOperation() == admission.Delete && a.GetKind().GroupKind() == v1.SchemeGroupVersion.WithKind("Namespace").GroupKind() && l.immortalNamespaces.Has(a.GetName()) {
    		return errors.NewForbidden(a.GetResource().GroupResource(), a.GetName(), fmt.Errorf("this namespace may not be deleted"))
    	}
    
    	// always allow non-namespaced resources
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 15 09:52:18 UTC 2021
    - 8.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/stablehlo/transforms/unfuse_batch_norm_pass.cc

        // Compute mean
        int64_t input_last_dim = input_type.getRank() - 1;
        auto dims_type = RankedTensorType::get(/*shape=*/{input_last_dim},
                                               rewriter.getIntegerType(32));
        ::mlir::SmallVector<int32_t> reduce_dim_axes;
        for (int i = 0; i < input_type.getRank(); ++i) {
          if (i != feature_index) {
            reduce_dim_axes.push_back(i);
          }
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  7. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/AbstractClasspathEntry.java

            attributes.forEach((key, value) -> {
                if (value != null && !String.valueOf(value).isEmpty()) {
                    allAttributes.put(key, value);
                }
            });
            allAttributes.put("kind", getKind());
            allAttributes.put("path", path);
    
    
            if (exported && !(this instanceof SourceFolder)) {
                allAttributes.put("exported", true);
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/unstructured/unstructured_list.go

    	return getNestedString(u.Object, "apiVersion")
    }
    
    func (u *UnstructuredList) SetAPIVersion(version string) {
    	u.setNestedField(version, "apiVersion")
    }
    
    func (u *UnstructuredList) GetKind() string {
    	return getNestedString(u.Object, "kind")
    }
    
    func (u *UnstructuredList) SetKind(kind string) {
    	u.setNestedField(kind, "kind")
    }
    
    func (u *UnstructuredList) GetResourceVersion() string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 28 04:46:35 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  9. pkg/config/validation/virtualservice.go

    	// check http route match requests
    	errs = AppendValidation(errs, validateHTTPRouteMatchRequest(http))
    
    	// header manipulation
    	for name, val := range http.Headers.GetRequest().GetAdd() {
    		errs = AppendValidation(errs, ValidateHTTPHeaderWithAuthorityOperationName(name))
    		errs = AppendValidation(errs, ValidateHTTPHeaderValue(val))
    	}
    	for name, val := range http.Headers.GetRequest().GetSet() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:27 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  10. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/features/withstaticreference/WithExtensionReferencesReader.java

        }
    
        private static boolean shouldPostProcess(CallInterceptionRequest request) {
            CallableKindInfo kind = request.getInterceptedCallable().getKind();
            return kind == CallableKindInfo.INSTANCE_METHOD || kind == CallableKindInfo.GROOVY_PROPERTY_GETTER || kind == CallableKindInfo.GROOVY_PROPERTY_SETTER;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 02 15:44:14 UTC 2023
    - 3.4K bytes
    - Viewed (0)
Back to top