Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 73 for honoured (0.21 sec)

  1. platforms/documentation/docs/src/docs/userguide/core-plugins/idea_plugin.adoc

    Here are the configuration properties you can use:
    
    [[idea-configuration]]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/certificates/v1/types.go

    	// Populated by the API server on creation and immutable.
    	// +optional
    	Extra map[string]ExtraValue `json:"extra,omitempty" protobuf:"bytes,6,rep,name=extra"`
    }
    
    // Built in signerName values that are honored by kube-controller-manager.
    const (
    	// "kubernetes.io/kube-apiserver-client" signer issues client certificates that can be used to authenticate to kube-apiserver.
    	// Never auto-approved by kube-controller-manager.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  3. src/os/signal/doc.go

    If the Go program is started with either SIGHUP or SIGINT ignored
    (signal handler set to SIG_IGN), they will remain ignored.
    
    If the Go program is started with a non-empty signal mask, that will
    generally be honored. However, some signals are explicitly unblocked:
    the synchronous signals, SIGILL, SIGTRAP, SIGSTKFLT, SIGCHLD, SIGPROF,
    and, on Linux, signals 32 (SIGCANCEL) and 33 (SIGSETXID)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:11:00 UTC 2024
    - 11K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_5.adoc

    `WorkerExecutor.submit()` will be removed in Gradle 8.0.
    
    === Potential breaking changes
    
    ==== Task dependencies are honored for task `@Input` properties whose value is a `Property`
    
    Previously, task dependencies would be ignored for task `@Input` properties of type `Property<T>`.
    These are now honored, so that it is possible to attach a task output property to a task `@Input` property.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 47.5K bytes
    - Viewed (0)
  5. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerExecutorParallelIntegrationTest.groovy

            and:
            output.contains("A failure occurred while executing ${failingWorkAction.name}")
    
            where:
            isolationMode << ISOLATION_MODES
        }
    
        def "max workers is honored by parallel work"() {
            def maxWorkers = 3
    
            given:
            buildFile << """
                task parallelWorkTask(type: MultipleWorkItemTask) {
                    doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 31.7K bytes
    - Viewed (0)
  6. cmd/api-router.go

    				// usecase where we need to make sure that
    				// minio.<namespace>.svc.<cluster_domain> is ignored
    				// by the bucketDNS style to ensure that path style
    				// is available and honored at this domain.
    				//
    				// All other `<bucket>.<namespace>.svc.<cluster_domain>`
    				// makes sure that buckets are routed through this matcher
    				// to match for `<bucket>`
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  7. pkg/registry/core/pod/storage/eviction.go

    		deleteOptions := originalDeleteOptions
    
    		// We should check if resourceVersion is already set by the requestor
    		// as it might be older than the pod we just fetched and should be
    		// honored.
    		if shouldEnforceResourceVersion(pod) && resourceVersionIsUnset(originalDeleteOptions) {
    			// Set deleteOptions.Preconditions.ResourceVersion to ensure we're not
    			// racing with another PDB-impacting process elsewhere.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 08 11:58:48 UTC 2023
    - 18.2K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheJavaIntegrationTest.groovy

            result.assertTasksNotSkipped(":compileJava", ":classes", ":jar", ":startScripts", ":distTar", ":distZip", ":assemble", ":build")
            classFile.isFile()
            jarFile.isFile()
        }
    
        def "jar manifest honours build logic inputs"() {
            given:
            buildFile << """
                plugins {
                    id 'java'
                }
    
                jar {
                    manifest {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/Task.java

     *
     * <p>A task may have dependencies on other tasks or might be scheduled to always run after another task.
     * Gradle ensures that all task dependencies and ordering rules are honored when executing tasks, so that the task is executed after
     * all of its dependencies and any "must run after" tasks have been executed.</p>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 17:25:12 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/options/server_run_options.go

    	fs.IntVar(&s.MinRequestTimeout, "min-request-timeout", s.MinRequestTimeout, ""+
    		"An optional field indicating the minimum number of seconds a handler must keep "+
    		"a request open before timing it out. Currently only honored by the watch request "+
    		"handler, which picks a randomized value above this number as the connection timeout, "+
    		"to spread out load.")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 24 21:53:51 UTC 2023
    - 15.4K bytes
    - Viewed (0)
Back to top