Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 40 for AbC (0.03 sec)

  1. src/cmd/compile/internal/ppc64/ssa.go

    			p.From.Offset = 64
    			p.To.Type = obj.TYPE_REG
    			p.To.Reg = v.Args[0].Reg()
    
    			// Branch back to top of loop
    			// based on CTR
    			// BC with BO_BCTR generates bdnz
    			p = s.Prog(ppc64.ABC)
    			p.From.Type = obj.TYPE_CONST
    			p.From.Offset = ppc64.BO_BCTR
    			p.Reg = ppc64.REG_CR0LT
    			p.To.Type = obj.TYPE_BRANCH
    			p.To.SetTarget(top)
    		}
    		// When ctr == 1 the loop was not generated but
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  2. tests/migrate_test.go

    	if DB.Dialector.Name() != "mysql" {
    		t.Skip()
    	}
    
    	type MyTable struct {
    		Def string `gorm:"size:512;index:idx_def,unique"`
    		Abc string `gorm:"size:65000000"`
    	}
    
    	DB.Migrator().DropTable("my_tables")
    
    	sql := "CREATE TABLE `my_tables` (`def` varchar(512),`abc` longtext,UNIQUE INDEX `idx_def` (`def`))"
    	if err := DB.Exec(sql).Error; err != nil {
    		t.Errorf("Failed, got error: %v", err)
    	}
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Mar 18 11:24:16 UTC 2024
    - 56.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/celcoststability_test.go

    				"self.val1.lowerAscii() == 'rook takes 👑'":         6,
    				"self.val1.lowerAscii() == self.val1.lowerAscii()": 10,
    				// strings version 2
    				"'%d %s %f %s %s'.format([1, 'abc', 1.0, duration('1m'), timestamp('2000-01-01T00:00:00.000Z')]) == '1 abc 1.000000 60s 2000-01-01T00:00:00Z'": 6,
    				"'%e'.format([3.14]) == '3.140000 × 10⁰⁰'":        3,
    				"'%o %o %o'.format([7, 8, 9]) == '7 10 11'":       2,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:20:16 UTC 2024
    - 80.2K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/serviceentry/controller_test.go

    			Address:        "3.3.3.3",
    			Labels:         map[string]string{"app": "wle"},
    			ServiceAccount: "default",
    		})
    	wle3 := createWorkloadEntry("wl3", selector.Name,
    		&networking.WorkloadEntry{
    			Address:        "abc.def",
    			Labels:         map[string]string{"app": "wle"},
    			ServiceAccount: "default",
    		})
    	dnsWle := createWorkloadEntry("dnswl", dnsSelector.Namespace,
    		&networking.WorkloadEntry{
    			Address:        "4.4.4.4",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/collect/SetsTest.java

                    unfiltered.add("yyy");
                    unfiltered.addAll(ImmutableList.copyOf(elements));
                    unfiltered.add("zzz");
                    unfiltered.add("abc");
                    return Sets.filter(
                        Sets.filter(unfiltered, Collections2Test.LENGTH_1),
                        Collections2Test.NOT_YYY_ZZZ);
                  }
                })
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 49.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    		expectRVFunc               func(string) error
    	}{
    		{
    			name:        "rejects invalid resource version",
    			prefix:      "/pods",
    			pred:        storage.Everything,
    			rv:          "abc",
    			expectError: true,
    		},
    		{
    			name:   "rejects resource version and continue token",
    			prefix: "/pods",
    			pred: storage.SelectionPredicate{
    				Label:    labels.Everything(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  7. internal/bucket/lifecycle/lifecycle_test.go

    ag><Tag><Key>tag2</Key><Value>value2</Value></Tag></And></Filter><Status>Enabled</Status><Expiration><Date>` + time.Now().Truncate(24*time.Hour).UTC().Add(-24*time.Hour).Format(time.RFC3339) + `</Date></Expiration></Rule><Rule><Filter><And><Prefix>abc/</Prefix><Tag><Key>tag2</Key><Value>value</Value></Tag></And></Filter><Status>Enabled</Status><Expiration><Date>` + time.Now().Truncate(24*time.Hour).UTC().Add(-24*time.Hour).Format(time.RFC3339) + `</Date></Expiration></Rule></LifecycleConfiguration>`,...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 01:12:48 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  8. pkg/kubelet/server/server_test.go

    		uid           bool
    		clientData    string
    		containerData string
    		shouldError   bool
    	}{
    		"no port":                       {port: "", shouldError: true},
    		"none number port":              {port: "abc", shouldError: true},
    		"negative port":                 {port: "-1", shouldError: true},
    		"too large port":                {port: "65536", shouldError: true},
    		"0 port":                        {port: "0", shouldError: true},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/VersionCatalogExtensionIntegrationTest.groovy

                        }
    
                        changing = true
                    }
                    implementation(libs.test2) {
                        transitive = false
                        targetConfiguration = "abc"
                        doNotEndorseStrictVersions()
    
                        version {
                            require("456")
                        }
    
                        changing = false
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 13:37:31 UTC 2024
    - 77.8K bytes
    - Viewed (0)
  10. pkg/apis/admissionregistration/types.go

    	// the associated expression.
    	// Name must be a qualified name consisting of alphanumeric characters, '-', '_' or '.', and
    	// must start and end with an alphanumeric character (e.g. 'MyName',  or 'my.name',  or
    	// '123-abc', regex used for validation is '([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9]') with an
    	// optional DNS subdomain prefix and '/' (e.g. 'example.com/MyName')
    	//
    	// Required.
    	Name string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 52.6K bytes
    - Viewed (0)
Back to top