Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 315 for unlabel (0.1 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/verification/serializer/DependencyVerificationsXmlReaderTest.groovy

        def "reasonable error message when format is invalid"() {
            when:
            parse("invalid")
    
            then:
            DependencyVerificationException e = thrown()
            e.message == "Unable to read dependency verification metadata"
        }
    
        def "reasonable error message when external xml entities are used"() {
    
            when:
            parse """<?xml version="1.0" encoding="UTF-8"?>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 18 10:13:31 UTC 2023
    - 15.8K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. cni/pkg/nodeagent/podcgroupns_linux.go

    package nodeagent
    
    import (
    	"fmt"
    	"io/fs"
    	"syscall"
    )
    
    func GetInode(fi fs.FileInfo) (uint64, error) {
    	if stat, ok := fi.Sys().(*syscall.Stat_t); ok {
    		return stat.Ino, nil
    	}
    	return 0, fmt.Errorf("unable to get inode")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 26 20:34:28 UTC 2024
    - 814 bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CachedTaskExecutionErrorHandlingIntegrationTest.groovy

                        println "> Attempting load for \$key"
                        if (shouldFail == "load") {
                            shouldFail = null
                            throw new BuildCacheException("Unable to read " + key)
                        } else {
                            return false
                        }
                    }
    
                    @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:22 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  8. pkg/credentialprovider/plugin/config.go

    	if configPath == "" {
    		return nil, fmt.Errorf("credential provider config path is empty")
    	}
    
    	data, err := os.ReadFile(configPath)
    	if err != nil {
    		return nil, fmt.Errorf("unable to read external registry credential provider configuration from %q: %w", configPath, err)
    	}
    
    	config, err := decode(data)
    	if err != nil {
    		return nil, fmt.Errorf("error decoding config %s: %w", configPath, err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 19 15:11:57 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/nodevolumelimits/csi.go

    		if err != nil {
    			logger.V(5).Info("Unable to look up plugin name from PV spec", "err", err)
    			return "", ""
    		}
    
    		if !isCSIMigrationOn(csiNode, pluginName) {
    			logger.V(5).Info("CSI Migration of plugin is not enabled", "plugin", pluginName)
    			return "", ""
    		}
    
    		csiPV, err := pl.translator.TranslateInTreePVToCSI(pv)
    		if err != nil {
    			logger.V(5).Info("Unable to translate in-tree volume to CSI", "err", err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 18:07:11 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/cli-runtime/pkg/resource/helper.go

    			if len(opts.LabelSelector) == 0 && len(opts.FieldSelector) == 0 {
    				se.ErrStatus.Message = fmt.Sprintf("Unable to list %q: %v", subj,
    					se.ErrStatus.Message)
    			} else {
    				se.ErrStatus.Message = fmt.Sprintf(
    					"Unable to find %q that match label selector %q, field selector %q: %v", subj,
    					opts.LabelSelector,
    					opts.FieldSelector, se.ErrStatus.Message)
    			}
    			return se
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 26 03:45:13 UTC 2022
    - 10.5K bytes
    - Viewed (0)
Back to top