Search Options

Results per page
Sort
Preferred Languages
Advance

Results 201 - 210 of 1,492 for excluded (0.93 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/tfg-to-tfe.cc

                getContext(), ftype.getResults(), graph_func.getAllResultAttrs(),
                res_types, res_attrs)))
          return failure();
    
        // Update the function type which has excluded the control args.
        func->setAttr("function_type", TypeAttr::get(rewriter.getFunctionType(
                                           arg_types, res_types)));
    
        // Update arg/result attributes.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/batch/v1/generated.proto

    // represented by the .status.containerStatuses and .status.initContainerStatuses
    // fields in the Pod status, respectively. Containers completed with success
    // (exit code 0) are excluded from the requirement check.
    message PodFailurePolicyOnExitCodesRequirement {
      // Restricts the check for exit codes to the container with the
      // specified name. When null, the rule applies to all containers.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/reflect/Invokable.java

       * of a non-static inner class, unlike {@link Constructor#getParameterTypes}, the hidden {@code
       * this} parameter of the enclosing class is excluded from the returned parameters.
       */
      @IgnoreJRERequirement
      public final ImmutableList<Parameter> getParameters() {
        Type[] parameterTypes = getGenericParameterTypes();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Dec 14 20:35:03 UTC 2023
    - 18.6K bytes
    - Viewed (0)
  4. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/IdeaPlugin.java

                if (thisProjectId.getBuild().equals(otherBuildId)) {
                    // IDEA Module for project in current build: don't include any module that has been excluded from project
                    boolean found = false;
                    for (IdeaModule ideaModule : ideaProject.getModules()) {
                        if (reference.get().getFile().equals(ideaModule.getOutputFile())) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 12 14:00:13 UTC 2023
    - 25.2K bytes
    - Viewed (0)
  5. src/embed/embed.go

    // string literals.
    //
    // If a pattern names a directory, all files in the subtree rooted at that directory are
    // embedded (recursively), except that files with names beginning with ‘.’ or ‘_’
    // are excluded. So the variable in the above example is almost equivalent to:
    //
    //	// content is our static web server content.
    //	//go:embed image template html/index.html
    //	var content embed.FS
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 19:42:51 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  6. pkg/apis/batch/types.go

    // represented by the .status.containerStatuses and .status.initContainerStatuses
    // fields in the Pod status, respectively. Containers completed with success
    // (exit code 0) are excluded from the requirement check.
    type PodFailurePolicyOnExitCodesRequirement struct {
    	// Restricts the check for exit codes to the container with the
    	// specified name. When null, the rule applies to all containers.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/declaring_repositories.adoc

    ====
    
    By default, repositories include everything and exclude nothing:
    
    * If you declare an include, then it excludes everything _but_ what is included.
    * If you declare an exclude, then it includes everything _but_ what is excluded.
    * If you declare both includes and excludes, then it includes only what is explicitly included and not excluded.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 43.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/batch/v1/types.go

    // represented by the .status.containerStatuses and .status.initContainerStatuses
    // fields in the Pod status, respectively. Containers completed with success
    // (exit code 0) are excluded from the requirement check.
    type PodFailurePolicyOnExitCodesRequirement struct {
    	// Restricts the check for exit codes to the container with the
    	// specified name. When null, the rule applies to all containers.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/DependencyResolveRulesIntegrationTest.groovy

            /*
            dependencies:
    
            impl:1.3->api:1.3
            foo->api:1.5
            bar->impl:1.3(*)->api:1.3(*)
    
            * - should be excluded as it was already visited
            */
    
            buildFile << """
                $common
    
                dependencies {
                    conf 'org.utils:impl:1.3', 'org.stuff:foo:2.0', 'org.stuff:bar:2.0'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 28.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/admissionregistration/v1beta1/generated.proto

      optional string expression = 2;
    }
    
    // MatchResources decides whether to run the admission control policy on an object based
    // on whether it meets the match criteria.
    // The exclude rules take precedence over include rules (if a resource matches both, it is excluded)
    // +structType=atomic
    message MatchResources {
      // NamespaceSelector decides whether to run the admission control policy on an object based
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 50.4K bytes
    - Viewed (0)
Back to top