Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 399 for Child (0.04 sec)

  1. tensorflow/cc/framework/scope.h

    /// resources that are shared by all the child scopes that inherit from this
    /// scope, directly or transitively. For instance, a new scope creates a new
    /// Graph object to which operations are added when the new scope or its
    /// children are used by an Op constructor. The new scope also has a Status
    /// object which will be used to indicate errors by Op-constructor functions
    /// called on any child scope. The Op-constructor functions have to check the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 09:08:33 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb/SmbClient.java

                            sid.getRid(), jcifs.smb.SID.SID_FLAG_RESOLVE_SIDS);
                    for (final SID child : children) {
                        if (!sidSet.contains(child)) {
                            processAllowedSIDs(file, child, sidSet);
                        }
                    }
                } catch (final Exception e) {
                    if (logger.isDebugEnabled()) {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu May 23 01:54:10 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/deadcode.go

    				// If a type is converted to an interface, it is possible to obtain an
    				// interface with a "child" type of it using reflection (e.g. obtain an
    				// interface of T from []chan T). We need to traverse its "child" types
    				// with UsedInIface attribute set.
    				// When visiting the child type (chan T in the example above), it will
    				// have UsedInIface set, so it in turn will mark and (re)visit its children
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 14:52:41 UTC 2024
    - 19K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenRemoteDependencyWithGradleMetadataResolutionIntegrationTest.groovy

                .withModuleMetadata()
            a.getArtifact("file1.jar").file << "file 1"
            a.getArtifact("file2.jar").file << "file 2"
            a.getArtifact("../sibling/file3.jar").file << "file 3"
            a.getArtifact("child/file4.jar").file << "file 4"
            a.getArtifact("../../../a-1.2-5.jar").file << "file 5"
            a.publish()
            a.moduleMetadata.file.text = """
    {
        "formatVersion": "${FORMAT_VERSION}",
        "variants": [
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 23.4K bytes
    - Viewed (0)
  5. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/internal/tooling/EclipseModelBuilder.java

            }
        }
    
        private DefaultEclipseProject buildHierarchy(Project project) {
            List<DefaultEclipseProject> children = new ArrayList<>();
            for (Project child : getChildProjectsForInternalUse(project)) {
                children.add(buildHierarchy(child));
            }
    
            EclipseModel eclipseModel = project.getExtensions().getByType(EclipseModel.class);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/external/model/IvyDependencyDescriptorTest.groovy

        }
    
        def "applies rules when traversing a child of specified configuration"() {
            def exclude = new DefaultExclude(DefaultModuleIdentifier.newId("group", "*"), ["from"] as String[], PatternMatchers.EXACT)
            def dep = createWithExcludes(requested, [exclude])
            def configuration = configuration("child", "from")
            def moduleExclusions = new ModuleExclusions()
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 23K bytes
    - Viewed (0)
  7. fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/impl/LogHelperImpl.java

            final UrlQueue<?> urlQueue = (UrlQueue<?>) objs[1];
            final String url = (String) objs[2];
            final Throwable e = (Throwable) objs[3];
            if (logger.isDebugEnabled()) {
                logger.debug("Child URL: {} from {}", url, urlQueue.getUrl(), e);
            }
        }
    
        protected void processProcessChildUrlsByException(final Object... objs) {
            // CrawlerContext crawlerContext = (CrawlerContext) objs[0];
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 10.3K bytes
    - Viewed (1)
  8. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb1/SmbClient.java

                            SID.SID_FLAG_RESOLVE_SIDS);
                    for (final SID child : children) {
                        if (!sidSet.contains(child)) {
                            processAllowedSIDs(file, child, sidSet);
                        }
                    }
                } catch (final Exception e) {
                    if (logger.isDebugEnabled()) {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  9. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/VfsRelativePath.java

        }
    
        private VfsRelativePath(String absolutePath, int offset) {
            this.absolutePath = absolutePath;
            this.offset = offset;
        }
    
        /**
         * Returns a new relative path starting from the child.
         *
         * E.g.
         *   (some/path, some) -&gt; path
         *   (some/path/other, some) -&gt; path/other
         *   (C:, '') -&gt; C:
         */
        public VfsRelativePath pathFromChild(String relativeChildPath) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  10. pkg/kubelet/apis/config/helpers_test.go

    	// if the current field path is in the list of paths we should not recurse into,
    	// return here rather than descending and accumulating child field paths
    	if pathStr := path.String(); len(pathStr) > 0 && skipRecurseList.Has(pathStr) {
    		return sets.New[string](pathStr)
    	}
    
    	paths := sets.New[string]()
    	switch tp.Kind() {
    	case reflect.Pointer:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 10.2K bytes
    - Viewed (0)
Back to top