Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 106 of 106 for mkstruct (0.78 sec)

  1. src/cmd/compile/internal/walk/order.go

    			if n.X.Op() == ir.OBYTES2STR {
    				n.X.(*ir.ConvExpr).SetOp(ir.OBYTES2STRTMP)
    			}
    			if n.Y.Op() == ir.OBYTES2STR {
    				n.Y.(*ir.ConvExpr).SetOp(ir.OBYTES2STRTMP)
    			}
    
    		case t.IsStruct() || t.IsArray():
    			// for complex comparisons, we need both args to be
    			// addressable so we can pass them to the runtime.
    			n.X = o.addrTemp(n.X)
    			n.Y = o.addrTemp(n.Y)
    		}
    		return n
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 02:00:33 UTC 2024
    - 42.7K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    ====
    
    We will show you in this section how to apply the Android Plugin to a single-project build or the root project of a multi-project build.
    The goal is to instruct your build on how to map the `com.android.application` plugin identifier to a resolvable artifact.
    This is done in two steps:
    
    * Add a plugin repository to the build's settings script
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    // same everywhere else) until the mips64 generator issue is fixed.
    type fileHandle struct {
    	Bytes uint32
    	Type  int32
    }
    
    // FileHandle represents the C struct file_handle used by
    // name_to_handle_at (see NameToHandleAt) and open_by_handle_at (see
    // OpenByHandleAt).
    type FileHandle struct {
    	*fileHandle
    }
    
    // NewFileHandle constructs a FileHandle.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/rewritegeneric.go

    		return true
    	}
    	// match: (Load <t> _ _)
    	// cond: t.IsStruct() && t.NumFields() == 0 && CanSSA(t)
    	// result: (StructMake0)
    	for {
    		t := v.Type
    		if !(t.IsStruct() && t.NumFields() == 0 && CanSSA(t)) {
    			break
    		}
    		v.reset(OpStructMake0)
    		return true
    	}
    	// match: (Load <t> ptr mem)
    	// cond: t.IsStruct() && t.NumFields() == 1 && CanSSA(t)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 18:24:47 UTC 2024
    - 812.2K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.21.md

    - Specifying the KUBE_TEST_REPO environment variable when e2e tests are executed will instruct the test infrastructure to load that image from a location within the specified repo, using a predefined pattern. ([#93510](https://github.com/kubernetes/kubernetes/pull/93510), [@smarterclayton](https://github.com/smarterclayton)) [SIG Testing]...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 14 07:03:14 UTC 2022
    - 367.3K bytes
    - Viewed (0)
  6. src/net/http/serve_test.go

    	w.Header().Set("Result", string(s))
    }
    
    var handlers = []struct {
    	pattern string
    	msg     string
    }{
    	{"/", "Default"},
    	{"/someDir/", "someDir"},
    	{"/#/", "hash"},
    	{"someHost.com/someDir/", "someHost.com/someDir"},
    }
    
    var vtests = []struct {
    	url      string
    	expected string
    }{
    	{"http://localhost/someDir/apage", "someDir"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
Back to top