Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 347 for Moon (0.04 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/validation/TypeValidationProblemRenderer.java

                    );
                    formatter.endChildren();
                }
            }
        }
    
        /**
         * This is an adhoc reformatting tool which should go away as soon as we have
         * a better way to display multiline deprecation warnings
         */
        public static String convertToSingleLine(String message) {
            return message.replaceAll("(\\r?\\n *)+", ". ")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/filters/priority-and-fairness.go

    		resultCh := make(chan interface{}, 1)
    
    		// Call Handle in a separate goroutine.
    		// The reason for it is that from APF point of view, the request processing
    		// finishes as soon as watch is initialized (which is generally orders of
    		// magnitude faster then the watch request itself). This means that Handle()
    		// call finishes much faster and for performance reasons we want to reduce
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:35 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/flow/FlowAction.java

    import org.gradle.process.ExecOperations;
    
    /**
     * A dataflow action.
     *
     * <p>
     * A parameterized and isolated piece of work that becomes eligible for execution within a
     * {@link FlowScope dataflow scope} as soon as all of its input {@link FlowParameters parameters}
     * become available.
     * </p>
     * <p>
     * Implementations can benefit from constructor injection of services
     * using the {@link javax.inject.Inject @Inject} annotation.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 16 20:51:35 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/attributes/CompatibilityRuleChain.java

     * the chain is empty and will eventually tell the values are incompatible if no rule expressed
     * an opinion.</p>
     *
     * <p>For a given set of rules, the execution is done <i>in order</i>, and interrupts as soon as a rule
     * expressed an option (through {@link CompatibilityCheckDetails#compatible()} or {@link CompatibilityCheckDetails#incompatible()}).
     * </p>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 22 14:14:42 UTC 2019
    - 3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/apf_context.go

    // server. No-op when priority and fairness is disabled.
    func RequestDelegated(ctx context.Context) {
    	// The watch initialization signal doesn't traverse request
    	// boundaries, so we generously fire it as soon as we know
    	// that the request won't be serviced locally. Safe to call
    	// for non-watch requests.
    	WatchInitialized(ctx)
    }
    
    // InitializationSignal is an interface that allows sending and handling
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 14 14:39:15 UTC 2021
    - 2.9K bytes
    - Viewed (0)
  6. docs/bucket/lifecycle/README.md

    This is available only on MinIO as an extension to the NewerNoncurrentVersions feature. The following rule makes it possible to remove older noncurrent versions
    of objects under the prefix `user-uploads/` as soon as there are more than `N` noncurrent versions of an object.
    
    ```
    {
        "Rules": [
            {
                "ID": "Keep only most recent 5 noncurrent versions",
                "Status": "Enabled",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Aug 26 07:33:25 UTC 2023
    - 9K bytes
    - Viewed (0)
  7. cluster/kubectl.sh

    set -o errexit
    set -o nounset
    set -o pipefail
    
    # Stop the bleeding, turn off the warning until we fix token gen.
    # echo "-=-=-=-=-=-=-=-=-=-="
    # echo "NOTE:"
    # echo "kubectl.sh is deprecated and will be removed soon."
    # echo "please replace all usage with calls to the kubectl"
    # echo "binary and ensure that it is in your PATH."
    # echo ""
    # echo "Please see 'kubectl help config' for more details"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 06 18:03:32 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/attributes/DisambiguationRuleChain.java

    /**
     * <p>A chain of disambiguation rules. By default the chain is empty and will not do any disambiguation.</p>
     *
     * <p>For a given set of rules, the execution is done <i>in order</i>, and interrupts as soon as a rule
     * selected at least one candidate (through {@link MultipleCandidatesDetails#closestMatch(Object)}).
     * </p>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 22 14:14:42 UTC 2019
    - 3.1K bytes
    - Viewed (0)
  9. cmd/license-update.go

    		}
    	}
    }
    
    func performLicenseUpdate(ctx context.Context, objectAPI ObjectLayer) {
    	// the subnet license renewal api renews the license only
    	// if required e.g. when it is expiring soon
    	url := globalSubnetConfig.BaseURL + licRenewPath
    
    	resp, err := globalSubnetConfig.Post(url, nil)
    	if err != nil {
    		subnetLogIf(ctx, fmt.Errorf("error from %s: %w", url, err))
    		return
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 12:04:40 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  10. src/sync/waitgroup_test.go

    	for i := 0; i != n; i++ {
    		go func() {
    			wg1.Done()
    			wg2.Wait()
    			exited <- true
    		}()
    	}
    	wg1.Wait()
    	for i := 0; i != n; i++ {
    		select {
    		case <-exited:
    			t.Fatal("WaitGroup released group too soon")
    		default:
    		}
    		wg2.Done()
    	}
    	for i := 0; i != n; i++ {
    		<-exited // Will block if barrier fails to unlock someone.
    	}
    }
    
    func TestWaitGroup(t *testing.T) {
    	wg1 := &WaitGroup{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 14 17:38:39 UTC 2021
    - 3K bytes
    - Viewed (0)
Back to top