Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for HasParent (0.14 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_executor_ops.td

        FetchOp GetFetch();
      }];
    
      let hasCanonicalizer = 1;
    }
    
    def TfExecutor_FetchOp : TfExecutor_Op<"fetch",
        [Terminator, ControlOperandsAfterAllData, HasParent<"GraphOp">]> {
      let summary = [{
        The `tf_executor.fetch` operation terminates the graph and returns values;
      }];
    
      let description = [{
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 23 19:35:12 UTC 2023
    - 22K bytes
    - Viewed (0)
  2. 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)
  3. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/generator/FileContentGenerator.groovy

                    it == abiProjectNumber ? projectDependencyDeclaration(hasParent ? api : implementation, abiProjectNumber) : projectDependencyDeclaration(implementation, it)
                }.join("\n            ")
            }
            def block = """
                        ${config.externalApiDependencies.keySet().collect { versionCatalogDependencyDeclaration(hasParent ? api : implementation, it) }.join("\n            ")}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/cli-runtime/pkg/genericclioptions/command_headers.go

    	c.Headers[kubectlSessionHeader] = uid
    	// Iterate up the hierarchy of commands from the leaf command to create
    	// the full command string. Example: kubectl create secret generic
    	cmdStrs := []string{}
    	for cmd.HasParent() {
    		parent := cmd.Parent()
    		currName := strings.TrimSpace(cmd.Name())
    		cmdStrs = append([]string{currName}, cmdStrs...)
    		cmd = parent
    	}
    	currName := strings.TrimSpace(cmd.Name())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. android/guava/src/com/google/common/net/InternetDomainName.java

       * www.google.com} is {@code google.com}.
       *
       * @throws IllegalStateException if the domain has no parent, as determined by {@link #hasParent}
       */
      public InternetDomainName parent() {
        checkState(hasParent(), "Domain '%s' has no parent", name);
        return ancestor(1);
      }
    
      /**
       * Returns the ancestor of the current domain at the given number of levels "higher" (rightward)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 05 20:47:23 UTC 2024
    - 28K bytes
    - Viewed (0)
  8. guava/src/com/google/common/net/InternetDomainName.java

       * www.google.com} is {@code google.com}.
       *
       * @throws IllegalStateException if the domain has no parent, as determined by {@link #hasParent}
       */
      public InternetDomainName parent() {
        checkState(hasParent(), "Domain '%s' has no parent", name);
        return ancestor(1);
      }
    
      /**
       * Returns the ancestor of the current domain at the given number of levels "higher" (rightward)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 05 20:47:23 UTC 2024
    - 28K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/GradlePomModuleDescriptorParser.java

            pomReader.resolveGAV();
    
            String groupId = pomReader.getGroupId();
            String artifactId = pomReader.getArtifactId();
            String version = pomReader.getVersion();
    
            if (pomReader.hasParent()) {
                //Is there any other parent properties?
    
                String parentGroupId = pomReader.getParentGroupId();
                String parentArtifactId = pomReader.getParentArtifactId();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  10. 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)
Back to top