Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,501 for desk (0.04 sec)

  1. operator/pkg/patch/patch_test.go

    a:
      b:
      - name: n1
        value: v1
      - name: n2
        list: 
        - v1
        - v2
        - v3_regex
      c:
    `
    	tests := []struct {
    		desc    string
    		path    string
    		value   string
    		want    string
    		wantErr string
    	}{
    		{
    			desc:  "ModifyListEntryValue",
    			path:  `a.b.[name:n1].value`,
    			value: `v2`,
    			want: `
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: istio-citadel
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 29 08:32:11 UTC 2022
    - 10.3K bytes
    - Viewed (0)
  2. pkg/volume/fc/fc_util.go

    			name := f.Name()
    			if name == fcPath {
    				disk, err := io.EvalSymlinks(devID + name)
    				if err != nil {
    					klog.V(2).Infof("fc: failed to find a corresponding disk from symlink[%s], error %v", devID+name, err)
    					return "", ""
    				}
    				dm := deviceUtil.FindMultipathDeviceForDevice(disk)
    				klog.Infof("fc: find disk: %v, dm: %v", disk, dm)
    				return disk, dm
    			}
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 16 11:12:06 UTC 2022
    - 12.8K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/cmd/util/documentation_test.go

    import (
    	"testing"
    )
    
    func TestLongDesc(t *testing.T) {
    	tests := []struct {
    		desc string
    		in   string
    		out  string
    	}{
    		{
    			desc: "Empty input produces empty output",
    			in:   "",
    			out:  "",
    		},
    		{
    			desc: "Single line text is preserved as is",
    			in:   "Some text",
    			out:  "Some text",
    		},
    		{
    			desc: "Consecutive new lines are combined into a single paragraph",
    			in:   "Line1\nLine2",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 24 11:40:55 UTC 2019
    - 2.8K bytes
    - Viewed (0)
  4. istioctl/pkg/writer/envoy/configdump/listener_test.go

    	tests := []struct {
    		desc       string
    		inFilter   *ListenerFilter
    		inListener *listener.Listener
    		expect     bool
    	}{
    		{
    			desc: "filter-fields-empty",
    			inFilter: &ListenerFilter{
    				Address: "",
    				Port:    0,
    				Type:    "",
    			},
    			inListener: &listener.Listener{},
    			expect:     true,
    		},
    		{
    			desc: "addrs-dont-match",
    			inFilter: &ListenerFilter{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Sep 11 15:29:30 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  5. maven-embedder/src/main/java/org/apache/maven/cli/CLIManager.java

                    .desc("Define a user property")
                    .build());
            options.addOption(Option.builder(Character.toString(OFFLINE))
                    .longOpt("offline")
                    .desc("Work offline")
                    .build());
            options.addOption(Option.builder(Character.toString(VERSION))
                    .longOpt("version")
                    .desc("Display version information")
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/escape/CharEscaper.java

            dest = growBuffer(dest, destIndex, destSize);
          }
    
          // If we have skipped any characters, we need to copy them now.
          if (charsSkipped > 0) {
            s.getChars(lastEscape, index, dest, destIndex);
            destIndex += charsSkipped;
          }
    
          // Copy the replacement string into the dest buffer as needed.
          if (rlen > 0) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 18 20:55:09 UTC 2022
    - 6.7K bytes
    - Viewed (0)
  7. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/XcodeMultipleCppProjectIntegrationTest.groovy

            def appProject = xcodeProject("app/app.xcodeproj").projectFile
            appProject.indexTarget.getBuildSettings().HEADER_SEARCH_PATHS == toSpaceSeparatedList(file("app/src/main/headers"), file("deck/src/main/public"), file("card/src/main/public"))
            def deckProject = xcodeProject("deck/deck.xcodeproj").projectFile
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  8. pkg/kubelet/userns/userns_manager_switch_test.go

    	featuregatetesting.SetFeatureGateDuringTest(t, utilfeature.DefaultFeatureGate, pkgfeatures.UserNamespacesSupport, true)
    
    	pods := []types.UID{"pod-1", "pod-2"}
    
    	testUserNsPodsManager := &testUserNsPodsManager{
    		podDir: t.TempDir(),
    		// List the same pods we will record, so the second time we create the userns
    		// manager, it will find these pods on disk with userns data.
    		podList: pods,
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 5K bytes
    - Viewed (0)
  9. pilot/pkg/security/trustdomain/util_test.go

    	tests := []struct {
    		desc     string
    		element  string
    		list     []string
    		expected bool
    	}{
    		{
    			desc:     "wildcard",
    			element:  "*",
    			list:     []string{"match-me"},
    			expected: true,
    		},
    		{
    			desc:     "suffix=match",
    			element:  "yo*",
    			list:     []string{"yo", "yolo", "yo-yo"},
    			expected: true,
    		},
    		{
    			desc:     "no-sub",
    			element:  "foo",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 11 04:25:06 UTC 2020
    - 1.5K bytes
    - Viewed (0)
  10. src/crypto/internal/edwards25519/tables.go

    	dest.CondNeg(int(xmask & 1))
    }
    
    // Set dest to x*Q, where -8 <= x <= 8, in constant time.
    func (v *affineLookupTable) SelectInto(dest *affineCached, x int8) {
    	// Compute xabs = |x|
    	xmask := x >> 7
    	xabs := uint8((x + xmask) ^ xmask)
    
    	dest.Zero()
    	for j := 1; j <= 8; j++ {
    		// Set dest = j*Q if |x| = j
    		cond := subtle.ConstantTimeByteEq(xabs, uint8(j))
    		dest.Select(&v.points[j-1], dest, cond)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 05 21:02:45 UTC 2022
    - 3.7K bytes
    - Viewed (0)
Back to top