Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 195 for 25 (0.04 sec)

  1. api/go1.4.txt

    pkg debug/elf, const R_AARCH64_P32_COPY R_AARCH64
    pkg debug/elf, const R_AARCH64_P32_GLOB_DAT = 181
    pkg debug/elf, const R_AARCH64_P32_GLOB_DAT R_AARCH64
    pkg debug/elf, const R_AARCH64_P32_GOT_LD_PREL19 = 25
    pkg debug/elf, const R_AARCH64_P32_GOT_LD_PREL19 R_AARCH64
    pkg debug/elf, const R_AARCH64_P32_IRELATIVE = 188
    pkg debug/elf, const R_AARCH64_P32_IRELATIVE R_AARCH64
    pkg debug/elf, const R_AARCH64_P32_JUMP26 = 20
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Fri Dec 12 03:01:01 UTC 2014
    - 34K bytes
    - Viewed (0)
  2. src/main/resources/fess_config.properties

    #                                                     Paging
    #                                                     ------
    # The size of one page for paging
    paging.page.size = 25
    
    # The size of page range for paging
    paging.page.range.size = 5
    
    # The option 'fillLimit' of page range for paging
    paging.page.range.fill.limit = true
    
    # fetch page size
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Tue Oct 01 14:13:38 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.25.md

    PodSecurityPolicy is Removed, Pod Security Admission graduates to Stable
    
    PodSecurityPolicy was initially [deprecated in v1.21](https://kubernetes.io/blog/2021/04/06/podsecuritypolicy-deprecation-past-present-and-future/), and with the release of v1.25, it has been removed. The updates required to improve its usability would have introduced breaking changes, so it became necessary to remove it in favor of a more friendly replacement. That replacement is [Pod Security Admission](https://kubernetes...
    Registered: Fri Nov 01 09:05:11 UTC 2024
    - Last Modified: Mon May 06 09:23:20 UTC 2024
    - 419.1K bytes
    - Viewed (0)
  4. guava/src/com/google/common/base/CharMatcher.java

      @VisibleForTesting
      static final class Whitespace extends NamedFastMatcher {
    
        // TABLE is a precomputed hashset of whitespace characters. MULTIPLIER serves as a hash function
        // whose key property is that it maps 25 characters into the 32-slot table without collision.
        // Basically this is an opportunistic fast implementation as opposed to "good code". For most
        // other use-cases, the reduction in readability isn't worth it.
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 17 13:00:28 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  5. manifests/addons/dashboards/istio-workload-dashboard.json

                    }
                  }
                ]
              }
            ]
          },
          "gridPos": {
            "h": 6,
            "w": 12,
            "x": 0,
            "y": 16
          },
          "id": 25,
          "links": [],
          "options": {
            "legend": {
              "calcs": [],
              "displayMode": "list",
              "placement": "bottom",
              "showLegend": true
            },
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Wed Mar 27 03:47:04 UTC 2024
    - 102.7K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.32.md

    - github.com/containerd/fifo: [v1.0.0 → v1.1.0](https://github.com/containerd/fifo/compare/v1.0.0...v1.1.0)
    - github.com/containerd/ttrpc: [v1.2.2 → v1.2.5](https://github.com/containerd/ttrpc/compare/v1.2.2...v1.2.5)
    - github.com/coredns/corefile-migration: [v1.0.21 → v1.0.24](https://github.com/coredns/corefile-migration/compare/v1.0.21...v1.0.24)
    Registered: Fri Nov 01 09:05:11 UTC 2024
    - Last Modified: Tue Oct 29 20:17:52 UTC 2024
    - 121.6K bytes
    - Viewed (0)
  7. index.yaml

        name: minio
        sources:
        - https://github.com/minio/minio
        urls:
        - https://charts.min.io/helm-releases/minio-3.6.2.tgz
        version: 3.6.2
      - apiVersion: v1
        appVersion: RELEASE.2022-03-14T18-25-24Z
        created: "2024-10-11T14:15:09.746295832+02:00"
        description: Multi-Cloud Object Storage
        digest: d75b88162bfe54740a233bcecf87328bba2ae23d170bec3a35c828bc6fdc224c
        home: https://min.io
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri Oct 11 12:21:05 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/HttpUrlTest.kt

        }
      }
    
      @Test
      fun setEncodedPathSegmentEncodes() {
        val base = parse("http://host/a/b/c")
        assertThat(base.newBuilder().setEncodedPathSegment(0, "%25").build().encodedPath)
          .isEqualTo("/%25/b/c")
      }
    
      @Test
      fun setEncodedPathSegmentRejectsDot() {
        val base = parse("http://host/a/b/c")
        assertFailsWith<IllegalArgumentException> {
          base.newBuilder().setEncodedPathSegment(0, ".")
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  9. tests/query_test.go

    	}
    	if res.Age != user.Age {
    		t.Errorf("Expected res.Age to be %d, but got %d", user.Age, res.Age)
    	}
    }
    
    func TestPluckWithSelect(t *testing.T) {
    	users := []User{
    		{Name: "pluck_with_select_1", Age: 25},
    		{Name: "pluck_with_select_2", Age: 26},
    	}
    
    	DB.Create(&users)
    
    	var userAges []int
    Registered: Sun Nov 03 09:35:10 UTC 2024
    - Last Modified: Mon Jun 24 09:42:59 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  10. api/go1.14.txt

    pkg syscall (freebsd-arm64), const ENOTRECOVERABLE Errno
    pkg syscall (freebsd-arm64), const ENOTSOCK = 38
    pkg syscall (freebsd-arm64), const ENOTSUP = 45
    pkg syscall (freebsd-arm64), const ENOTTY = 25
    pkg syscall (freebsd-arm64), const ENXIO = 6
    pkg syscall (freebsd-arm64), const EOPNOTSUPP = 45
    pkg syscall (freebsd-arm64), const EOVERFLOW = 84
    pkg syscall (freebsd-arm64), const EOWNERDEAD = 96
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Fri Feb 17 20:31:46 UTC 2023
    - 508.9K bytes
    - Viewed (0)
Back to top