Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 26 for Appendp (0.23 sec)

  1. pkg/proxy/iptables/proxier_test.go

    			continue
    		}
    		// record the matched rule for debugging purposes
    		tracer.matches = append(tracer.matches, rule.Raw)
    
    		switch rule.Jump.Value {
    		case "KUBE-MARK-MASQ":
    			tracer.markMasq = true
    			continue
    
    		case "ACCEPT", "REJECT", "DROP":
    			// (only valid in filter)
    			tracer.outputs = append(tracer.outputs, rule.Jump.Value)
    			return true
    
    		case "DNAT":
    			// (only valid in nat)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /** The key of the configuration. e.g. true */
        String CRAWLER_DOCUMENT_APPEND_DATA = "crawler.document.append.data";
    
        /** The key of the configuration. e.g. false */
        String CRAWLER_DOCUMENT_APPEND_FILENAME = "crawler.document.append.filename";
    
        /** The key of the configuration. e.g. 20 */
        String CRAWLER_DOCUMENT_MAX_ALPHANUM_TERM_SIZE = "crawler.document.max.alphanum.term.size";
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Apr 11 02:34:53 UTC 2024
    - 459.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

          // create the expected update shape which scalar update is broadcasted to
          expected_update_shape.append(indices_shape.begin(),
                                       std::prev(indices_shape.end()));
    
          expected_update_shape.append(std::next(tensor_shape.begin(), index_depth),
                                       tensor_shape.end());
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/crds/standard-install.yaml

                                          description: "Add adds the given header(s) (name,
                                            value) to the request before the action. It
                                            appends to any existing values associated
                                            with the header name. \n Input: GET /foo HTTP/1.1
                                            my-header: foo \n Config: add: - name: \"my-header\"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 458.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation_test.go

    		},
    	}
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    			// simulate the recursive validation calls
    			schemas := append(tt.schema, &apiextensions.JSONSchemaProps{Type: "string"}) // append a leaf type
    			curCostInfo := RootCELContext(schemas[0])
    			for i := 1; i < len(schemas); i++ {
    				curCostInfo = curCostInfo.childContext(schemas[i], nil)
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 349.4K bytes
    - Viewed (0)
  6. pkg/registry/core/service/storage/storage_test.go

    			}
    
    			bNodePorts, uNodePorts := make([]int32, 0), make([]int32, 0)
    			for _, item := range tc.before.Spec.Ports {
    				bNodePorts = append(bNodePorts, item.NodePort)
    			}
    			for _, item := range update.Spec.Ports {
    				uNodePorts = append(uNodePorts, item.NodePort)
    			}
    			if tc.expectSameNodePort && !reflect.DeepEqual(bNodePorts, uNodePorts) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 440.2K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.23.md

    - Added a new flag `--append-server-path` to `kubectl proxy` that will automatically append the kube context server path to each request. ([#97350](https://github.com/kubernetes/kubernetes/pull/97350), [@FabianKramm](https://github.com/FabianKramm))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 28 21:06:52 UTC 2023
    - 424.5K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.7.md

      * Added CIFS PV support for Juju Charms ([#45117](https://github.com/kubernetes/kubernetes/pull/45117), [@chuckbutler](https://github.com/chuckbutler))
    
      * Fixes juju kubernetes master: 1. Get certs from a dead leader. 2. Append tokens. ([#43620](https://github.com/kubernetes/kubernetes/pull/43620), [@ktsakalozos](https://github.com/ktsakalozos))
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 308.7K bytes
    - Viewed (0)
  9. prow/config/calico.yaml

                      to append mode, be sure that the other rules in the chains signal
                      acceptance by falling through to the Calico rules, otherwise the
                      Calico policy will be bypassed. [Default: insert]'
                    pattern: ^(?i)(insert|append)?$
                    type: string
                  dataplaneDriver:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.8.md

    * Release the kubelet client certificate rotation as beta. ([#51045](https://github.com/kubernetes/kubernetes/pull/51045), [@jcbsmpsn](https://github.com/jcbsmpsn))
    * Adds --append-hash flag to kubectl create configmap/secret, which will append a short hash of the configmap/secret contents to the name during creation. ([#49961](https://github.com/kubernetes/kubernetes/pull/49961), [@mtaufen](https://github.com/mtaufen))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
Back to top