Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 90 for _abc (1.7 sec)

  1. pkg/apis/core/validation/validation_test.go

    	successCase := []core.VolumeMount{
    		{Name: "abc", MountPath: "/foo"},
    		{Name: "123", MountPath: "/bar"},
    		{Name: "abc-123", MountPath: "/baz"},
    		{Name: "abc-123", MountPath: "/baa", SubPath: ""},
    		{Name: "abc-123", MountPath: "/bab", SubPath: "baz"},
    		{Name: "abc-123", MountPath: "d:", SubPath: ""},
    		{Name: "abc-123", MountPath: "F:", SubPath: ""},
    		{Name: "abc-123", MountPath: "G:\\mount", SubPath: ""},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
  2. src/archive/tar/writer_test.go

    		},
    	}, {
    		maker: makeSparse{makeReg{3, "abc"}, sparseHoles{{0, 2}, {5, 2}}, 7},
    		tests: []testFnc{
    			testRemaining{7, 3},
    			testWrite{"\x00\x00abc\x00\x00", 7, nil},
    			testRemaining{0, 0},
    		},
    	}, {
    		maker: makeSparse{makeReg{3, "abc"}, sparseHoles{{0, 2}, {5, 2}}, 7},
    		tests: []testFnc{
    			testRemaining{7, 3},
    			testReadFrom{fileOps{int64(2), "abc", int64(1), "\x00"}, 7, nil},
    			testRemaining{0, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 38.7K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/nodevolumelimits/csi_test.go

    			driverNames:      []string{ebsCSIDriverName},
    			test:             "ephemeral volume missing",
    			wantStatus:       framework.NewStatus(framework.UnschedulableAndUnresolvable, `looking up PVC test/abc-xyz: persistentvolumeclaims "abc-xyz" not found`),
    		},
    		{
    			newPod:           ephemeralVolumePod,
    			filterName:       "csi",
    			ephemeralEnabled: true,
    			extraClaims:      []v1.PersistentVolumeClaim{*conflictingClaim},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 18:07:11 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  4. src/cmd/pprof/pprof.go

    	// If it is not a file, when the src contains `:`
    	// (e.g. mem_2023-11-02_03:55:24 or abc:123/mem_2023-11-02_03:55:24),
    	// url.Parse will recognize it as a link and ultimately report an error,
    	// similar to `abc:123/mem_2023-11-02_03:55:24:
    	// Get "http://abc:123/mem_2023-11-02_03:55:24": dial tcp: lookup abc: no such host`
    	if _, openErr := os.Stat(src); openErr == nil {
    		return nil, "", nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  5. pkg/kubelet/container/container_hash_test.go

    )
    
    var (
    	sampleContainer = `
    {
      "name": "test_container",
      "image": "foo/image:v1",
      "command": [
        "/bin/testcmd"
      ],
      "args": [
        "/bin/sh",
        "-c",
        "echo abc"
      ],
      "ports": [
        {
          "containerPort": 8001
        }
      ],
      "env": [
        {
          "name": "ENV_FOO",
          "value": "bar"
        },
        {
          "name": "ENV_BAR",
          "valueFrom": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 01:55:46 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskParametersIntegrationTest.groovy

            "String[]"                            | "new String[0]"                                       | "['abc'] as String[]"                                        | null
            "Object[]"                            | "[123, 'abc'] as Object[]"                            | "['abc'] as String[]"                                        | null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/PropertyIntegrationTest.groovy

            then:
            outputContains("prop = $display")
    
            where:
            type            | value                               | display
            "String"        | "'abc'"                             | "abc"
            "Param<String>" | "new Param<String>(display: 'abc')" | "abc"
        }
    
        def "can define task with abstract nested property"() {
            given:
            buildFile << """
                interface NestedType {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  8. src/net/net_windows_test.go

    	case "abc":
    		// First connection is lost forever, but that is ok.
    		return
    	default:
    		t.Fatalf(`"%s" received from recv, but "" or "abc" expected`, s)
    	}
    
    	// Get second connection data.
    	s, err = recv(ln, false)
    	if err != nil {
    		t.Fatalf("recv failed: %v", err)
    	}
    	if s != "abc" {
    		t.Fatalf(`"%s" received from recv, but "abc" expected`, s)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  9. src/internal/coverage/cfile/apis.go

    	// writes/stores, since the inconsistency described above could
    	// arise here. Example scenario:
    	//
    	//     func ABC() {
    	//       ...                    // prolog
    	//       if alwaysTrue() {
    	//         XYZ()                // counter update here
    	//       }
    	//     }
    	//
    	// In the instrumented version of ABC, the prolog of the function
    	// will contain a series of stores to the initial portion of the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:57:47 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/ErrorHandlingModuleComponentRepositoryTest.groovy

            new ErrorHandlingModuleComponentRepository.ErrorHandlingModuleComponentRepositoryAccess(delegate, 'abc', repositoryBlacklister, maxRetries, backoff, 'abc')
        }
    
        private static HttpErrorStatusCodeException status(int statusCode) {
            new HttpErrorStatusCodeException("GET", "DUMMY", statusCode, "test") {
                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 13.5K bytes
    - Viewed (0)
Back to top