Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for HasParent (0.16 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/PomReaderTest.groovy

            then:
            pomReader.groupId == 'group-one'
            pomReader.artifactId == 'artifact-one'
            pomReader.version == 'version-one'
            pomReader.packaging == 'jar'
            !pomReader.hasParent()
            pomReader.properties.size() == 6
            pomReader.properties['parent.version'] == 'version-one'
            pomReader.properties['parent.groupId'] == 'group-one'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 15:53:23 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  2. pkg/controller/servicecidrs/servicecidrs_controller.go

    				return false
    			})
    			if serviceCIDRs.Len() == 1 && serviceCIDRs.Has(serviceCIDR.Name) {
    				hasParent = false
    			}
    		}
    	}
    
    	// All the existing IP addresses will be contained on the parent ServiceCIDRs,
    	// it is safe to delete, remove the finalizer.
    	if hasParent {
    		logger.V(2).Info("Removing finalizer for ServiceCIDR", "ServiceCIDR", serviceCIDR.String())
    		return true, nil
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 18K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfr/ir/tfr_ops.td

    //===----------------------------------------------------------------------===//
    // Function related classes
    //===----------------------------------------------------------------------===//
    
    def TFR_TFRFuncOp : TFR_Op<"func", [HasParent<"ModuleOp">,
                                        FunctionOpInterface,
                                        IsolatedFromAbove, Symbol]> {
      let summary = "TFR Function defines a composition of other ops";
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 10:54:29 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/PomReader.java

                return getDocBuilder(M2_ENTITY_RESOLVER).parse(dtdStream, systemId);
            } finally {
                Thread.currentThread().setContextClassLoader(original);
            }
        }
    
        public boolean hasParent() {
            return parentElement != null;
        }
    
        @Override
        public Map<String, String> getProperties() {
            return effectiveProperties;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 15:53:23 UTC 2024
    - 30K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

        /// and result type.
        static bool isBuildableWith(Attribute value, Type type);
      }];
    }
    
    def TFL_ControlNodeOp : Op<TFL_Dialect, "control_node",
        [HasParent<"mlir::func::FuncOp">, RecursiveMemoryEffects, SingleBlockImplicitTerminator<"YieldOp">]> {
      let summary = [{
        The `TFL.control_node` operation wraps single-block operations in order to attach control edges.
      }];
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
Back to top