Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 812 for hard (0.05 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/lifecycle_signals.go

    	- up to 60s: the default value of 'ShutdownTimeout' is 60s, this means that
          any request in flight has a hard timeout of 60s.
    	- server.Shutdown is called, the HTTP Server stops listening immediately
        - the HTTP Server waits gracefully for existing requests to complete
          up to '2s' (it's hard coded right now)
    */
    
    // lifecycleSignal encapsulates a named apiserver event
    type lifecycleSignal interface {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 15:49:30 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  2. src/syscall/tables_wasip1.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build wasip1
    
    package syscall
    
    import "runtime"
    
    // TODO: Auto-generate some day. (Hard-coded in binaries so not likely to change.)
    const (
    	E2BIG           Errno = 1
    	EACCES          Errno = 2
    	EADDRINUSE      Errno = 3
    	EADDRNOTAVAIL   Errno = 4
    	EAFNOSUPPORT    Errno = 5
    	EAGAIN          Errno = 6
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 06 20:58:35 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/annotations/VisibleForTesting.java

     * bad design, and it does not prevent anyone from using the declaration---and experience has shown
     * that they will. If the method breaks the encapsulation of its class, then its internal
     * representation will be hard to change. Instead, use <a
     * href="http://errorprone.info/bugpattern/RestrictedApi">RestrictedApiChecker</a>, which enforces
     * fine-grained visibility policies.
     *
     * @author Johannes Henkel
     */
    @GwtCompatible
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 30 22:25:16 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/ToolType.java

     * limitations under the License.
     */
    
    package org.gradle.nativeplatform.toolchain.internal;
    
    import org.gradle.util.internal.GUtil;
    
    // Should use stronger modelling for this and make the set of tools open, rather than hard-coding here
    public enum ToolType {
        CPP_COMPILER("C++ compiler"),
        C_COMPILER("C compiler"),
        OBJECTIVECPP_COMPILER("Objective-C++ compiler"),
        OBJECTIVEC_COMPILER("Objective-C compiler"),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. platforms/core-runtime/native/src/testFixtures/groovy/org/gradle/util/WindowsSymbolicLinkUtil.groovy

            assert ["cmd.exe", "/d", "/c", "mklink", "/j", link, target].execute().waitFor() == 0
        }
    
        static void createWindowsHardLinks(File link, File target) {
            assert target.isFile(), "Windows hard links only works on files"
            assertAdministrator()
            assert ["cmd.exe", "/d", "/c", "mklink", "/h", link, target].execute().waitFor() == 0
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  6. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/metadata/EnforcedPlatformPublicationValidator.java

            "enforced platforms shouldn't be used for published components because they behave like forced dependencies and leak to consumers. " +
            "This can result in hard to diagnose dependency resolution errors.";
    
        @Override
        public String getSuppressor() {
            return SUPPRESSION;
        }
    
        @Override
        public String getExplanation() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modcmd/init.go

    	}
    	var modPath string
    	if len(args) == 1 {
    		modPath = args[0]
    	}
    
    	modload.ForceUseModules = true
    	modload.CreateModFile(ctx, modPath) // does all the hard work
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 19 15:51:46 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/cli-runtime/pkg/genericclioptions/io_options.go

    	"bytes"
    	"io"
    
    	"k8s.io/cli-runtime/pkg/genericiooptions"
    )
    
    // IOStreams provides the standard names for iostreams.  This is useful for embedding and for unit testing.
    // Inconsistent and different names make it hard to read and review code
    // DEPRECATED: use genericiooptions.IOStreams
    type IOStreams = genericiooptions.IOStreams
    
    // NewTestIOStreams returns a valid IOStreams and in, out, errout buffers for unit tests
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 02 09:47:52 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  9. manifests/charts/gateways/istio-egress/templates/zzz_profile.yaml

    1. The builtin values.yaml defaults
    2. The profile the user selects
    3. Users input (-f or --set)
    
    Unfortunately, Helm provides us (1) and (3) together (as .Values), making it hard to insert (2).
    
    However, we can workaround this by placing all of (1) under a specific key (.Values.defaults).
    We can then merge the profile onto the defaults, then the user settings onto that.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 22:30:06 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. manifests/charts/istiod-remote/templates/zzz_profile.yaml

    1. The builtin values.yaml defaults
    2. The profile the user selects
    3. Users input (-f or --set)
    
    Unfortunately, Helm provides us (1) and (3) together (as .Values), making it hard to insert (2).
    
    However, we can workaround this by placing all of (1) under a specific key (.Values.defaults).
    We can then merge the profile onto the defaults, then the user settings onto that.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 22:30:06 UTC 2024
    - 1.5K bytes
    - Viewed (0)
Back to top