Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 2,270 for WAY (0.1 sec)

  1. pkg/controlplane/reconcilers/doc.go

    limitations under the License.
    */
    
    // Package reconcilers provides objects for managing the list of active masters.
    // NOTE: The Lease reconciler is not the intended way for any apiserver other
    // than kube-apiserver to accomplish the task of Endpoint registration. This is
    // a special case for the time being.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 02 17:48:26 UTC 2020
    - 868 bytes
    - Viewed (0)
  2. docs/en/docs/deployment/https.md

    # About HTTPS
    
    It is easy to assume that HTTPS is something that is just "enabled" or not.
    
    But it is way more complex than that.
    
    !!! tip
        If you are in a hurry or don't care, continue with the next sections for step by step instructions to set everything up with different techniques.
    
    To **learn the basics of HTTPS**, from a consumer perspective, check <a href="https://howhttps.works/" class="external-link" target="_blank">https://howhttps.works/</a>.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jan 11 16:31:18 UTC 2024
    - 12K bytes
    - Viewed (0)
  3. src/cmd/go/internal/toolchain/umask_unix.go

    // sysWriteBits determines which bits to OR into the mode to make a directory writable.
    // It must be called when there are no other file system operations happening.
    func sysWriteBits() fs.FileMode {
    	// Read current umask. There's no way to read it without also setting it,
    	// so set it conservatively and then restore the original one.
    	m := syscall.Umask(0o777)
    	syscall.Umask(m)    // restore bits
    	if m&0o22 == 0o22 { // group and world are unwritable by default
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 20 15:44:08 UTC 2023
    - 896 bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/internal/aether/MavenExecutionRequestExtender.java

     * under the License.
     */
    package org.apache.maven.internal.aether;
    
    import org.apache.maven.execution.MavenExecutionRequest;
    
    /**
     * Strictly internal component able to "extend" {@link MavenExecutionRequest} in some way before it is used to
     * construct resolver session.
     *
     * @since 4.0.0
     */
    interface MavenExecutionRequestExtender {
        void extend(MavenExecutionRequest mavenExecutionRequest);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Jan 19 11:00:28 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  5. src/runtime/testdata/testwinlibsignal/main.c

            return 1;
        }
    
        // The library must be loaded after the SetConsoleCtrlHandler call
        // so that the library handler registers after the main program.
        // This way the library handler gets called first.
        HMODULE dummyDll = LoadLibrary("dummy.dll");
        if (!dummyDll) {
            fprintf(stderr, "ERROR: Could not load dummy.dll\n");
            return 1;
        }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 21 13:21:00 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  6. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/hub/protocol/StreamFailureMessage.java

            this.failure = failure;
        }
    
        @Override
        public Delivery getDelivery() {
            // TODO: This should actually be a Routable message with a single handler,
            // but we need some way to correlate a given request with a specific response channel
            return Delivery.AllHandlers;
        }
    
        public Throwable getFailure() {
            return failure;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/report_clustering_info_pass.h

    #include "tensorflow/core/common_runtime/optimization_registry.h"
    
    namespace tensorflow {
    
    // This is not really an optimization pass.  It does not change the graph in any
    // way; instead it computes a summary of the XLA clusters in the graph and
    // broadcasts it via xla_activity_listener.
    class ReportClusteringInfoPass : public GraphOptimizationPass {
     public:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 15 00:14:19 UTC 2019
    - 1.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/conversion/doc.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package conversion provides go object versioning.
    //
    // Specifically, conversion provides a way for you to define multiple versions
    // of the same object. You may write functions which implement conversion logic,
    // but for the fields which did not change, copying is automated. This makes it
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 11 14:09:48 UTC 2017
    - 1.1K bytes
    - Viewed (0)
  9. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/EclipseClasspath.java

     *   }
     * }
     * </pre>
     *
     * For tackling edge cases, users can perform advanced configuration on the resulting XML file.
     * It is also possible to affect the way that the Eclipse plugin merges the existing configuration
     * via beforeMerged and whenMerged closures.
     * <p>
     * The beforeMerged and whenMerged closures receive a {@link Classpath} object.
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  10. platforms/software/platform-base/src/main/java/org/gradle/platform/base/InvalidModelException.java

     * limitations under the License.
     */
    
    package org.gradle.platform.base;
    
    import org.gradle.api.GradleException;
    import org.gradle.api.Incubating;
    
    /**
     * Thrown when a component model is declared in an invalid way.
     */
    @Incubating
    public class InvalidModelException extends GradleException {
        public InvalidModelException(String message) {
            super(message);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1K bytes
    - Viewed (0)
Back to top