Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for 255 (0.19 sec)

  1. src/cmd/asm/internal/asm/testdata/arm.s

    	MOVW	$0xff, R9            // MOVW $255, R9             // ff90a0e3
    	MOVW	$0xff000000, R9      // MOVW $4278190080, R9      // ff94a0e3
    	MOVW	$0xff(R0), R1        // MOVW $255(R0), R1         // ff1080e2
    	MOVW.S	$0xff(R0), R1        // MOVW.S $255(R0), R1       // ff1090e2
    	MOVW	$-0xff(R0), R1       // MOVW $-255(R0), R1        // ff1040e2
    	MOVW.S	$-0xff(R0), R1       // MOVW.S $-255(R0), R1      // ff1050e2
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Dec 15 20:51:01 GMT 2023
    - 69K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

            if (!acceptHttpMethod(request, GET)) {
                return;
            }
    
            final LabelTypeHelper labelTypeHelper = ComponentUtil.getLabelTypeHelper();
    
            final StringBuilder buf = new StringBuilder(255);
            try {
                final List<Map<String, String>> labelTypeItems = labelTypeHelper.getLabelTypeItemList(SearchRequestType.JSON,
                        request.getLocale() == null ? Locale.ROOT : request.getLocale());
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 02:17:23 GMT 2024
    - 50.3K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/asm/testdata/ppc64.s

    	OR $1234567, R5                 // 64a5001260a5d687
    	OR $1234567, R5, R3             // 64a300126063d687
    	OR $2147483648, R5, R3          // 64a38000
    	OR $2147483649, R5, R3          // 64a3800060630001
    	ORIS $255, R3, R4               // 646400ff
    	OR $16711680, R3, R4            // 646400ff
    
    	XOR $1, R3                      // 68630001
    	XOR $1, R3, R4                  // 68640001
    	XOR $-1, R4                     // 3be0ffff7fe42278
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Apr 24 15:53:25 GMT 2024
    - 49K bytes
    - Viewed (0)
  4. tests/migrate_test.go

    	type UserWithUniqueIndex struct {
    		ID    int
    		Name  string    `gorm:"size:20;index:idx_name,unique"`
    		Date  time.Time `gorm:"index:idx_name,unique"`
    		UName string    `gorm:"uniqueIndex;size:255"`
    	}
    
    	DB.Migrator().DropTable(&UserWithUniqueIndex{})
    	if err := DB.AutoMigrate(&UserWithUniqueIndex{}); err != nil {
    		t.Fatalf("failed to migrate, got %v", err)
    	}
    
    Go
    - Registered: Sun May 05 09:35:13 GMT 2024
    - Last Modified: Mon Mar 18 11:24:16 GMT 2024
    - 56.2K bytes
    - Viewed (0)
  5. cmd/xl-storage.go

    	}
    
    	// Check each path segment length is > 255 on all Unix
    	// platforms, look for this value as NAME_MAX in
    	// /usr/include/linux/limits.h
    	var count int64
    	for _, p := range pathName {
    		switch p {
    		case '/':
    			count = 0 // Reset
    		case '\\':
    			if runtime.GOOS == globalWindowsOSName {
    				count = 0
    			}
    		default:
    			count++
    			if count > 255 {
    				return errFileNameTooLong
    			}
    		}
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sun Apr 28 17:53:50 GMT 2024
    - 84.7K bytes
    - Viewed (0)
  6. cmd/xl-storage_test.go

    			[]byte("hello"), nil,
    		},
    		// Object is a directory. - 3
    		{
    			volume, "object-as-dir",
    			0, 5, nil, errIsNotRegular,
    		},
    		// One path segment length is > 255 chars long. - 4
    		{
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 11 17:45:28 GMT 2024
    - 66.7K bytes
    - Viewed (0)
  7. src/cmd/asm/internal/asm/testdata/arm64.s

    	MOVD -391(R17), R3                         // 3b1e06d1630340f9
    	MOVD -257(R17), R3                         // 3b0604d1630340f9
    	MOVD -256(R17), R3                         // 230250f8
    	MOVD 255(R17), R3                          // 23f24ff8
    	MOVD 256(R17), R3                          // 238240f9
    	MOVD 257(R17), R3                          // 3b060491630340f9
    	MOVD 391(R17), R3                          // 3b1e0691630340f9
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Dec 08 03:28:17 GMT 2023
    - 94.9K bytes
    - Viewed (0)
  8. src/bytes/bytes_test.go

    		1: {"", int(^uint(0) >> 1), ""},
    		2: {"-", 10, ""},
    		3: {"gopher", 0, ""},
    		4: {"-", -1, "negative"},
    		5: {"--", -102, "negative"},
    		6: {string(make([]byte, 255)), int((^uint(0))/255 + 1), "overflow"},
    	}
    
    	for i, tt := range tests {
    		err := repeat([]byte(tt.s), tt.count)
    		if tt.errStr == "" {
    			if err != nil {
    				t.Errorf("#%d panicked %v", i, err)
    			}
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Jan 24 16:07:25 GMT 2024
    - 56.2K bytes
    - Viewed (0)
  9. common/scripts/metallb-native.yaml

                      loss. The remote transmission interval will be multiplied by this
                      value to determine the connection loss detection timer.
                    format: int32
                    maximum: 255
                    minimum: 2
                    type: integer
                  echoInterval:
                    description: Configures the minimal echo receive transmission interval
    Others
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Fri Feb 23 23:56:31 GMT 2024
    - 63.9K bytes
    - Viewed (0)
  10. docs/metrics/prometheus/grafana/minio-bucket.json

          {
            "builtIn": 1,
            "datasource": {
              "type": "datasource",
              "uid": "grafana"
            },
            "enable": true,
            "hide": true,
            "iconColor": "rgba(0, 211, 255, 1)",
            "name": "Annotations & Alerts",
            "type": "dashboard"
          }
        ]
      },
      "description": "MinIO Grafana Dashboard - https://min.io/",
      "editable": true,
      "fiscalYearStartMonth": 0,
    Json
    - Registered: Sun Feb 25 19:28:16 GMT 2024
    - Last Modified: Tue Feb 20 09:45:00 GMT 2024
    - 71.4K bytes
    - Viewed (1)
Back to top