Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for 40 (0.03 sec)

  1. go.sum

    github.com/golang/protobuf v1.4.0-rc.1/go.mod h1:ceaxUfeHdC40wWswd/P6IGgMaK3YpKi5j83Wpe3EHw8=
    github.com/golang/protobuf v1.4.0-rc.1.0.20200221234624-67d41d38c208/go.mod h1:xKAWHe0F5eneWXFV3EuXVDTCmh+JuBKY0li0aMyXATA=
    github.com/golang/protobuf v1.4.0-rc.2/go.mod h1:LlEzMj4AhA7rCAGe4KMBDvJI+AwstrUpVNzEA03Pprs=
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Sat Sep 06 17:33:19 UTC 2025
    - 79.9K bytes
    - Viewed (0)
  2. docs/metrics/prometheus/grafana/minio-dashboard.json

                    }
                  }
                ]
              }
            ]
          },
          "gridPos": {
            "h": 7,
            "w": 12,
            "x": 0,
            "y": 40
          },
          "id": 11,
          "options": {
            "legend": {
              "calcs": [],
              "displayMode": "list",
              "placement": "bottom",
              "showLegend": true
            },
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Mon Aug 04 01:46:49 UTC 2025
    - 93.1K bytes
    - Viewed (0)
  3. tests/query_test.go

    	}
    }
    
    func TestSubQuery(t *testing.T) {
    	users := []User{
    		{Name: "subquery_1", Age: 10},
    		{Name: "subquery_2", Age: 20},
    		{Name: "subquery_3", Age: 30},
    		{Name: "subquery_4", Age: 40},
    	}
    
    	DB.Create(&users)
    
    	if err := DB.Select("*").Where("name IN (?)", DB.Select("name").Table("users").Where("name LIKE ?", "subquery_%")).Find(&users).Error; err != nil {
    		t.Fatalf("got error: %v", err)
    Registered: Sun Sep 07 09:35:13 UTC 2025
    - Last Modified: Tue Jul 22 06:21:04 UTC 2025
    - 51K bytes
    - Viewed (0)
  4. src/main/webapp/js/admin/bootstrap.min.js

    interval=null,this._isPaused=null,this._isSliding=null,this._activeElement=null,this._indicatorsElement=null},e._getConfig=function(t){return t=r({},k,t),d.typeCheckConfig(T,t,O),t},e._handleSwipe=function(){var t=Math.abs(this.touchDeltaX);if(!(t<=40)){var e=t/this.touchDeltaX;this.touchDeltaX=0,e>0&&this.prev(),e<0&&this.next()}},e._addEventListeners=function(){var t=this;this._config.keyboard&&o.default(this._element).on("keydown.bs.carousel",(function(e){return t._keydown(e)})),"hover"===thi...
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Oct 26 01:49:09 UTC 2024
    - 61.1K bytes
    - Viewed (0)
  5. src/cmd/asm/internal/asm/testdata/amd64enc_extra.s

    	SHA256MSG2 X2, X11       // 440f38cdda
    	SHA256MSG2 X11, X11      // 450f38cddb
    	// Test VPERMQ with both uint8 and int8 immediate args
    	VPERMQ $-40, Y8, Y8 // c443fd00c0d8
    	VPERMQ $216, Y8, Y8 // c443fd00c0d8
    	// Test that VPERMPD that shares ytab list with VPERMQ continues to work too.
    	VPERMPD $-40, Y7, Y7 // c4e3fd01ffd8
    	VPERMPD $216, Y7, Y7 // c4e3fd01ffd8
    	// Check that LEAL is permitted to use overflowing offset.
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Thu Feb 20 11:20:03 UTC 2025
    - 57.7K bytes
    - Viewed (0)
  6. okhttp/src/commonJvmAndroid/kotlin/okhttp3/HttpUrl.kt

                        alreadyEncoded = true,
                      )
                    this.encodedUsername =
                      if (hasUsername) {
                        this.encodedUsername + "%40" + canonicalUsername
                      } else {
                        canonicalUsername
                      }
                    if (passwordColonOffset != componentDelimiterOffset) {
                      hasPassword = true
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon May 05 16:01:00 UTC 2025
    - 63.5K bytes
    - Viewed (0)
  7. okhttp/src/jvmTest/kotlin/okhttp3/HttpUrlTest.kt

        assertThat(parse("http://:@host/path"))
          .isEqualTo(parse("http://host/path"))
        assertThat(parse("http://:password@@host/path").encodedPassword)
          .isEqualTo("password%40")
      }
    
      @Test
      fun unprintableCharactersArePercentEncoded() {
        assertThat(parse("http://host/\u0000").encodedPath).isEqualTo("/%00")
        assertThat(parse("http://host/\u0008").encodedPath).isEqualTo("/%08")
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon Aug 04 07:38:48 UTC 2025
    - 69.9K bytes
    - Viewed (0)
  8. src/cmd/asm/internal/asm/testdata/arm64.s

    	VUSHLL2	$31, V30.S4, V2.D2              // c2a73f6f
    	VBIF	V0.B8, V30.B8, V1.B8            // c11fe02e
    	VBIF	V30.B16, V0.B16, V2.B16         // 021cfe6e
    	FMOVS	$(4.0), F0                      // 0010221e
    	FMOVD	$(4.0), F0                      // 0010621e
    	FMOVS	$(0.265625), F1                 // 01302a1e
    	FMOVD	$(0.1796875), F2                // 02f0681e
    	FMOVS	$(0.96875), F3                  // 03f02d1e
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Wed Mar 26 10:48:50 UTC 2025
    - 95.3K bytes
    - Viewed (0)
  9. cmd/object-api-listobjects_test.go

    		// Test listing with prefix match with 'xl.meta'
    		{testBuckets[5], "201910/foo/bar", "", "", 1000, resultCases[39], nil, true},
    		// Test listing with custom prefix
    		{testBuckets[6], "", "", "_", 1000, resultCases[40], nil, true},
    	}
    
    	for i, testCase := range testCases {
    		t.Run(fmt.Sprintf("%s-Test%d", instanceType, i+1), func(t *testing.T) {
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 76.1K bytes
    - Viewed (0)
  10. src/main/webapp/css/font-awesome.min.css

    /*!
     * Font Awesome Free 5.12.0 by @fontawesome - https://fontawesome.com
     * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
     */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Dec 14 21:22:25 UTC 2019
    - 55.8K bytes
    - Viewed (2)
Back to top