Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,501 for desk (0.34 sec)

  1. pkg/volume/util/util_test.go

    			expectedPath: `c:\var\lib\kubelet\pods\146f8428-83e7-11e7-8dd4-000d3a31dac4\volumes\kubernetes.io~disk`,
    		},
    		{
    			path:         `\var/lib/kubelet/pods/146f8428-83e7-11e7-8dd4-000d3a31dac4\volumes\kubernetes.io~disk`,
    			expectedPath: `c:\var\lib\kubelet\pods\146f8428-83e7-11e7-8dd4-000d3a31dac4\volumes\kubernetes.io~disk`,
    		},
    		{
    			path:         `/`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  2. tools/docker-builder/crane.go

    				plan := a.PlanFor(arch).Find(args.Name)
    				if plan == nil {
    					continue
    				}
    				// Plan is a list of real file paths, but we don't have a strong mapping from "docker context source"
    				// to "real path on disk". We do have a weak mapping though, by reproducing docker-copy.sh
    				for dest, src := range args.Files {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 01:07:39 UTC 2023
    - 6K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/phases/upgrade/postupgrade.go

    	if err != nil {
    		return err
    	}
    	src := filepath.Join(kubeletDir, kubeadmconstants.KubeletConfigurationFileName)
    	dest := filepath.Join(backupDir, kubeadmconstants.KubeletConfigurationFileName)
    
    	if !dryRun {
    		fmt.Printf("[upgrade] Backing up kubelet config file to %s\n", dest)
    		err := kubeadmutil.CopyFile(src, dest)
    		if err != nil {
    			return errors.Wrap(err, "error backing up the kubelet config file")
    		}
    	} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  4. cmd/metrics-v2.go

    				VariableLabels: map[string]string{"drive": disk.DrivePath},
    			})
    
    			if disk.Metrics != nil {
    				metrics = append(metrics, MetricV2{
    					Description:    getNodeDriveTimeoutErrorsMD(),
    					Value:          float64(disk.Metrics.TotalErrorsTimeout),
    					VariableLabels: map[string]string{"drive": disk.DrivePath},
    				})
    
    				metrics = append(metrics, MetricV2{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  5. src/path/filepath/path_test.go

    			dest = test.dest
    		}
    		testEvalSymlinks(t, path, dest)
    
    		// test EvalSymlinks(".")
    		testEvalSymlinksAfterChdir(t, path, ".", ".")
    
    		// test EvalSymlinks("C:.") on Windows
    		if runtime.GOOS == "windows" {
    			volDot := filepath.VolumeName(tmpDir) + "."
    			testEvalSymlinksAfterChdir(t, path, volDot, volDot)
    		}
    
    		// test EvalSymlinks(".."+path)
    		dotdotPath := simpleJoin("..", test.dest)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 16:38:19 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  6. src/encoding/xml/marshal_test.go

    }, {
    	desc: "end element with no name",
    	toks: []Token{
    		EndElement{Name{"space", ""}},
    	},
    	err: "xml: end tag with no name",
    }, {
    	desc: "char data",
    	toks: []Token{
    		CharData("foo"),
    	},
    	want: `foo`,
    }, {
    	desc: "char data with escaped chars",
    	toks: []Token{
    		CharData(" \t\n"),
    	},
    	want: " 	\n",
    }, {
    	desc: "comment",
    	toks: []Token{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/smb1/NtlmPasswordAuthentication.java

            byte[] key7 = new byte[7];
            byte[] e8 = new byte[8];
    
            for( int i = 0; i < key.length / 7; i++ ) {
                System.arraycopy( key, i * 7, key7, 0, 7 );
                DES des = new DES( key7 );
                des.encrypt( data, e8 );
                System.arraycopy( e8, 0, e, i * 8, 8 );
            }
        }
    
        static String DEFAULT_DOMAIN;
        static String DEFAULT_USERNAME;
        static String DEFAULT_PASSWORD;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 22.5K bytes
    - Viewed (0)
  8. tests/integration/telemetry/testdata/istio-mtls-dest-rule.yaml

    zirain <******@****.***> 1665678622 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 13 16:30:22 UTC 2022
    - 318 bytes
    - Viewed (0)
  9. finisher_api.go

    		})
    	}
    	tx.Statement.Dest = dest
    	return tx.callbacks.Query().Execute(tx)
    }
    
    func (db *DB) ScanRows(rows *sql.Rows, dest interface{}) error {
    	tx := db.getInstance()
    	if err := tx.Statement.Parse(dest); !errors.Is(err, schema.ErrUnsupportedDataType) {
    		tx.AddError(err)
    	}
    	tx.Statement.Dest = dest
    	tx.Statement.ReflectValue = reflect.ValueOf(dest)
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Jan 12 08:42:21 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  10. src/path/filepath/path_windows_test.go

    		var err error
    		path := simpleJoin(tmpDir, d.path)
    		if d.dest == "" {
    			err = os.Mkdir(path, 0755)
    		} else {
    			err = os.Symlink(d.dest, path)
    		}
    		if err != nil {
    			t.Fatal(err)
    		}
    	}
    
    	path := simpleJoin(tmpDir, test.path)
    
    	testEvalSymlinks(t, path, test.dest)
    
    	testEvalSymlinksAfterChdir(t, path, ".", test.dest)
    
    	testEvalSymlinksAfterChdir(t,
    		path,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 20:38:54 UTC 2024
    - 19.6K bytes
    - Viewed (0)
Back to top