Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 662 for skipif (0.04 sec)

  1. cni/test/install_k8s_test.go

    			expectedPostCleanFile:  testDataDir + "/expected/minikube_cni.conflist.clean",
    			cniConfDirOrderedFiles: []string{"minikube_cni.conf", "calico.conflist"},
    		},
    		{
    			name:                   "Skip non-json file for first valid .conf file",
    			chainedCNIPlugin:       true,
    			resultFileName:         "01-minikube_cni.conflist",
    			expectedOutputFile:     testDataDir + "/expected/minikube_cni.conflist.expected",
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Wed Oct 30 23:59:49 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/admissionregistration/v1/generated.proto

      // on whether the namespace for that object matches the selector. If the
      // object itself is a namespace, the matching is performed on
      // object.metadata.labels. If the object is another cluster scoped resource,
      // it never skips the webhook.
      //
      // For example, to run the webhook on any objects whose namespace is not
      // associated with "runlevel" of "0" or "1";  you will set the selector as
      // follows:
      // "namespaceSelector": {
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  3. docs/em/docs/tutorial/query-params.md

    ## ๐Ÿ”ข
    
    ๐Ÿ”ข ๐Ÿ”ข ๐Ÿšซ ๐Ÿ”ง ๐Ÿ• โžก, ๐Ÿ‘ซ ๐Ÿ’ช ๐Ÿ“ฆ & ๐Ÿ’ช โœ”๏ธ ๐Ÿ”ข ๐Ÿ’ฒ.
    
    ๐Ÿ–ผ ๐Ÿ”› ๐Ÿ‘ซ โœ”๏ธ ๐Ÿ”ข ๐Ÿ’ฒ `skip=0` & `limit=10`.
    
    , ๐Ÿ”œ ๐Ÿ“›:
    
    ```
    http://127.0.0.1:8000/items/
    ```
    
    ๐Ÿ”œ ๐ŸŽ ๐Ÿ”œ:
    
    ```
    http://127.0.0.1:8000/items/?skip=0&limit=10
    ```
    
    โœ‹๏ธ ๐Ÿšฅ ๐Ÿ‘† ๐Ÿšถ, ๐Ÿ–ผ:
    
    ```
    http://127.0.0.1:8000/items/?skip=20
    ```
    
    ๐Ÿ”ข ๐Ÿ’ฒ ๐Ÿ‘† ๐Ÿ”ข ๐Ÿ”œ:
    
    * `skip=20`: โ†ฉ๏ธ ๐Ÿ‘† โš’ โšซ๏ธ ๐Ÿ“›
    * `limit=10`: โ†ฉ๏ธ ๐Ÿ‘ˆ ๐Ÿ”ข ๐Ÿ’ฒ
    
    ## ๐Ÿ“ฆ ๐Ÿ”ข
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  4. docs/tr/docs/tutorial/query-params.md

    Yukarฤฑdaki รถrnekte `skip=0` ve `limit=10` varsayฤฑlan deฤŸere sahiplerdir.
    
    Yani, aลŸaฤŸฤฑdaki baฤŸlantฤฑya gitmek:
    
    ```
    http://127.0.0.1:8000/items/
    ```
    
    ลŸu adrese gitmek ile aynฤฑ etkiye sahiptir:
    
    ```
    http://127.0.0.1:8000/items/?skip=0&limit=10
    ```
    
    Ancak, mesela ลŸรถyle bir adresi ziyaret ederseniz:
    
    ```
    http://127.0.0.1:8000/items/?skip=20
    ```
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  5. internal/grid/grid_types_msgp_test.go

    					if err != nil {
    						err = msgp.WrapError(err, "Embedded", "String")
    						return
    					}
    				default:
    					err = dc.Skip()
    					if err != nil {
    						err = msgp.WrapError(err, "Embedded")
    						return
    					}
    				}
    			}
    		default:
    			err = dc.Skip()
    			if err != nil {
    				err = msgp.WrapError(err)
    				return
    			}
    		}
    	}
    	return
    }
    
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Nov 21 01:09:35 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  6. docs/debugging/inspect/decrypt-v2.go

    			}
    			if errors.Is(err, estream.ErrNoKey) {
    				if stream.Name == "inspect.zip" {
    					return errors.New("incorrect private key")
    				}
    				if err := stream.Skip(); err != nil {
    					return fmt.Errorf("stream skip: %w", err)
    				}
    				continue
    			}
    			if extracted {
    				return keepFileErr{fmt.Errorf("next stream: %w", err)}
    			}
    			return fmt.Errorf("next stream: %w", err)
    		}
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Apr 11 21:22:47 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  7. cmd/batch-expire_gen_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    	if len(left) > 0 {
    		t.Errorf("%d bytes left over after UnmarshalMsg(): %q", len(left), left)
    	}
    
    	left, err = msgp.Skip(bts)
    	if err != nil {
    		t.Fatal(err)
    	}
    	if len(left) > 0 {
    		t.Errorf("%d bytes left over after Skip(): %q", len(left), left)
    	}
    }
    
    func BenchmarkMarshalMsgBatchJobExpire(b *testing.B) {
    	v := BatchJobExpire{}
    	b.ReportAllocs()
    	b.ResetTimer()
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Sat Dec 02 10:51:33 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  8. cmd/last-minute_gen_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    	if len(left) > 0 {
    		t.Errorf("%d bytes left over after UnmarshalMsg(): %q", len(left), left)
    	}
    
    	left, err = msgp.Skip(bts)
    	if err != nil {
    		t.Fatal(err)
    	}
    	if len(left) > 0 {
    		t.Errorf("%d bytes left over after Skip(): %q", len(left), left)
    	}
    }
    
    func BenchmarkMarshalMsgAccElem(b *testing.B) {
    	v := AccElem{}
    	b.ReportAllocs()
    	b.ResetTimer()
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Jul 05 21:45:49 UTC 2022
    - 6.8K bytes
    - Viewed (0)
  9. guava/src/com/google/common/graph/EndpointPairIterator.java

       * EndpointPair [N1, N2] - return
       * EndpointPair [N1, N3] - return
       * Visited Nodes = {N1}
       * EndpointPair [N2, N1] - skip
       * EndpointPair [N2, N3] - return
       * Visited Nodes = {N1, N2}
       * EndpointPair [N3, N1] - skip
       * EndpointPair [N3, N2] - skip
       * Visited Nodes = {N1, N2, N3}
       * EndpointPair [N4, N4] - return
       * Visited Nodes = {N1, N2, N3, N4}
       * </pre>
       */
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Jul 09 17:31:04 UTC 2021
    - 5K bytes
    - Viewed (0)
  10. docs/ko/docs/tutorial/query-params.md

    ์ฟผ๋ฆฌ ๋งค๊ฐœ๋ณ€์ˆ˜๋Š” ๊ฒฝ๋กœ์—์„œ ๊ณ ์ •๋œ ๋ถ€๋ถ„์ด ์•„๋‹ˆ๊ธฐ ๋•Œ๋ฌธ์— ์„ ํƒ์ ์ผ ์ˆ˜ ์žˆ๊ณ  ๊ธฐ๋ณธ๊ฐ’์„ ๊ฐ€์งˆ ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค.
    
    ์œ„ ์˜ˆ์—์„œ `skip=0`๊ณผ `limit=10`์€ ๊ธฐ๋ณธ๊ฐ’์„ ๊ฐ–๊ณ  ์žˆ์Šต๋‹ˆ๋‹ค.
    
    ๊ทธ๋Ÿฌ๋ฏ€๋กœ URL๋กœ ์ด๋™ํ•˜๋Š” ๊ฒƒ์€:
    
    ```
    http://127.0.0.1:8000/items/
    ```
    
    ์•„๋ž˜๋กœ ์ด๋™ํ•˜๋Š” ๊ฒƒ๊ณผ ๊ฐ™์Šต๋‹ˆ๋‹ค:
    
    ```
    http://127.0.0.1:8000/items/?skip=0&limit=10
    ```
    
    ํ•˜์ง€๋งŒ ๊ฐ€๋ น ์•„๋ž˜๋กœ ์ด๋™ํ•œ ๊ฒฝ์šฐ:
    
    ```
    http://127.0.0.1:8000/items/?skip=20
    ```
    
    ํ•จ์ˆ˜์˜ ๋งค๊ฐœ๋ณ€์ˆ˜ ๊ฐ’์€ ์•„๋ž˜๊ฐ€ ๋ฉ๋‹ˆ๋‹ค:
    
    * `skip=20`: URL์—์„œ ์ง€์ •ํ–ˆ๊ธฐ ๋•Œ๋ฌธ์ž…๋‹ˆ๋‹ค
    * `limit=10`: ๊ธฐ๋ณธ๊ฐ’์ด๊ธฐ ๋•Œ๋ฌธ์ž…๋‹ˆ๋‹ค
    
    ## ์„ ํƒ์  ๋งค๊ฐœ๋ณ€์ˆ˜
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 5.3K bytes
    - Viewed (0)
Back to top