Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for addRoots (0.21 sec)

  1. analysis/analysis-api-impl-base/src/org/jetbrains/kotlin/analysis/api/impl/base/util/LibraryUtils.kt

         *
         * By default, given [jar], the root, will be included. Pass [includeRoot = false] if not needed.
         *   Note that, thought, [JvmPackagePartProvider#addRoots] is checking if the root file is in the scope when loading Kotlin modules.
         *   Thus, if this util is used to populate files for the scope of the Kotlin module as a library, the root should be added too.
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Sep 06 07:36:11 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  2. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/project/structure/StandaloneProjectFactory.kt

        ): (GlobalSearchScope) -> JvmPackagePartProvider = { scope ->
            JvmPackagePartProvider(languageVersionSettings, scope).apply {
                addRoots(libraryRoots, MessageCollector.NONE)
            }
        }
    
        private val latestLanguageVersionSettings: LanguageVersionSettings =
            LanguageVersionSettingsImpl(LanguageVersion.LATEST_STABLE, ApiVersion.LATEST)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 22:09:27 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modload/load.go

    		// finite, so the iteration *must* reach a stable fixed-point.
    		tidy, err := tidyRoots(ctx, rs, ld.pkgs)
    		if err != nil {
    			return false, err
    		}
    		addRoots = tidy.rootModules
    	}
    
    	rs, err = updateRoots(ctx, direct, rs, ld.pkgs, addRoots, ld.AssumeRootsImported)
    	if err != nil {
    		// We don't actually know what even the root requirements are supposed to be,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/entity/QueryContext.java

                queryBuilder = builder;
            }
        }
    
        public void setQueryBuilder(final QueryBuilder queryBuilder) {
            this.queryBuilder = queryBuilder;
        }
    
        public void addSorts(final SortBuilder<?>... sortBuilders) {
            stream(sortBuilders).of(stream -> stream.forEach(sortBuilder -> sortBuilderList.add(sortBuilder)));
        }
    
        public boolean hasSorts() {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  5. src/crypto/tls/boring_test.go

    				shouldVerifyFIPS := false
    				addRoot := func(cond int, c *boringCertificate) {
    					if cond != 0 {
    						rootName += "," + c.name
    						pool.AddCert(c.cert)
    						if reachable[c.org] {
    							shouldVerify = true
    						}
    						if reachableFIPS[c.org] && c.fipsOK {
    							shouldVerifyFIPS = true
    						}
    					}
    				}
    				addRoot(r&1, R1)
    				addRoot(r&2, R2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:45:37 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/query/TermQueryCommand.java

                                "Invalid sort order: " + termQuery);
                    }
                } else {
                    sortOrder = SortOrder.ASC;
                }
                context.addSorts(createFieldSortBuilder(sortField, sortOrder));
            }));
            return null;
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/helper/QueryHelper.java

            buildRoleQuery(queryContext, searchRequestType);
            buildVirtualHostQuery(queryContext, searchRequestType);
    
            if (!queryContext.hasSorts() && defaultSortBuilders != null) {
                queryContext.addSorts(defaultSortBuilders);
            }
            return queryContext;
        }
    
        protected void buildVirtualHostQuery(final QueryContext queryContext, final SearchRequestType searchRequestType) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  8. pyproject.toml

    check_untyped_defs = true
    
    [[tool.mypy.overrides]]
    module = "docs_src.*"
    disallow_incomplete_defs = false
    disallow_untyped_defs = false
    disallow_untyped_calls = false
    
    [tool.pytest.ini_options]
    addopts = [
      "--strict-config",
      "--strict-markers",
      "--ignore=docs_src",
    ]
    xfail_strict = true
    junit_family = "xunit2"
    filterwarnings = [
        "error",
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  9. cmd/site-replication.go

    }
    
    // syncToAllPeers is used for syncing local data to all remote peers, it is
    // called once during initial "AddPeerClusters" request.
    func (c *SiteReplicationSys) syncToAllPeers(ctx context.Context, addOpts madmin.SRAddOptions) error {
    	objAPI := newObjectLayerFn()
    	if objAPI == nil {
    		return errSRObjectLayerNotReady
    	}
    
    	buckets, err := objAPI.ListBuckets(ctx, BucketOptions{})
    	if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
Back to top