Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 202 for xform (0.04 sec)

  1. src/syscall/mksyscall.pl

    my %trampolines;
    
    my $text = "";
    while(<>) {
    	chomp;
    	s/\s+/ /g;
    	s/^\s+//;
    	s/\s+$//;
    	my $nonblock = /^\/\/sysnb /;
    	next if !/^\/\/sys / && !$nonblock;
    
    	# Line must be of the form
    	#	func Open(path string, mode int, perm int) (fd int, errno error)
    	# Split into name, in params, out params.
    	if(!/^\/\/sys(nb)? (\w+)\(([^()]*)\)\s*(?:\(([^()]+)\))?\s*(?:=\s*((?i)_?SYS_[A-Z0-9_]+))?$/) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:15:02 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/asm.go

    		return
    	}
    
    	// Labels are function scoped. Patch existing labels and
    	// create a new label space for this TEXT.
    	p.patch()
    	p.labels = make(map[string]*obj.Prog)
    
    	// Operand 0 is the symbol name in the form foo(SB).
    	// That means symbol plus indirect on SB and no offset.
    	nameAddr := p.address(operands[0])
    	if !p.validSymbol("TEXT", &nameAddr, false) {
    		return
    	}
    	name := symbolName(&nameAddr)
    	next := 1
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  3. src/crypto/internal/mlkem768/mlkem768.go

    	copy(b[:], dk.dk[decryptionKeySize:])
    	return b[:]
    }
    
    // encryptionKey is the parsed and expanded form of a PKE encryption key.
    type encryptionKey struct {
    	t [k]nttElement     // ByteDecode₁₂(ek[:384k])
    	A [k * k]nttElement // A[i*k+j] = sampleNTT(ρ, j, i)
    }
    
    // decryptionKey is the parsed and expanded form of a PKE decryption key.
    type decryptionKey struct {
    	s [k]nttElement // ByteDecode₁₂(dk[:decryptionKeySize])
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 28.4K bytes
    - Viewed (0)
  4. samples/bookinfo/src/productpage/templates/productpage.html

            <h2 class="mt-5 text-center text-2xl font-bold leading-9 tracking-tight text-gray-900">Sign in to BookInfo</h2>
        </div>
        <div class="mt-10 sm:mx-auto sm:w-full sm:max-w-sm">
          <form class="space-y-6" method="post" action='login' name="login_form">
            <div>
              <label for="email" class="block text-sm font-medium leading-6 text-gray-900">Username</label>
              <div class="mt-2">
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/link.go

    //		Encoding:
    //			type = TYPE_BRANCH
    //			val = Prog* reference OR ELSE offset = target pc (branch takes priority)
    //
    //	$±x-±y
    //		Final argument to TEXT, specifying local frame size x and argument size y.
    //		In this form, x and y are integer literals only, not arbitrary expressions.
    //		This avoids parsing ambiguities due to the use of - as a separator.
    //		The ± are optional.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/autoscaling/v1/types.go

    	// targetValue is the target value of the metric (as a quantity).
    	TargetValue resource.Quantity `json:"targetValue" protobuf:"bytes,3,name=targetValue"`
    
    	// selector is the string-encoded form of a standard kubernetes label selector for the given metric.
    	// When set, it is passed as an additional parameter to the metrics server for more specific metrics scoping
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  7. cmd/s3-zip-handlers.go

    		writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL)
    		return
    	}
    	// s3zip does not allow ranges
    	w.Header().Del(xhttp.AcceptRanges)
    
    	setHeadGetRespHeaders(w, r.Form)
    
    	httpWriter := xioutil.WriteOnClose(w)
    
    	// Write object content to response body
    	if _, err = xioutil.Copy(httpWriter, rc); err != nil {
    		if !httpWriter.HasWritten() {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/batch/v1/types_swagger_doc_generated.go

    there is one successfully completed Pod for each index. When value is `Indexed`, .spec.completions must be specified and `.spec.parallelism` must be less than or equal to 10^5. In addition, The Pod name takes the form `$(job-name)-$(index)-$(random-string)`, the Pod hostname takes the form `$(job-name)-$(index)`.\n\nMore completion modes can be added in the future. If the Job controller observes a mode that it doesn't recognize, which is possible during upgrades due to version skew, the controller...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/signature.go

    	params   *Tuple         // (incoming) parameters from left to right; or nil
    	results  *Tuple         // (outgoing) results from left to right; or nil
    	variadic bool           // true if the last parameter's type is of the form ...T (or string, for append built-in only)
    }
    
    // NewSignatureType creates a new function type for the given receiver,
    // receiver type parameters, type parameters, parameters, and results. If
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 21:33:05 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/types.go

    type CustomResourceDefinitionSpec struct {
    	// group is the API group of the defined custom resource.
    	// The custom resources are served under `/apis/<group>/...`.
    	// Must match the name of the CustomResourceDefinition (in the form `<names.plural>.<group>`).
    	Group string `json:"group" protobuf:"bytes,1,opt,name=group"`
    	// names specify the resource and kind names for the custom resource.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 28.7K bytes
    - Viewed (0)
Back to top