Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for pages64 (0.17 sec)

  1. src/internal/syscall/unix/nofollow_posix.go

    //   - hurd: who knows if it works at all (https://www.gnu.org/software/hurd/open_issues/open_symlink.html)
    //   - illumos: https://illumos.org/man/2/open
    //   - ios: see darwin
    //   - linux: https://man7.org/linux/man-pages/man2/openat.2.html
    //   - openbsd: https://man.openbsd.org/open.2
    //   - solaris: https://docs.oracle.com/cd/E23824_01/html/821-1463/open-2.html
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:26 UTC 2024
    - 933 bytes
    - Viewed (0)
  2. samples/bookinfo/src/details/details.rb

            return fetch_details_from_external_service(isbn, id, headers)
        end
    
        return {
            'id' => id,
            'author': 'William Shakespeare',
            'year': 1595,
            'type' => 'paperback',
            'pages' => 200,
            'publisher' => 'PublisherA',
            'language' => 'English',
            'ISBN-10' => '1234567890',
            'ISBN-13' => '123-1234567890'
        }
    end
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  3. .github/workflows/tests.yml

    name: tests
    
    on:
      push:
        branches-ignore:
          - 'gh-pages'
      pull_request:
        branches-ignore:
          - 'gh-pages'
    
    permissions:
      contents: read
    
    jobs:
      # Label of the container job
      sqlite:
        strategy:
          matrix:
            go: ['1.22', '1.21', '1.20']
            platform: [ubuntu-latest] # can not run in windows OS
        runs-on: ${{ matrix.platform }}
    
        steps:
        - name: Set up Go 1.x
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 09:24:34 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  4. manifests/charts/ztunnel/templates/daemonset.yaml

    {{- end }}
            securityContext:
              allowPrivilegeEscalation: false
              privileged: false
              capabilities:
                drop:
                - ALL
                add: # See https://man7.org/linux/man-pages/man7/capabilities.7.html
                - NET_ADMIN # Required for TPROXY and setsockopt
                - SYS_ADMIN # Required for `setns` - doing things in other netns
                - NET_RAW # Required for RAW/PACKET sockets, TPROXY
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 01:33:52 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/etcd3/store_test.go

    		}
    		estimatedGetCalls := uint64(1)
    		if pageSize != 0 {
    			// We expect that kube-apiserver will be increasing page sizes
    			// if not full pages are received, so we should see significantly less
    			// than 1000 pages (which would be result of talking to etcd with page size
    			// copied from pred.Limit).
    			// The expected number of calls is n+1 where n is the smallest n so that:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/qos_container_manager_linux.go

    		},
    	}
    
    	// update the qos level cgroup settings for cpu shares
    	if err := m.setCPUCgroupConfig(qosConfigs); err != nil {
    		return err
    	}
    
    	// update the qos level cgroup settings for huge pages (ensure they remain unbounded)
    	if err := m.setHugePagesConfig(qosConfigs); err != nil {
    		return err
    	}
    
    	// update the qos level cgrougs v2 settings of memory qos if feature enabled
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 20:42:59 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    			name:   "filter returns two items split across multiple pages",
    			prefix: "/pods",
    			pred: storage.SelectionPredicate{
    				Field: fields.OneTermEqualSelector("metadata.name", "foo"),
    				Label: labels.Everything(),
    				Limit: 2,
    			},
    			expectedOut: []example.Pod{*preset[2], *preset[4]},
    		},
    		{
    			name:   "filter returns two items split across multiple pages with current resource version and match=NotOlderThan",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  8. cmd/object_api_suite_test.go

    		}
    		if result.IsTruncated {
    			t.Errorf("%s: Expected IsTruncated to be `false`, but instead found it to be `%v`", instanceType, result.IsTruncated)
    		}
    	}
    
    	// check after paging occurs pages work.
    	for i := 6; i <= 10; i++ {
    		key := "obj" + strconv.Itoa(i)
    		_, err = obj.PutObject(context.Background(), "bucket", key, mustGetPutObjReader(t, bytes.NewBufferString(uploadContent), int64(len(uploadContent)), "", ""), opts)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  9. src/runtime/gc_test.go

    var a bool
    
    //go:noinline
    func testIfaceEqual(x any) {
    	if x == "abc" {
    		a = true
    	}
    }
    
    func TestPageAccounting(t *testing.T) {
    	// Grow the heap in small increments. This used to drop the
    	// pages-in-use count below zero because of a rounding
    	// mismatch (golang.org/issue/15022).
    	const blockSize = 64 << 10
    	blocks := make([]*[blockSize]byte, (64<<20)/blockSize)
    	for i := range blocks {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 22:33:52 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  10. docs/en/docs/release-notes.md

    * 📝 Update External Links. PR [#11327](https://github.com/tiangolo/fastapi/pull/11327) by [@alejsdev](https://github.com/alejsdev).
    * 🔥 Remove link to Pydantic's benchmark, on other i18n pages.. PR [#11224](https://github.com/tiangolo/fastapi/pull/11224) by [@hirotoKirimaru](https://github.com/hirotoKirimaru).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
Back to top