Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 410 for rebind (0.29 sec)

  1. platforms/documentation/docs/src/docs/userguide/running-builds/additional/continuous_builds.adoc

    ----
    
    Gradle will behave as if you ran `gradle test` after a change to sources or tests that contribute to the requested tasks.
    This means unrelated changes (such as changes to build scripts) will not trigger a rebuild.
    To incorporate build logic changes, the continuous build must be restarted manually.
    
    Continuous build uses <<file_system_watching.adoc#sec:daemon_watch_fs,file system watching>> to detect changes to the inputs.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  2. pkg/workloadapi/workload.proto

    // Aliases are keyed by network/IP address. Example: "default/1.2.3.4".
    //
    // In some cases, we do not know the IP address of a Workload. For instance, we may simply know
    // that there is a workload behind a gateway, and rely on the gateway to handle the rest.
    // In this case, the key format will be "resource-uid". The resource can be a Pod, WorkloadEntry, etc.
    // These resources cannot be looked up on-demand.
    //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/cluster.go

    			}
    		}
    	}
    
    	// Remove all matched service subsets. When we rebuild clusters, we will rebuild the subset clusters as well.
    	// We can reconcile the actual subsets that are needed when we rebuild the clusters.
    	for _, matchedSvc := range services {
    		if subsetClusters[matchedSvc.Hostname.String()] != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/ldap/LdapManager.java

                    if (logger.isDebugEnabled()) {
                        logger.debug("Logged in as Bind DN. {}", context);
                    }
                    isBind = true;
                } catch (final Exception e) {
                    logger.warn("LDAP configuration is wrong.", e);
                }
            }
            return isBind;
        }
    
        public OptionalEntity<FessUser> login(final String username, final String password) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  5. maven-compat/src/main/java/org/apache/maven/repository/metadata/ArtifactMetadata.java

        /**
         * explanation: why this MD was chosen over its siblings
         * in the resulting structure (classpath for now)
         */
        protected String why;
    
        /** dependencies of the artifact behind this metadata */
        protected Collection<ArtifactMetadata> dependencies;
    
        /** metadata URI */
        protected String uri;
    
        /** is metadata found anywhere */
        protected boolean resolved = false;
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  6. istioctl/pkg/writer/compare/sds/util.go

    func NewSecretItemBuilder() SecretItemBuilder {
    	return &secretItemBuilder{}
    }
    
    // SecretItemBuilder wraps the process of setting fields for the SecretItem
    // and builds the Metadata fields from the cert contents behind the scenes
    type SecretItemBuilder interface {
    	Name(string) SecretItemBuilder
    	Data(string) SecretItemBuilder
    	Source(string) SecretItemBuilder
    	Destination(string) SecretItemBuilder
    	State(string) SecretItemBuilder
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 06 15:14:48 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  7. pkg/volume/util/fsquota/quota_linux.go

    func GetConsumption(path string) (*resource.Quantity, error) {
    	// Note that we actually need to hold the lock at least through
    	// running the quota command, so it can't get recycled behind our back
    	quotaLock.Lock()
    	defer quotaLock.Unlock()
    	applier := getApplier(path)
    	// No applier means directory is not under quota management
    	if applier == nil {
    		return nil, nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 07 08:07:51 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/AbstractClassChangeIncrementalCompilationIntegrationTest.groovy

            run language.compileTaskName
    
            then:
            outputs.recompiledClasses("C", "OnClass", "OnMethod", "OnParameter", "OnField")
        }
    
        def "changed class with private constant does not incur full rebuild"() {
            source "class A {}", "class B { private final static int x = 1;}"
            outputs.snapshot { run language.compileTaskName }
    
            when:
            source "class B { /* change */ }"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl-tooling-builders/src/main/kotlin/org/gradle/kotlin/dsl/tooling/builders/KotlinDslScriptsModelBuilder.kt

            ?.asSequence()
            ?.filter { it.isNotBlank() }
            ?.map(::canonicalFile)
            ?.filter { it.isFile }
            ?.toList()
    
    
    // TODO:kotlin-dsl naive implementation for now, refine
    private
    fun Project.collectKotlinDslScripts(): List<File> = buildList {
    
        addAll(discoverInitScripts())
        addNotNull(discoverSettingScript())
    
        allprojects.forEach { p ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 19 18:13:21 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/dropped_requests_tracker.go

    //   - if there were less than `retryAfter` dropped requests, it decreases
    //     retryAfter
    //   - if there were at least 3*`retryAfter` dropped requests, it increases
    //     retryAfter
    //
    // The rationale behind these numbers being fairly low is that APF is queuing
    // requests and rejecting (dropping) them is a last resort, which is not expected
    // unless a given priority level is actually overloaded.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 26 13:50:25 UTC 2023
    - 6.5K bytes
    - Viewed (0)
Back to top