Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 57 for 4291 (0.08 sec)

  1. src/syscall/zsysctl_openbsd.go

    	{"net.inet.etherip.allow", []_C_int{4, 2, 97, 1}},
    	{"net.inet.etherip.stats", []_C_int{4, 2, 97, 2}},
    	{"net.inet.gre.allow", []_C_int{4, 2, 47, 1}},
    	{"net.inet.gre.wccp", []_C_int{4, 2, 47, 2}},
    	{"net.inet.icmp.bmcastecho", []_C_int{4, 2, 1, 2}},
    	{"net.inet.icmp.errppslimit", []_C_int{4, 2, 1, 3}},
    	{"net.inet.icmp.maskrepl", []_C_int{4, 2, 1, 1}},
    	{"net.inet.icmp.rediraccept", []_C_int{4, 2, 1, 4}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 03:24:15 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  2. pkg/kubelet/container/container_gc.go

    		return false
    	}
    	// KEP 4191 explains that multiple filesystems for images and containers is not
    	// supported at the moment.
    	// See https://github.com/kubernetes/enhancements/tree/master/keps/sig-node/4191-split-image-filesystem#comment-on-future-extensions
    	// for work needed to support multiple filesystems.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/ingress/testdata/simple.yaml

                port:
                  number: 4200
            # Subpath without trailing /
          - path: /sub/path
            backend:
              service:
                name: service1
                port:
                  number: 4201
          # With a trailing /
          - path: /sub/path/
            backend:
              service:
                name: service1
                port:
                  number: 4202
          # Regex ending with .*
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 10 16:43:09 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  4. src/go/ast/print_test.go

    		2  }`},
    
    	// pointers
    	{new(int), "0  *0"},
    
    	// arrays
    	{[0]int{}, `0  [0]int {}`},
    	{[3]int{1, 2, 3},
    		`0  [3]int {
    		1  .  0: 1
    		2  .  1: 2
    		3  .  2: 3
    		4  }`},
    	{[...]int{42},
    		`0  [1]int {
    		1  .  0: 42
    		2  }`},
    
    	// slices
    	{[]int{}, `0  []int (len = 0) {}`},
    	{[]int{1, 2, 3},
    		`0  []int (len = 3) {
    		1  .  0: 1
    		2  .  1: 2
    		3  .  2: 3
    		4  }`},
    
    	// structs
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 09 15:35:30 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  5. pkg/kubelet/cadvisor/types.go

    	ImagesFsInfo() (cadvisorapiv2.FsInfo, error)
    
    	// Returns usage information about the root filesystem.
    	RootFsInfo() (cadvisorapiv2.FsInfo, error)
    
    	// Returns usage information about the writeable layer.
    	// KEP 4191 can separate the image filesystem
    	ContainerFsInfo() (cadvisorapiv2.FsInfo, error)
    
    	// Get filesystem information for the filesystem that contains the given file.
    	GetDirFsInfo(path string) (cadvisorapiv2.FsInfo, error)
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 22:07:20 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  6. test/codegen/memops_bigoffset.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package codegen
    
    type big1 struct {
    	w [1<<30 - 1]uint32
    }
    type big2 struct {
    	d [1<<29 - 1]uint64
    }
    
    func loadLargeOffset(sw *big1, sd *big2) (uint32, uint64) {
    
    	// ppc64x:`MOVWZ\s+[0-9]+\(R[0-9]+\)`,-`ADD`
    	a3 := sw.w[1<<10]
    	// ppc64le/power10:`MOVWZ\s+[0-9]+\(R[0-9]+\),\sR[0-9]+`,-`ADD`
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 15 18:20:54 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/tests/opens2s_gnmt_mixed_precision.golden_summary

    Clustered nodes: 2385
    Unclustered nodes: 4221
    Number of clusters: 30
    
    unclustered size 4221
     Add 17
     AddN 1
     All 1
     ApplyAdam 38
     Assert 7
     Assign 47
     AssignAdd 2
     AssignSub 2
     BroadcastGradientArgs 44
     Cast 38
     ConcatV2 3
     Const 875
     ControlTrigger 5
     Enter 874
     Equal 4
     Exit 69
     ExpandDims 9
     Fill 5
     FloorMod 1
     GreaterEqual 7
     Identity 113
     IsVariableInitialized 1
     IteratorGetNext 1
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 06 10:38:14 UTC 2023
    - 5K bytes
    - Viewed (0)
  8. tensorflow/cc/framework/cc_ops_test.cc

      test::ExpectTensorEqual<int>(out, test::AsTensor<int>({42}, {1, 1}));
    }
    
    TEST(CCOpTest, Attrs) {
      Scope root = Scope::NewRootScope();
      auto m = MatMul(root, {{1}, {1}}, {{41}, {1}}, MatMul::TransposeA(true));
      TF_EXPECT_OK(root.status());
      Tensor out;
      test::GetTensor(root, m, &out);
      test::ExpectTensorEqual<int>(out, test::AsTensor<int>({42}, {1, 1}));
    }
    
    TEST(CCOpTest, SplitConcat) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 15 15:13:38 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  9. src/crypto/tls/testdata/Server-TLSv13-Resume

    00000090  b4 11 54 4d 78 28 66 53  0f fd c8 7c d5 1c 1d b2  |..TMx(fS...|....|
    000000a0  06 31 23 27 a4 70 b2 17  03 03 00 35 86 87 b6 21  |.1#'.p.....5...!|
    000000b0  1c db f6 8c 4f ae 46 26  27 23 5d 1f 41 1d 42 94  |....O.F&'#].A.B.|
    000000c0  68 32 e5 49 19 e9 bc ba  4e 0a e2 71 7e 31 d2 a0  |h2.I....N..q~1..|
    000000d0  c2 24 b3 a9 3d 26 a5 eb  c9 44 09 03 7a 14 54 5d  |.$..=&...D..z.T]|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:14:50 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  10. src/crypto/tls/testdata/Server-TLSv10-ECDHE-ECDSA-AES

    00000290  4f ca 46 6d e4 fe 47 41  82 1e d4 14 0f 08 ab b6  |O.Fm..GA........|
    000002a0  b8 41 8b 46 f5 28 bb 87  28 73 a0 5c e9 ce f5 56  |.A.F.(..(s.\...V|
    000002b0  11 02 17 2c 39 b6 28 6c  ec de 12 bf 22 91 3d 06  |...,9.(l....".=.|
    000002c0  ac 8e 0a 92 b1 46 69 86  44 02 42 01 fd 70 6e 63  |.....Fi.D.B..pnc|
    000002d0  1b 2a 21 47 9b 42 9c d4  4a 38 20 dd 94 05 c4 0f  |.*!G.B..J8 .....|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:13:30 UTC 2023
    - 5.9K bytes
    - Viewed (0)
Back to top