Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 102 for binaryPath (0.35 sec)

  1. pkg/printers/internalversion/printers.go

    	row := metav1.TableRow{
    		Object: runtime.RawExtension{Object: obj},
    	}
    	row.Cells = append(row.Cells, obj.Name, int64(len(obj.Data)+len(obj.BinaryData)), translateTimestampSince(obj.CreationTimestamp))
    	return []metav1.TableRow{row}, nil
    }
    
    func printConfigMapList(list *api.ConfigMapList, options printers.GenerateOptions) ([]metav1.TableRow, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.10.md

    netes/pull/60301), [@tnozicka](https://github.com/tnozicka))
    
    * ConfigMap objects now support binary data via a new `binaryData` field. When using `kubectl create configmap --from-file`, files containing non-UTF8 data will be placed in this new field in order to preserve the non-UTF8 data. Note that kubectl's `--append-hash` feature doesn't take `binaryData` into account. Use of this feature requires 1.10+ apiserver and kubelets. ([#57938](https://github.com/kubernetes/kubernetes/pull/57938),...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 341.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/generated.pb.go

    		}
    		i--
    		dAtA[i] = 0x20
    	}
    	if len(m.BinaryData) > 0 {
    		keysForBinaryData := make([]string, 0, len(m.BinaryData))
    		for k := range m.BinaryData {
    			keysForBinaryData = append(keysForBinaryData, string(k))
    		}
    		github_com_gogo_protobuf_sortkeys.Strings(keysForBinaryData)
    		for iNdEx := len(keysForBinaryData) - 1; iNdEx >= 0; iNdEx-- {
    			v := m.BinaryData[string(keysForBinaryData[iNdEx])]
    			baseI := i
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 1.8M bytes
    - Viewed (0)
  4. pkg/printers/internalversion/printers_test.go

    					Name:              "configmap3",
    					CreationTimestamp: metav1.Time{Time: time.Now().Add(1.9e9)},
    				},
    				Data: map[string]string{
    					"foo": "bar",
    				},
    				BinaryData: map[string][]byte{
    					"bin": []byte("binary data"),
    				},
    			},
    			// Columns: Name, (Num) Data, Age
    			expected: []metav1.TableRow{{Cells: []interface{}{"configmap3", int64(2), "0s"}}},
    		},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  5. pkg/apis/core/validation/validation_test.go

    func TestValidateConfigMap(t *testing.T) {
    	newConfigMap := func(name, namespace string, data map[string]string, binaryData map[string][]byte) core.ConfigMap {
    		return core.ConfigMap{
    			ObjectMeta: metav1.ObjectMeta{
    				Name:      name,
    				Namespace: namespace,
    			},
    			Data:       data,
    			BinaryData: binaryData,
    		}
    	}
    
    	var (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.22.md

    - Added BinaryData description to `kubectl describe` command. ([#100568](https://github.com/kubernetes/kubernetes/pull/100568), [@lauchokyip](https://github.com/lauchokyip))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 13 12:43:45 UTC 2022
    - 454.1K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/api__v1_openapi.json

              },
              "binaryData": {
                "additionalProperties": {
                  "format": "byte",
                  "type": "string"
                },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 1.8M bytes
    - Viewed (0)
  8. staging/src/k8s.io/cli-runtime/artifacts/openapi/swagger-with-shared-parameters.json

            },
            "binaryData": {
              "additionalProperties": {
                "format": "byte",
                "type": "string"
              },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 2.3M bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.16.md

    * kubectl get did not correctly count the number of binaryData keys when listing config maps. ([#80827](https://github.com/kubernetes/kubernetes/pull/80827), [@smarterclayton](https://github.com/smarterclayton))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 11 10:00:57 UTC 2021
    - 345.2K bytes
    - Viewed (0)
  10. pkg/generated/openapi/zz_generated.openapi.go

    									},
    								},
    							},
    						},
    					},
    					"binaryData": {
    						SchemaProps: spec.SchemaProps{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
Back to top