Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 295 for alternate (0.29 sec)

  1. src/unsafe/unsafe.go

    //
    //	var s string
    //	hdr := (*reflect.StringHeader)(unsafe.Pointer(&s)) // case 1
    //	hdr.Data = uintptr(unsafe.Pointer(p))              // case 6 (this case)
    //	hdr.Len = n
    //
    // In this usage hdr.Data is really an alternate way to refer to the underlying
    // pointer in the string header, not a uintptr variable itself.
    //
    // In general, [reflect.SliceHeader] and [reflect.StringHeader] should be used
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 19:45:20 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/dom_test.go

    			Goto(blockn(i+1))))
    	}
    
    	blocs = append(blocs,
    		Bloc(blockn(size), Goto("exit")),
    		Bloc("exit", Exit("mem")),
    	)
    
    	return blocs
    }
    
    // genFwdBack creates an array of blocks that alternate between
    // b_n -> [b_n+1], b_n -> [b_n+1, b_n-1] , b_n -> [b_n+1, b_n+2]
    func genFwdBack(size int) []bloc {
    	var blocs []bloc
    	blocs = append(blocs,
    		Bloc("entry",
    			Valu("mem", OpInitMem, types.TypeMem, 0, nil),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. pkg/apis/apps/v1beta2/defaults_test.go

    						RollingUpdate: &appsv1beta2.RollingUpdateStatefulSetStrategy{
    							Partition: &defaultPartition,
    						},
    					},
    					RevisionHistoryLimit: ptr.To[int32](10),
    				},
    			},
    		},
    		{
    			name: "Alternate update strategy",
    			original: &appsv1beta2.StatefulSet{
    				Spec: appsv1beta2.StatefulSetSpec{
    					Template: defaultTemplate,
    					UpdateStrategy: appsv1beta2.StatefulSetUpdateStrategy{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  4. src/syscall/mkall.sh

    # part about preparing this file is figuring out which headers to
    # include and which symbols need to be #defined to get the
    # actual data structures that pass through to the kernel system calls.
    # Some C libraries present alternate versions for binary compatibility
    # and translate them on the way in and out of system calls, but
    # there is almost always a #define that can get the real ones.
    # See types_darwin.c and types_linux.c for examples.
    #
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 18:22:23 UTC 2023
    - 14.6K bytes
    - Viewed (0)
  5. pkg/apis/apps/v1/defaults_test.go

    						RollingUpdate: &appsv1.RollingUpdateStatefulSetStrategy{
    							Partition: &defaultPartition,
    						},
    					},
    					RevisionHistoryLimit: ptr.To[int32](10),
    				},
    			},
    		},
    		{
    			name: "Alternate update strategy",
    			original: &appsv1.StatefulSet{
    				Spec: appsv1.StatefulSetSpec{
    					Template: defaultTemplate,
    					UpdateStrategy: appsv1.StatefulSetUpdateStrategy{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  6. src/cmd/go/internal/work/build.go

    		instead of making them read-only.
    	-modfile file
    		in module aware mode, read (and possibly write) an alternate go.mod
    		file instead of the one in the module root directory. A file named
    		"go.mod" must still be present in order to determine the module root
    		directory, but it is not accessed. When -modfile is specified, an
    		alternate go.sum file is also used: its path is derived from the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 17:22:59 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/internal/bisect/bisect.go

    // The markers are elided when displaying the lines to the user.
    //
    // A match marker has the form “[bisect-match 0x1234]” where
    // 0x1234 is the change ID in hexadecimal.
    // An alternate form is “[bisect-match 010101]”, giving the change ID in binary.
    //
    // When [Matcher.Visible] returns false, the match reports are only
    // being processed by bisect to learn the set of enabled changes,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 18:11:19 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  8. pkg/model/proxy.go

    	// of the workload instance (ex: k8s deployment for a k8s pod).
    	Owner string `json:"OWNER,omitempty"`
    
    	// PilotSAN is the list of subject alternate names for the xDS server.
    	PilotSubjectAltName []string `json:"PILOT_SAN,omitempty"`
    
    	// XDSRootCert defines the root cert to use for XDS connections
    	XDSRootCert string `json:"-"`
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 17:18:17 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/jvm/jvm_test_suite_plugin.adoc

    ====
    
    <1> Define a closure which takes a single `JvmTestSuite` parameter and configures it
    <2> Apply the closure to a test suite, using the default (`test`) test suite
    <3> Alternate means of applying a configuration closure to a test suite outside of its declaration, using the `integrationTest` test suite
    
    [[sec:differences_with_top_level_dependencies]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 14:47:11 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/worker_api.adoc

    ====
    
    <1> Add a repository to resolve the codec library - this can be a different repository than the one used to build the `CreateMD5` task class.
    <2> Add a _configuration_ to resolve our codec library version.
    <3> Configure an alternate, compatible version of https://commons.apache.org/proper/commons-codec/[Apache Commons Codec].
    <4> Configure the `md5` task to use the configuration as its classpath.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 28 13:41:08 UTC 2024
    - 17.7K bytes
    - Viewed (0)
Back to top