Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 153 for unlabel (0.1 sec)

  1. src/cmd/vendor/golang.org/x/sys/windows/mkerrors.bash

    winerror="$(printf '%s\n' "/mnt/c/Program Files (x86)/Windows Kits/"/*/Include/*/shared/winerror.h | sort -Vr | head -n 1)"
    [[ -n $winerror ]] || { echo "Unable to find winerror.h" >&2; exit 1; }
    ntstatus="$(printf '%s\n' "/mnt/c/Program Files (x86)/Windows Kits/"/*/Include/*/shared/ntstatus.h | sort -Vr | head -n 1)"
    [[ -n $ntstatus ]] || { echo "Unable to find ntstatus.h" >&2; exit 1; }
    
    declare -A errors
    
    {
    	echo "// Code generated by 'mkerrors.bash'; DO NOT EDIT."
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 15 19:02:39 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  2. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/ReflectiveEnvironment.java

                Map<String, String> result = (Map<String, String>)caseinsensitive.get(null);
                return result;
            } catch (Exception e) {
                throw new NativeIntegrationException("Unable to get mutable windows case insensitive environment map", e);
            }
        }
    
        private Map<String, String> getEnv() {
            try {
                Map<String, String> theUnmodifiableEnvironment = System.getenv();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:06:40 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  3. platforms/jvm/java-compiler-plugin/src/test/groovy/com/gradle/internal/compiler/java/AbstractCompilerPluginTest.groovy

            String packageName = packageGroup.size() > 0 ? packageGroup[0][1] : ""
            def className = (body =~ /(?s).*?(?:class|interface) (\w+).*/)[0][1]
            assert className: "unable to find class name"
            String packageFolder = packageName.replaceAll("[.]", File.separator)
            File parent = Paths.get(sourceFolder.absolutePath, "src", "main", "java", packageFolder).toFile()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:06:26 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  4. cni/pkg/plugin/cnieventclient.go

    	}
    	return eventC
    }
    
    func PushCNIEvent(cniClient CNIEventClient, event *skel.CmdArgs, prevResIps []*cniv1.IPConfig, podName, podNamespace string) error {
    	if event == nil {
    		return fmt.Errorf("unable to push CNI event, CmdArgs event was nil")
    	}
    
    	var ncconfigs []nodeagent.IPConfig
    	for _, ipc := range prevResIps {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 26 20:34:28 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  5. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/util/NumberUtilTest.groovy

            percentOf(50, -10) == 0
    
            then:
            def ex = thrown(IllegalArgumentException)
            ex.message == "Unable to calculate percentage: 50 of -10. All inputs must be >= 0"
    
            when:
            percentOf(-1, 100) == 0
            then:
            ex = thrown(IllegalArgumentException)
            ex.message == "Unable to calculate percentage: -1 of 100. All inputs must be >= 0"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  6. internal/deadlineconn/deadlineconn_test.go

    )
    
    // Test deadlineconn handles read timeout properly by reading two messages beyond deadline.
    func TestBuffConnReadTimeout(t *testing.T) {
    	l, err := net.Listen("tcp", "localhost:0")
    	if err != nil {
    		t.Fatalf("unable to create listener. %v", err)
    	}
    	defer l.Close()
    	serverAddr := l.Addr().String()
    
    	tcpListener, ok := l.(*net.TCPListener)
    	if !ok {
    		t.Fatalf("failed to assert to net.TCPListener")
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Nov 05 18:09:21 UTC 2022
    - 3K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/api/DaemonStateControl.java

         *
         * @throws DaemonUnavailableException When this daemon is unable to run the command, either because it is currently executing another command
         * or is currently stopping.
         * @throws DaemonStoppedException When this daemon started executing the command but was unable to complete it because the daemon is about to stop.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 05 22:24:02 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  8. pkg/kubelet/util/boottime_util_darwin_test.go

    limitations under the License.
    */
    
    package util
    
    import (
    	"testing"
    	"time"
    )
    
    func TestGetBootTime(t *testing.T) {
    	boottime, err := GetBootTime()
    
    	if err != nil {
    		t.Errorf("Unable to get system uptime")
    	}
    
    	if !boottime.After(time.Time{}) {
    		t.Errorf("Invalid system uptime")
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 31 15:09:08 UTC 2023
    - 861 bytes
    - Viewed (0)
  9. pkg/kubelet/util/boottime_util_linux_test.go

    limitations under the License.
    */
    
    package util
    
    import (
    	"testing"
    	"time"
    )
    
    func TestGetBootTime(t *testing.T) {
    	boottime, err := GetBootTime()
    
    	if err != nil {
    		t.Errorf("Unable to get system uptime")
    	}
    
    	if !boottime.After(time.Time{}) {
    		t.Errorf("Invalid system uptime")
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 859 bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/NullNamingPropertyException.java

     * limitations under the License.
     */
    
    package org.gradle.api.internal;
    
    public class NullNamingPropertyException extends RuntimeException {
        NullNamingPropertyException(Object thing) {
            super(String.format("Unable to determine the name of '%s' because its value for the naming property 'name' is null", thing));
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 02 16:56:13 UTC 2016
    - 909 bytes
    - Viewed (0)
Back to top