Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Categories (0.13 sec)

  1. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/parameters/BuildProgressListenerAdapter.java

            List<String> categories = new ArrayList<>();
            categories.add(category.getCategory());
            categories.addAll(category.getSubcategories());
    
            return new DefaultProblemId(categories.remove(categories.size() - 1), label.getLabel(), toProblemGroup(categories));
        }
    
        private static @Nullable ProblemGroup toProblemGroup(List<String> groupNames) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 67.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    	}
    
    	for i, category := range names.Categories {
    		if errs := utilvalidation.IsDNS1035Label(category); len(errs) > 0 {
    			allErrs = append(allErrs, field.Invalid(fldPath.Child("categories").Index(i), category, strings.Join(errs, ",")))
    		}
    	}
    
    	return allErrs
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

      // If there are no resource region captures, then nothing to do.
      if (!hoister.NeedsLifting()) return success();
    
      // The resources captured for While loop fall into two categories:
      // (a) read-only. These reads can be replaced by a hoisted read created
      //        before the WhileOp (similar to if and case).
      // (b) written: since the value is written in the loop (which can only in
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  4. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    	case stateFullDisruption:
    		nc.zoneNoExecuteTainter[zone].SwapLimiter(
    			nc.enterFullDisruptionFunc(zoneSize))
    	}
    }
    
    // classifyNodes classifies the allNodes to three categories:
    //  1. added: the nodes that in 'allNodes', but not in 'knownNodeSet'
    //  2. deleted: the nodes that in 'knownNodeSet', but not in 'allNodes'
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
Back to top