Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for ccc1 (0.04 sec)

  1. okhttp/src/test/java/okhttp3/internal/cache/DiskLruCacheTest.kt

        cache.evictAll()
    
        // Create a new value in its place.
        set("k1", "ccc", "ccc")
        assertThat(cache.size()).isEqualTo(6)
    
        // Committing the detached editor should not change the cache's size.
        editor.commit()
        assertThat(cache.size()).isEqualTo(6)
        assertValue("k1", "ccc", "ccc")
      }
    
      @ParameterizedTest
      @ArgumentsSource(FileSystemParamProvider::class)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 14:55:09 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/CollectionPropertySpec.groovy

            assertValueIs(expectedValue)
    
            where:
            value                 | expectedValue
            []                    | []
            ["aaa"]               | ["aaa"]
            ["aaa", "bbb", "ccc"] | ["aaa", "bbb", "ccc"]
        }
    
        def "appends value to string property from array with GString value using addAll"() {
            given:
            property.set(toMutable(["abc"]))
            property.addAll("${'321'.substring(2)}")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  3. src/cmd/dist/build.go

    }
    
    func checkCC() {
    	if !needCC() {
    		return
    	}
    	cc1 := defaultcc[""]
    	if cc1 == "" {
    		cc1 = "gcc"
    		for _, os := range clangos {
    			if gohostos == os {
    				cc1 = "clang"
    				break
    			}
    		}
    	}
    	cc, err := quotedSplit(cc1)
    	if err != nil {
    		fatalf("split CC: %v", err)
    	}
    	var ccHelp = append(cc, "--help")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  4. tests/migrate_test.go

    		if !DB.Migrator().HasTable(m) {
    			t.Fatalf("Failed to create table for %#v", m)
    		}
    	}
    
    	DB.Scopes(func(db *gorm.DB) *gorm.DB {
    		return db.Table("ccc")
    	}).Migrator().CreateTable(&Company{})
    
    	if !DB.Migrator().HasTable("ccc") {
    		t.Errorf("failed to create table ccc")
    	}
    
    	for _, indexes := range [][2]string{
    		{"user_speaks", "fk_user_speaks_user"},
    		{"user_speaks", "fk_user_speaks_language"},
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Mar 18 11:24:16 UTC 2024
    - 56.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/css/javadoc.css

        width:315px;
        top:0;
        left:0;
        height:30%;
        border-right:6px solid #ccc;
        border-bottom:6px solid #ccc;
    }
    .leftBottom {
        position:relative;
        float:left;
        width:315px;
        bottom:0;
        left:0;
        height:70%;
        border-right:6px solid #ccc;
        border-top:1px solid #000;
    }
    .rightContainer {
        position:absolute;
        left:320px;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 14:25:49 UTC 2024
    - 50.5K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/interpodaffinity/filtering_test.go

    			pod: st.MakePod().Name("anaffi-antiaffiti").PodAffinityExists("aaa", "hostname", st.PodAffinityWithRequiredReq).
    				PodAffinityExists("ccc", "hostname", st.PodAffinityWithRequiredReq).
    				PodAntiAffinityExists("aaa", "hostname", st.PodAntiAffinityWithRequiredReq).
    				PodAntiAffinityExists("ccc", "hostname", st.PodAntiAffinityWithRequiredReq).Obj(),
    			wantAffinityPodsMap: make(topologyToMatchedTermCount),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 01 10:24:54 UTC 2023
    - 58.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/css/manual.css

    kbd {
    	font-family: "Droid Sans Mono", "DejaVu Sans Mono", monospace;
    	display: inline-block;
    	color: var(--num-color);
    	font-size: 0.65em;
    	line-height: 1.45;
    	background-color: #f7f7f7;
    	border: 1px solid #ccc;
    	-webkit-border-radius: 3px;
    	border-radius: 3px;
    	-webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2), 0 0 0 0.1em white inset;
    	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2), 0 0 0 0.1em white inset;
    	margin: 0 0.15em;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/devicemanager/manager_test.go

    					HostPath:      "host_dir1/file1",
    					ReadOnly:      true,
    				})
    
    			case "dev2":
    				resp.Devices = append(resp.Devices, &pluginapi.DeviceSpec{
    					ContainerPath: "/dev/ccc",
    					HostPath:      "/dev/ccc",
    					Permissions:   "mrw",
    				})
    
    				resp.Mounts = append(resp.Mounts, &pluginapi.Mount{
    					ContainerPath: "/container_dir1/file2",
    					HostPath:      "host_dir1/file2",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 65K bytes
    - Viewed (0)
  9. cmd/object-api-listobjects_test.go

    		{testBuckets[5], "201910/foo/bar/xl.meta/1.txt", "content", nil},
    		{testBuckets[6], "aaa", "content", nil},
    		{testBuckets[6], "bbb_aaa", "content", nil},
    		{testBuckets[6], "bbb_aaa", "content", nil},
    		{testBuckets[6], "ccc", "content", nil},
    	}
    	for _, object := range testObjects {
    		md5Bytes := md5.Sum([]byte(object.content))
    		_, err = obj.PutObject(context.Background(), object.parentBucket, object.name,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 11:07:40 UTC 2024
    - 73.1K bytes
    - Viewed (0)
Back to top