Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for buildRestore (0.17 sec)

  1. tools/istio-iptables/pkg/builder/iptables_builder_impl.go

    	}
    	return rb.constructIptablesRestoreContents(tableRulesMap)
    }
    
    func (rb *IptablesRuleBuilder) BuildV4Restore() string {
    	return rb.buildRestore(rb.rules.rulesv4)
    }
    
    func (rb *IptablesRuleBuilder) BuildV6Restore() string {
    	return rb.buildRestore(rb.rules.rulesv6)
    }
    
    // AppendVersionedRule is a wrapper around AppendRule that substitutes an ipv4/ipv6 specific value
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 14:29:54 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/CachedBuildState.kt

        buildFile: File
    ) : CachedProjectState(path, projectDir, buildFile)
    
    
    data class BuildToStore(
        val build: VintageGradleBuild,
        // Does this build have work scheduled?
        val hasWork: Boolean,
        // Does this build have a child build with work scheduled?
        val hasChildren: Boolean
    ) {
        fun hasChildren() = BuildToStore(build, hasWork, true)
    }
    
    
    /**
     * State cached for a build in the tree.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/suggest/request/popularwords/PopularWordsRequest.java

            final SearchRequestBuilder builder = client.prepareSearch(index);
            builder.setSize(size);
            builder.setQuery(buildQuery());
            builder.setRescorer(buildRescore(), windowSize);
    
            builder.execute(new ActionListener<SearchResponse>() {
                @Override
                public void onResponse(final SearchResponse searchResponse) {
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 7K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheState.kt

            val requiredBuildServicesPerBuild = buildEventListeners.groupBy { it.buildIdentifier }
            val builds = mutableMapOf<BuildState, BuildToStore>()
            host.visitBuilds { build ->
                val state = build.state
                builds[state] = BuildToStore(build, build.hasScheduledWork, build.isRootBuild)
                if (build.hasScheduledWork && state is StandAloneNestedBuild) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 34.8K bytes
    - Viewed (0)
Back to top