Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for allBytes (0.18 sec)

  1. cmd/kubeadm/app/cmd/config.go

    	if err != nil {
    		return err
    	}
    
    	allBytes := [][]byte{initialConfig}
    	for _, componentConfig := range componentConfigs {
    		cfgBytes, err := getDefaultComponentConfigBytes(componentConfig)
    		if err != nil {
    			return err
    		}
    		allBytes = append(allBytes, cfgBytes)
    	}
    
    	fmt.Fprint(out, string(bytes.Join(allBytes, []byte(constants.YAMLDocumentSeparator))))
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    	if err != nil {
    		return
    	}
    	defer LocalFree(Handle(unsafe.Pointer(winHeapACL)))
    	aclBytes := make([]byte, winHeapACL.aclSize)
    	copy(aclBytes, (*[(1 << 31) - 1]byte)(unsafe.Pointer(winHeapACL))[:len(aclBytes):len(aclBytes)])
    	return (*ACL)(unsafe.Pointer(&aclBytes[0])), nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  3. cmd/kube-apiserver/app/options/options.go

    		"If true, allow privileged containers. [default=false]")
    
    	fs.StringVar(&s.EndpointReconcilerType, "endpoint-reconciler-type", s.EndpointReconcilerType,
    		"Use an endpoint reconciler ("+strings.Join(reconcilers.AllTypes.Names(), ", ")+") master-count is deprecated, and will be removed in a future version.")
    
    	// See #14282 for details on how to test/try this option out.
    	// TODO: remove this comment once this option is tested in CI.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 12:19:56 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/implementing_custom_tasks.adoc

    Note that in Kotlin the annotations are prefixed with `get:`, so `@InputFile` becomes `@get:InputFile`.
    
    ====
    [.multi-language-sample]
    =====
    .build.gradle.kts
    [source,kotlin]
    ----
    abstract class AllTypes : DefaultTask() {
    
        //inputs
        @get:Input
        abstract val inputString: Property<String>
        @get:InputFile
        abstract val inputFile: RegularFileProperty
        @get:InputDirectory
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 05:34:54 UTC 2024
    - 37.2K bytes
    - Viewed (0)
  5. src/encoding/json/encode_test.go

    	NumberStr  Number  `json:",string"`
    }
    
    func TestRoundtripStringTag(t *testing.T) {
    	tests := []struct {
    		CaseName
    		in   StringTag
    		want string // empty to just test that we roundtrip
    	}{{
    		CaseName: Name("AllTypes"),
    		in: StringTag{
    			BoolStr:    true,
    			IntStr:     42,
    			UintptrStr: 44,
    			StrStr:     "xzbit",
    			NumberStr:  "46",
    		},
    		want: `{
    	"BoolStr": "true",
    	"IntStr": "42",
    	"UintptrStr": "44",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 29.4K bytes
    - Viewed (0)
Back to top